@charset "UTF-8";
/** Import abstracts */
/**
 * Native `url(..)` function wrapper
 * @param {String} $base - base URL for the asset
 * @param {String} $type - asset type folder (e.g. `fonts/`)
 * @param {String} $path - asset path
 * @return {Url}
 */
/**
 * Returns URL to an image based on its path
 * @param {String} $path - image path
 * @param {String} $base [$base-url] - base URL
 * @return {Url}
 * @require $base-url
 */
/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
/**
 * Event wrapper
 * @author Harry Roberts
 * @param {Bool} $self [false] - Whether or not to include current selector
 * @link https://twitter.com/csswizardry/status/478938530342006784 Original tweet from Harry Roberts
 */
/* Sets width and height */
/** Basic stuff for pseudo elements */
/** :after, :before arrow mixin */
/** Import vendors */
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #fff;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.8;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #9e9e9e;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #9e9e9e;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #9e9e9e;
}

.fancybox-button:hover {
  color: #9e9e9e;
  opacity: 0.8;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #9e9e9e;
  cursor: default;
  outline: none;
  opacity: 0.8;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* Custom */
.fancybox-button--close {
  border: 1px solid #9e9e9e;
  border-radius: 100px;
  margin: 10px;
  height: 40px;
  width: 40px;
  padding: 8px;
}
.fancybox-button--close:hover {
  opacity: 0.8;
}

.fancybox-button--arrow_right div,
.fancybox-button--arrow_left div {
  border: 1px solid #9e9e9e;
  border-radius: 100px;
  height: 40px;
  width: 40px;
  padding: 8px;
}
.fancybox-button--arrow_right div:hover,
.fancybox-button--arrow_left div:hover {
  opacity: 0.8;
}

.fancybox-navigation .fancybox-button--arrow_left {
  padding-left: 11px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding-left: 19px;
  padding-right: 11px;
}

.fancybox-infobar span {
  color: #9e9e9e;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 16px 18px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--c-global-menu-font);
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: calc($hamburger-layer-height / -2);
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: var(--c-global-menu-font);
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*! normalize.css v3.0.2 | 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 for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
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/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

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

/**
 * 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/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, 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/10.
 */
img {
  border: 0;
}

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

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

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  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, 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/11.
 */
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/9/10/11, 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 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 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/10/11.
 * 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/10/11.
 */
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;
}

[data-simplebar] {
  position: relative;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-align: start;
      -ms-grid-row-align: flex-start;
      align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -ms-flex-positive: inherit;
      flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrolling .simplebar-scrollbar:before,
.simplebar-hover .simplebar-scrollbar:before,
.simplebar-mouse-entered .simplebar-scrollbar:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
@media (max-width: 992px) {
  .slick-list {
    overflow: initial;
  }
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/** Import base */
/**
 * Basic typography style for copy text
 */
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}

h1, h2, h3,
.cse-h1, .cse-h2, .cse-h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin: 0;
  color: var(--c-global-font);
}

h1, .cse-h1 {
  font-size: 25px;
  line-height: 30px;
}
@media (min-width: 576px) {
  h1, .cse-h1 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (min-width: 992px) {
  h1, .cse-h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

h2, .cse-h2 {
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0.4px;
}
@media (min-width: 576px) {
  h2, .cse-h2 {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0.75px;
  }
}

h3, .cse-h3 {
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 1240px) {
  h3, .cse-h3 {
    font-size: 20px;
    line-height: 24px;
  }
}

p, .cse-p,
span, .cse-span,
ol, ul {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--c-global-font);
  letter-spacing: 0;
}

p, .cse-p,
ol, ul {
  margin: 0 0 20px;
}

strong {
  font-weight: 700;
}

a, button {
  font-size: 14px;
}
a, a:hover, a:active, a:focus, button, button:hover, button:active, button:focus {
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: rgba(0, 0, 0, 0.6);
}

*, *:before, *:after {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 62.5%;
  position: relative;
}

body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #fff;
  background-size: cover;
}

img {
  max-width: 100%;
  height: auto;
}

.cse-main {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.cse-page {
  width: 100%;
}

.cse-section {
  position: relative;
}

.cse-container,
.cse-container--sm,
.cse-container--lg,
.cse-container--xl,
.cse-container--user {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.cse-container {
  max-width: 1220px;
}

.cse-container--sm {
  padding-left: 0;
  padding-right: 0;
}

.cse-container--lg {
  max-width: 1610px;
}

.cse-container--user {
  max-width: 760px;
}

.cse-body--ie-error .cse-header > .cse-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.cse-body--ie-error .cse-header__navbar,
.cse-body--ie-error .cse-header__hamburger {
  display: none !important;
}
.cse-body--ie-error .cse-page--404 {
  background-color: #fff;
}
.cse-body--ie-error .cse-page--404 .cse-content {
  width: 100%;
}
.cse-body--ie-error .cse-page--404 .cse-warning {
  width: 100%;
  max-width: 800px;
  background-color: #ff0000;
  text-align: center;
  padding: 10px 20px;
  margin: 100px 0;
}
.cse-body--ie-error .cse-page--404 .cse-warning > p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.cse-list--unstyled, .cse-search-results__agenda .cse-search-results__section-content, .cse-agenda .cse-agenda-container .cse-list, .cse-header__navbar .cse-navbar .cse-primary-menu .sub-menu, .cse-header__navbar .cse-navbar .cse-primary-menu, .cse-footer .cse-navbar .cse-footer-menu, .cse-user .cse-user__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grecaptcha-badge {
  z-index: 11;
}

.cse-only-desktop {
  display: none;
}
@media (min-width: 736px) {
  .cse-only-desktop {
    display: block;
  }
}

.cse-only-mobile {
  display: block;
}
@media (min-width: 736px) {
  .cse-only-mobile {
    display: none;
  }
}

/* Background */
.cse-global-bg {
  background-color: var(--c-global-bg);
  background-image: var(--c-global-bg-img);
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

input[type=submit]:focus,
button[type=submit]:focus {
  outline: 1px solid var(--c-global-btn-font) !important;
}

html {
  scroll-behavior: smooth;
}

body .wpml-ls-menu-item .wpml-ls-flag {
  width: 18px;
  height: 12px;
}

.no-select-mobile {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.no-select-mobile:focus {
  outline: none !important;
}

.wp-block-image {
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.wp-block-columns {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.text-left {
  text-align: left;
}
.text-left > a {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
@media (max-width: 992px) {
  .text-left > a {
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.text-right {
  text-align: right;
}
.text-right > a {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
@media (max-width: 992px) {
  .text-right > a {
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.text-center {
  text-align: center;
}
.text-center > a {
  -ms-flex-pack: center;
      justify-content: center;
}

a {
  text-decoration: none;
}

section.block-editor-block-list__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

/**
 * Custom
 */
#user-registration .user-registration-error, #user-registration .user-registration-info, #user-registration .user-registration-message, #user-registration.horizontal .user-registration-error, #user-registration.horizontal .user-registration-info, #user-registration.horizontal .user-registration-message {
  margin-bottom: inherit;
}

/** Import blocks components */
/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.blu-container {
  display: block;
  margin: 0 auto;
  position: relative;
  height: -moz-min-content;
  height: min-content;
  width: 1192px;
  z-index: 20;
}
.blu-container--small {
  display: block;
  position: relative;
  margin: 0 auto;
  height: auto;
  width: 788px;
  z-index: 20;
}
@media (max-width: 736px) {
  .blu-container--small {
    width: 530px;
  }
}
@media (max-width: 576px) {
  .blu-container--small {
    width: 360px;
  }
}
@media (max-width: 440px) {
  .blu-container--small {
    width: 300px;
  }
}
@media (max-width: 1240px) {
  .blu-container {
    width: 900px;
  }
}
@media (max-width: 992px) {
  .blu-container {
    width: 680px;
  }
}
@media (max-width: 736px) {
  .blu-container {
    width: 530px;
  }
}
@media (max-width: 576px) {
  .blu-container {
    width: 360px;
  }
}
@media (max-width: 440px) {
  .blu-container {
    width: 300px;
  }
}

/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.center {
  margin: 0 auto;
}

button.edit-delete {
  background: red;
  border: 0;
  border-radius: 25px;
}

.edit-item {
  height: 100%;
  width: 100%;
  background: #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.arrow {
  display: block;
  width: 64px;
  height: 40px;
  border-radius: 20px;
  border-color: transparent;
  border: 0;
  background: #E8E8F0;
  transition: 0.3s all ease-out;
  font: normal normal 600 18px/11px Poppins;
  letter-spacing: 0.27px;
  color: var(--c-global-btn-font);
}
.arrow:hover {
  background: var(--c-global-btn-bg);
  transition: 0.3s all ease-out;
  box-shadow: inset 0px 0px 10px 1px #ffffffa8;
  border: 0;
}

.blu-panel {
  background-color: #f5f5f5;
  padding: 20px;
  margin-bottom: 2px;
}
.blu-panel--label {
  margin: 0;
  padding: 0;
  font-weight: 600;
  height: 40px;
}
.blu-panel--label-thin {
  margin: 0;
  padding: 0;
  font-weight: 400;
}
.blu-panel--options {
  margin: 12px 0 4px;
}
.blu-panel--message {
  color: red;
  font-weight: 400;
}
.blu-panel--inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
  height: 40px;
}
.blu-panel--inline img {
  max-height: 20px;
}

.edit-item {
  font-weight: 300;
  color: var(--c-global-btn-font);
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all 0.25s ease-in;
  background: #e9e7f1;
  border-radius: 10px;
  position: relative;
  z-index: 20;
}
.edit-item:hover {
  transition: all 0.25s ease-in;
  background: var(--c-global-btn-bg);
  color: #e9e7f1;
}
.edit-delete {
  background: #007cba;
  color: #fff;
  border: 0;
  border-radius: 25px;
  height: 30px;
  width: 30px;
  top: 10px;
  right: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all 0.2s ease-in;
  cursor: pointer;
  font-weight: 200;
  position: relative;
  z-index: 20;
}
.edit-delete:hover {
  background: #f84242;
  transition: all 0.2s ease-in;
}
.edit-add {
  font-size: 40px;
  font-weight: 300;
  color: #45D2B0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all 0.25s ease-in;
  background: #e9e7f1;
  border-radius: 10px;
  position: relative;
  z-index: 20;
}
.edit-add:hover {
  transition: all 0.25s ease-in;
  background: #45D2B0;
  color: #e9e7f1;
}

.wp-block-button__link {
  height: 55px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: 0.3s all ease-in;
}
.wp-block-button__link.has-global-btn-bg-color-background-color {
  background-color: var(--c-global-btn-bg);
}
.wp-block-button__link.has-global-btn-bg-color-background-color:hover {
  color: var(--c-global-btn-font);
  transition: 0.3s all ease-out;
  box-shadow: inset 0px 0px 10px 1px #ffffffa8;
}
.wp-block-button__link.has-global-btn-font-color-color {
  color: var(--c-global-btn-font);
}
.wp-block-button__link.has-global-font-color-color {
  color: var(--c-global-font);
}
.wp-block-button__link.has-global-font-color-color:hover {
  color: var(--c-global-font);
  transition: 0.3s all ease-out;
  box-shadow: inset 0px 0px 10px 1px #ffffffa8;
}

button[disabled] {
  background: #9e9e9e;
}

/** Import blocks */
/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.blu-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
}
.blu-block--content {
  position: relative;
  display: block;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
}

@media (max-width: 992px) {
  .wp-block-column > .wp-block-image {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .wp-block-column > .wp-block-image > img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
}

/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.blu-hero {
  padding-top: -60px;
}
.blu-hero .wp-block-column .wp-block-group > h2 > strong {
  font-weight: 600;
}
@media (min-width: 992px) {
  .blu-hero .wp-block-column .wp-block-group > h2.has-medium-font-size {
    font-size: 15px;
  }
  .blu-hero .wp-block-column .wp-block-group > h2 > strong {
    font-weight: 600;
  }
  .blu-hero .wp-block-column .is-content-justification-left > p {
    max-width: 369px;
  }
}
@media (max-width: 992px) {
  .blu-hero .blu-block--content > .wp-block-columns {
    display: -ms-grid;
    display: grid;
    margin-top: 30px;
  }
  .blu-hero .has-3-x-extra-large-font-size {
    margin: 0 auto;
    text-align: center;
    max-width: 388px;
  }
  .blu-hero .is-content-justification-right {
    -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    margin-top: 30px;
  }
}
@media (max-width: 736px) {
  .blu-hero .is-content-justification-right {
    margin-top: 60px;
  }
}

/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.cse-blu-clock {
  border-radius: 20px;
  position: relative;
  width: auto;
}
@media (min-width: 736px) {
  .cse-blu-clock {
    margin-top: 10px;
  }
}

.cse-blu-clock__background, .cse-blu-clock__background img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 50vw;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}
@media (min-width: 576px) {
  .cse-blu-clock__background, .cse-blu-clock__background img {
    min-height: 45vw;
  }
}
@media (min-width: 736px) {
  .cse-blu-clock__background, .cse-blu-clock__background img {
    min-height: 345px;
  }
}

.cse-blu-clock__countdown {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  text-align: center;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.cse-blu-clock__countdown-heading {
  letter-spacing: 0.5px;
  padding-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 576px) {
  .cse-blu-clock__countdown-heading {
    padding-bottom: 25px;
    font-size: 22px;
  }
}
@media (max-width: 736px) {
  .cse-blu-clock__countdown-heading {
    padding-bottom: 35px;
    line-height: 1.15;
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .cse-blu-clock__countdown-heading {
    padding-bottom: 25px;
    font: normal normal 400 13px/18px Poppins;
  }
}

.cse-blu-clock__countdown-clock {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -ms-flexbox;
  display: flex;
}

.cse-blu-clock__countdown-clock-group {
  display: -ms-flexbox;
  display: flex;
}
.cse-blu-clock__countdown-clock-group .cse-value {
  background-color: rgba(0, 0, 0, 0.28);
  letter-spacing: 0.5px;
  border-radius: 10px;
  line-height: 1.15;
  font-weight: 600;
  font-size: 23px;
  height: 55px;
  width: 55px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 576px) {
  .cse-blu-clock__countdown-clock-group .cse-value {
    border-radius: 12px;
    font-size: 32px;
    height: 80px;
    width: 80px;
  }
}
@media (min-width: 736px) {
  .cse-blu-clock__countdown-clock-group .cse-value {
    letter-spacing: 0.75px;
    border-radius: 20px;
    font-size: 42px;
    height: 110px;
    width: 110px;
  }
}
.cse-blu-clock__countdown-clock-group .cse-label {
  letter-spacing: 0.25px;
  line-height: 1.15;
  padding-top: 8px;
  font-weight: 300;
  font-size: 13px;
}
@media (min-width: 576px) {
  .cse-blu-clock__countdown-clock-group .cse-label {
    padding-top: 12px;
    font-size: 16px;
  }
}
@media (min-width: 736px) {
  .cse-blu-clock__countdown-clock-group .cse-label {
    padding-top: 20px;
    font-size: 18px;
  }
}
.cse-blu-clock__countdown-clock-group .cse-divider {
  padding: 18px 4px 4px;
  line-height: 1.15;
  font-weight: 500;
  font-size: 18px;
}
@media (min-width: 576px) {
  .cse-blu-clock__countdown-clock-group .cse-divider {
    padding: 20px 8px 8px;
    font-size: 32px;
  }
}
@media (min-width: 736px) {
  .cse-blu-clock__countdown-clock-group .cse-divider {
    padding: 30px 10px 10px;
    font-size: 42px;
  }
}

.cse-blu-clock-fixed .cse-blu-clock__background {
  position: absolute;
  min-height: unset;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
.cse-blu-clock-fixed .cse-blu-clock__countdown {
  position: relative;
}
@media (min-width: 736px) {
  .cse-blu-clock-fixed.cse-blu-clock-small .cse-blu-clock__countdown {
    -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
  }
}

.cse-blu-clock-light .cse-blu-clock__countdown-clock-group .cse-value {
  background-color: rgba(255, 255, 255, 0.28);
}

.cse-blu-clock-small .cse-blu-clock__background img {
  min-height: unset;
}
@media (min-width: 576px) {
  .cse-blu-clock-small .cse-blu-clock__background img {
    min-height: unset;
  }
}
@media (min-width: 736px) {
  .cse-blu-clock-small .cse-blu-clock__background img {
    min-height: 330px;
  }
}
.cse-blu-clock-small .cse-blu-clock__countdown {
  top: unset;
}
@media (min-width: 736px) {
  .cse-blu-clock-small .cse-blu-clock__countdown {
    -ms-flex-align: start;
        -ms-grid-row-align: flex-start;
        align-items: flex-start;
    left: unset;
    margin: 0;
  }
}
.cse-blu-clock-small .cse-blu-clock__countdown-heading {
  padding-bottom: 12px;
  max-width: 260px;
  font-size: 14px;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .cse-blu-clock-small .cse-blu-clock__countdown-heading {
    padding-bottom: 14px;
    line-height: 1.4;
    max-width: 295px;
    font-size: 14px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .cse-blu-clock-small .cse-blu-clock__countdown-heading {
    padding-bottom: 12px;
    max-width: 280px;
    font: normal normal 400 13px/18px Poppins;
  }
}
.cse-blu-clock-small .cse-blu-clock__countdown-clock-group .cse-value {
  border-radius: 10px;
  font-size: 23px;
  height: 61px;
  width: 61px;
}
@media (max-width: 992px) {
  .cse-blu-clock-small .cse-blu-clock__countdown-clock-group .cse-value {
    letter-spacing: 0.5px;
    border-radius: 10px;
    font-size: 23px;
    height: 61px;
    width: 61px;
  }
}
@media (max-width: 576px) {
  .cse-blu-clock-small .cse-blu-clock__countdown-clock-group .cse-value {
    border-radius: 10px;
    font-size: 16px;
    height: 46px;
    width: 46px;
  }
}
.cse-blu-clock-small .cse-blu-clock__countdown-clock-group .cse-label {
  padding-top: 6px;
  font-size: 11px;
}
@media (min-width: 576px) {
  .cse-blu-clock-small .cse-blu-clock__countdown-clock-group .cse-label {
    padding-top: 8px;
    font-size: 13px;
  }
}
@media (min-width: 736px) {
  .cse-blu-clock-small .cse-blu-clock__countdown-clock-group .cse-label {
    padding-top: 10px;
    font-size: 14px;
  }
}
.cse-blu-clock-small .cse-blu-clock__countdown-clock-group .cse-divider {
  padding: 13px ​5px 5px;
  line-height: 1.15;
  font-weight: 500;
  font-size: 18px;
}
@media (min-width: 576px) {
  .cse-blu-clock-small .cse-blu-clock__countdown-clock-group .cse-divider {
    padding: 18px 6px 6px;
    font-weight: 500;
    font-size: 20px;
  }
}
@media (min-width: 736px) {
  .cse-blu-clock-small .cse-blu-clock__countdown-clock-group .cse-divider {
    padding: 18px 6px 6px;
    font-weight: 500;
    font-size: 20px;
  }
}

.blu-clock .has-2-x-large-font-size {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  letter-spacing: 0px;
}
@media (max-width: 576px) {
  .blu-clock .has-2-x-large-font-size {
    font-size: 23px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0px;
    max-width: 178px;
    margin: 0 auto;
  }
}

/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.blu-slides {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 50px;
}
.blu-slides--content {
  display: block;
  position: relative;
  z-index: 20;
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.blu-slides--content-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 40px;
}
@media (max-width: 1240px) {
  .blu-slides--content-heading {
    -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
  }
}
.blu-slides--content-heading h1 {
  text-align: left;
  font: normal normal 600 28px/37px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: var(--c-global-font-heading);
  margin: 0;
  padding: 0;
}
@media (max-width: 576px) {
  .blu-slides--content-heading h1 {
    font: normal normal 600 23px/27px "Poppins", sans-serif;
  }
}
.blu-slides--content-arrows {
  width: 140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-right: 10px;
}
@media (max-width: 576px) {
  .blu-slides--content-arrows {
    display: none;
  }
}
.blu-slides--content-dots {
  display: none;
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: -15px;
}
@media (max-width: 576px) {
  .blu-slides--content-dots {
    display: -ms-flexbox;
    display: flex;
  }
}
.blu-slides--content-dots > ul.slick-dots {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  padding: 0;
}
.blu-slides--content-dots > ul.slick-dots > li {
  display: block;
}
.blu-slides--content-dots > ul.slick-dots > li > button {
  border: 0;
  display: block;
  position: relative;
  height: 6px;
  width: 6px;
  background: var(--c-global-color-events-1);
  border-radius: 25px;
  opacity: 0.15;
  margin: 10px;
  text-indent: -999999rem;
  font-size: 0;
  padding: 0;
}
.blu-slides--content-dots > ul.slick-dots > li.slick-active > button {
  border: 0;
  display: block;
  position: relative;
  height: 6px;
  width: 6px;
  background: var(--c-global-color-events-1);
  border-radius: 25px;
  opacity: 1;
  margin: 10px;
  text-indent: -999999rem;
  font-size: 0;
  padding: 0;
}
.blu-slides--content-items {
  display: -ms-grid;
  display: grid;
  position: relative;
  width: auto;
  z-index: 20;
  -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin-top: 28px;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  grid-gap: 0px;
}
.blu-slides--content-items .slick-slide {
  text-align: center;
  color: #419be0;
  margin: 10px;
}
.blu-slides--content-items .slick-list {
  width: 1192px;
  margin-left: -9px;
}
@media (max-width: 992px) {
  .blu-slides--content-items .slick-list {
    overflow: initial;
  }
}
@media (max-width: 736px) {
  .blu-slides--content-items .slick-list {
    overflow: hidden;
  }
}
@media (max-width: 576px) {
  .blu-slides--content-items .slick-list {
    width: 680px;
  }
}
.blu-slides--content-item {
  position: relative;
  display: block;
}
.blu-slides--content-item > button {
  right: 10px;
  position: absolute;
  top: 10px;
  z-index: 20;
}
.blu-slides--content-item > .img {
  border-radius: 10px;
  z-index: 10;
  content: "";
  overflow: hidden;
  background: #e9e7f1;
  width: 384px;
  height: 307px;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 1410px) {
  .blu-slides--content-item > .img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .blu-slides--content-item > .img {
    height: 160px;
  }
}
.blu-slides--content-item > .img > a {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-decoration: none;
  color: var(--c-global-color-events-1);
  text-decoration: none;
}
.blu-slides--content-item > .img img {
  display: block;
  position: relative;
  z-index: 20;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blu-slides--content-item > .img::after {
  width: 384px;
  height: 307px;
  background: #23216E 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 0.1;
  z-index: 10;
}
.blu-slides--content-item > p {
  text-align: left;
  font: normal normal 22px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: var(--c-global-font-dark);
  max-width: 384px;
  min-height: 70px;
  padding-top: 25px;
  margin: 0;
}
@media (max-width: 736px) {
  .blu-slides--content-item > p {
    font: normal normal 400 22px/34px "Poppins", sans-serif;
    padding-top: 15px;
  }
}
@media (max-width: 576px) {
  .blu-slides--content-item > p {
    font: normal normal 400 16px/25px "Poppins", sans-serif;
    padding-top: 15px;
  }
}

.slick-slide > div > section.blu-slides--content-item {
  display: block;
  position: relative;
  width: 404px;
  height: 100%;
  margin-right: 20px;
}

/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.blu-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  margin: 0;
}
.blu-numbers--content {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 20;
  -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 250px 250px 250px;
      grid-template-columns: 250px 250px 250px 250px;
  row-gap: 50px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 1240px) {
  .blu-numbers--content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 350px 350px;
        grid-template-columns: 350px 350px;
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 40px;
    height: 100%;
  }
}
@media (max-width: 736px) {
  .blu-numbers--content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 300px 300px;
        grid-template-columns: 300px 300px;
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 40px;
    height: 100%;
  }
}
@media (max-width: 736px) {
  .blu-numbers--content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 170px 170px;
        grid-template-columns: 170px 170px;
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 40px;
    height: 100%;
  }
}
@media (max-width: 576px) {
  .blu-numbers--content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 165px;
        grid-template-columns: 165px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 40px;
    height: 100%;
  }
}
@media (max-width: 440px) {
  .blu-numbers--content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 220px;
        grid-template-columns: 220px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 40px;
    height: 100%;
  }
}
.blu-numbers--content-item {
  display: block;
  position: relative;
  height: auto;
  width: 100%;
  color: var(--c-global-font-dark);
}
.blu-numbers--content-item > .icon {
  height: 100px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 5px;
}
.blu-numbers--content-item > .icon-add {
  height: 120px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 5px;
  background: #c3c4c73b;
  border-radius: 10px;
}
.blu-numbers--content-item > .icon > a {
  text-decoration: none;
  height: 100%;
  padding: 0;
  margin: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
}
.blu-numbers--content-item > .icon > a > span {
  text-align: center;
  color: var(--c-global-font-dark);
  font-family: "Poppins", sans-serif;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: #d9d8de;
  padding: 0 13px;
  border-radius: 12px;
  font-size: 13.5px;
  width: 100%;
  cursor: pointer;
}
.blu-numbers--content-item > .icon img {
  height: 75px;
  width: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
.blu-numbers--content-item > .icon > .edit-add {
  font-size: 40px;
  font-weight: 300;
  color: #48d2b1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all 0.25s ease-in;
  background: #d9d8de;
  border-radius: 10px;
  position: relative;
}
.blu-numbers--content-item > .icon > .edit-add:hover {
  transition: all 0.25s ease-in;
  background: #48d2b1;
  color: #d9d8de;
}
.blu-numbers--content-item > .icon > .edit-image {
  font-size: 30px;
  font-weight: 300;
  color: #48d2b1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all 0.25s ease-in;
  background: #d9d8de;
  border-radius: 10px;
  position: relative;
}
.blu-numbers--content-item > h1 {
  font: normal normal 600 36px/48px "Poppins", sans-serif;
  letter-spacing: 0px;
  text-align: center;
  max-width: 190px;
  height: 50px;
  margin: 0 auto;
  color: var(--c-global-font-heading);
}
.blu-numbers--content-item > h1 > .block-editor-rich-text__editable {
  font: normal normal 600 36px/48px "Poppins", sans-serif;
}
@media (max-width: 576px) {
  .blu-numbers--content-item > h1 {
    font: normal normal 600 29px/39px "Poppins", sans-serif;
    height: auto;
  }
}
.blu-numbers--content-item > h2 {
  font: normal normal 500 16px/24px "Poppins", sans-serif;
  letter-spacing: 0px;
  opacity: 0.8;
  text-align: center;
  max-width: 190px;
  height: 50px;
  margin: 0 auto;
  color: var(--c-global-font-dark);
}
.blu-numbers--content-item > h2 > .block-editor-rich-text__editable {
  font: normal normal 500 16px/24px "Poppins", sans-serif;
}
@media (max-width: 576px) {
  .blu-numbers--content-item > h2 {
    font: normal normal medium 13px/20px "Poppins", sans-serif;
    height: auto;
  }
}
.blu-numbers--content-item > button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 30;
}

/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.blu-speakers {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  margin: 0;
}
.blu-speakers--content {
  display: block;
  position: relative;
  height: auto;
  width: 100%;
  margin: 0 auto;
}
.blu-speakers--content-heading > h1 {
  text-align: left;
  font: normal normal 600 28px/37px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: var(--c-global-font-heading);
}
@media (max-width: 440px) {
  .blu-speakers--content-heading > h1 {
    font: normal normal 600 23px/28px "Poppins", sans-serif;
    text-align: center;
  }
}
.blu-speakers--content-bottom {
  margin-top: 75px;
}
.blu-speakers--content-bottom > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.blu-speakers--content-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 284px 284px 284px 284px;
      grid-template-columns: 284px 284px 284px 284px;
  row-gap: 40px;
  position: relative;
  height: auto;
  width: 100%;
  z-index: 20;
  -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 35px auto;
  height: auto;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 1240px) {
  .blu-speakers--content-items {
    -ms-grid-columns: 284px 284px 284px;
        grid-template-columns: 284px 284px 284px;
    row-gap: 35px;
  }
}
@media (max-width: 992px) {
  .blu-speakers--content-items {
    -ms-grid-columns: 210px 210px 210px;
        grid-template-columns: 210px 210px 210px;
    row-gap: 30px;
  }
}
@media (max-width: 736px) {
  .blu-speakers--content-items {
    -ms-grid-columns: 163px 163px 163px;
        grid-template-columns: 163px 163px 163px;
    row-gap: 25px;
  }
}
@media (max-width: 576px) {
  .blu-speakers--content-items {
    -ms-grid-columns: 165px 165px;
        grid-template-columns: 165px 165px;
  }
}
@media (max-width: 440px) {
  .blu-speakers--content-items {
    -ms-grid-columns: 128px 128px;
        grid-template-columns: 128px 128px;
  }
}
.blu-speakers--content-item {
  display: block;
  position: relative;
  height: 100%;
}
.blu-speakers--content-item > .image {
  display: block;
  position: relative;
  height: 284px;
  width: 100%;
  max-height: 269px;
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: #e9e7f1;
}
@media (max-width: 1240px) {
  .blu-speakers--content-item > .image {
    height: 284px;
  }
}
@media (max-width: 992px) {
  .blu-speakers--content-item > .image {
    height: 210px;
  }
}
@media (max-width: 736px) {
  .blu-speakers--content-item > .image {
    height: 163px;
  }
}
@media (max-width: 576px) {
  .blu-speakers--content-item > .image {
    height: 165px;
  }
}
@media (max-width: 440px) {
  .blu-speakers--content-item > .image {
    height: 128px;
  }
}
.blu-speakers--content-item > .image > a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
}
.blu-speakers--content-item > .image > a > span {
  text-align: center;
  color: var(--c-global-color-events-1);
}
.blu-speakers--content-item > .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.blu-speakers--content-item > .content {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .blu-speakers--content-item > .content {
    margin-top: 10px;
  }
}
@media (max-width: 576px) {
  .blu-speakers--content-item > .content {
    margin-top: 5px;
  }
}
.blu-speakers--content-item > .content > h1 {
  font: normal normal 19px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: var(--c-global-font-dark);
  margin: 0;
}
@media (max-width: 736px) {
  .blu-speakers--content-item > .content > h1 {
    -ms-grid-columns: 163px 163px 163px;
        grid-template-columns: 163px 163px 163px;
    font: normal normal 16px/16px "Poppins", sans-serif;
  }
}
@media (max-width: 576px) {
  .blu-speakers--content-item > .content > h1 {
    -ms-grid-columns: 165px 165px;
        grid-template-columns: 165px 165px;
    font: normal normal 13px/13px "Poppins", sans-serif;
  }
}
@media (max-width: 440px) {
  .blu-speakers--content-item > .content > h1 {
    -ms-grid-columns: 128px 128px;
        grid-template-columns: 128px 128px;
  }
}
.blu-speakers--content-item > .content > h2 {
  font: normal normal 600 12px/11px "Poppins", sans-serif;
  color: var(--c-global-color-events-1);
  letter-spacing: 0px;
  margin: 0;
}
@media (max-width: 736px) {
  .blu-speakers--content-item > .content > h2 {
    font: normal normal 600 11px/10px "Poppins", sans-serif;
  }
}
@media (max-width: 576px) {
  .blu-speakers--content-item > .content > h2 {
    font: normal normal 600 10px/9px "Poppins", sans-serif;
  }
}
.blu-speakers--content-item > button {
  position: absolute;
  right: 10px;
  top: 10px;
}
.blu-speakers--content .button {
  margin: 0;
}
.blu-speakers .button {
  width: 100%;
  text-align: center;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

/**
 * Event wrapper
 * @author Harry Roberts
 * @param {Bool} $self [false] - Whether or not to include current selector
 * @link https://twitter.com/csswizardry/status/478938530342006784 Original tweet from Harry Roberts
 */
/* Sets width and height */
/** Basic stuff for pseudo elements */
/** :after, :before arrow mixin */
/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.cse-gutenberg .cse-blu-tickets .cse-blu-tickets-btn {
  padding: 8px 24px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.8;
  border: 0;
}
@media (min-width: 576px) {
  .cse-gutenberg .cse-blu-tickets .cse-blu-tickets-btn {
    border-radius: 50px;
    padding: 10px 32px;
    font-size: 13px;
  }
}

.cse-blu-tickets {
  max-width: 1190px;
  margin: 0 auto;
  width: 100%;
}
.cse-blu-tickets--title {
  text-align: center;
  font: normal normal 600 36px/48px "Poppins", sans-serif;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0px;
  color: var(--c-global-font-heading);
  opacity: 1;
  height: 50px;
  margin: 48px 0;
}
.cse-blu-tickets--container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 50px 0;
}

.cse-blu-tickets__ticket {
  box-shadow: 0px 0px 25px -10px rgba(75, 75, 75, 0.25);
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid transparent;
  transition: all 0.3s ease-out;
}
.cse-blu-tickets__ticket.selected {
  border: 2px solid var(--c-global-color-events-1);
  transition: all 0.3s ease-in;
}

/* MAIN */
.cse-blu-tickets__ticket-main {
  text-align: center;
  padding: 25px;
  -ms-flex: 1;
      flex: 1;
}
@media (min-width: 736px) {
  .cse-blu-tickets__ticket-main {
    padding: 30px 45px;
    text-align: left;
  }
}

.cse-blu-tickets__ticket-name {
  color: var(--c-global-font-dark);
  font-weight: 600;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 736px) {
  .cse-blu-tickets__ticket-name {
    font-size: 24px;
  }
}

.cse-blu-tickets__ticket-date {
  color: var(--c-global-font-dark);
  padding-top: 5px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  opacity: 0.67;
  letter-spacing: 0.48;
}
@media (min-width: 736px) {
  .cse-blu-tickets__ticket-date {
    font-size: 16px;
  }
}

.cse-blu-tickets__ticket-description {
  color: var(--c-global-font-dark);
  padding-top: 15px;
  line-height: 1.6;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 736px) {
  .cse-blu-tickets__ticket-description {
    line-height: 1.7;
    font-size: 14px;
  }
}

/* SIDE */
.cse-blu-tickets__ticket-side {
  border-top: 1px solid #ebebeb;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (min-width: 736px) {
  .cse-blu-tickets__ticket-side {
    border-left: 1px solid #ebebeb;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 30px 14px;
    border-top: none;
    display: -ms-flexbox;
    display: flex;
    width: 210px;
  }
}
@media (min-width: 992px) {
  .cse-blu-tickets__ticket-side {
    width: 270px;
  }
}

.cse-blu-tickets__ticket-price {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 8px 16px;
  color: var(--c-global-font-dark);
  font-weight: 600;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 45%;
}
@media (min-width: 576px) {
  .cse-blu-tickets__ticket-price {
    width: 50%;
  }
}
@media (min-width: 736px) {
  .cse-blu-tickets__ticket-price {
    padding: 0 0 30px;
    font-size: 30px;
    height: auto;
    width: auto;
  }
}
@media (min-width: 992px) {
  .cse-blu-tickets__ticket-price {
    font-size: 32px;
  }
}
.cse-blu-tickets__ticket-price + .cse-blu-tickets__ticket-quantity {
  border-left: 1px solid #ebebeb;
}
@media (min-width: 736px) {
  .cse-blu-tickets__ticket-price + .cse-blu-tickets__ticket-quantity {
    border-left: none;
  }
}

/* QUANTITY */
.cse-blu-tickets__ticket-quantity {
  -ms-flex-pack: center;
      justify-content: center;
  padding: 12px 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -ms-flexbox;
  display: flex;
  width: 55%;
}
@media (min-width: 576px) {
  .cse-blu-tickets__ticket-quantity {
    width: 50%;
  }
}
@media (min-width: 736px) {
  .cse-blu-tickets__ticket-quantity {
    width: 100%;
  }
}

.cse-blu-tickets__form-multi {
  width: 100%;
  margin: 25px auto;
  display: block;
  position: relative;
}
.cse-blu-tickets__form-multi .cse-blu-tickets__ticket-quantity .cse-blu-tickets-btn {
  padding: 0 !important;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  font-size: 0;
  height: 40px;
  width: 40px;
}
.cse-blu-tickets__form-multi .cse-blu-tickets__ticket-quantity .cse-blu-tickets-btn:before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--c-global-btn-font);
  width: 14px;
  height: 2px;
  left: 12px;
  top: 18px;
}
.cse-blu-tickets__form-multi .cse-blu-tickets__ticket-quantity .cse-blu-tickets-btn[data-action="+"]:after {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--c-global-btn-font);
  height: 14px;
  width: 2px;
  left: 18px;
  top: 12px;
}
.cse-blu-tickets__form-multi .cse-blu-tickets__ticket-quantity .cse-blu-tickets-btn:hover:before, .cse-blu-tickets__form-multi .cse-blu-tickets__ticket-quantity .cse-blu-tickets-btn:hover:after {
  background-color: var(--c-global-btn-bg);
}
.cse-blu-tickets__form-multi .cse-blu-tickets__ticket-quantity .cse-blu-tickets-btn:disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
  color: #fff;
}

.cse-blu-tickets__ticket-quantity-number {
  pointer-events: none;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 5px;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 576px) {
  .cse-blu-tickets__ticket-quantity-number {
    padding: 0 10px;
  }
}

.cse-blu-tickets__ticket-quantity-input {
  background: rgba(255, 255, 255, 0);
  color: var(--c-global-font-dark);
  font-family: "Poppins", sans-serif;
  text-align: center;
  box-shadow: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.cse-blu-tickets__ticket-quantity-input::-moz-placeholder {
  color: #9e9e9e;
}
.cse-blu-tickets__ticket-quantity-input:-ms-input-placeholder {
  color: #9e9e9e;
}
.cse-blu-tickets__ticket-quantity-input::placeholder {
  color: #9e9e9e;
}
.cse-blu-tickets__ticket-quantity-input:-moz-placeholder {
  color: #9e9e9e;
}
.cse-blu-tickets__ticket-quantity-input::-moz-placeholder {
  color: #9e9e9e;
}
.cse-blu-tickets__ticket-quantity-input:-ms-input-placeholder {
  color: #9e9e9e;
}
.cse-blu-tickets__ticket-quantity-input::-webkit-input-placeholder {
  color: #9e9e9e;
}

/* CONFIRM */
.cse-blu-tickets__confirm {
  margin: 40px 0 20px;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.cse-blu-tickets__confirm .cse-blu-tickets-btn {
  border-radius: 31px;
}
.cse-blu-tickets__confirm .cse-blu-tickets-btn:disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.cse-blu-tickets__ticket-index {
  font-weight: 600;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  padding: 10px;
  color: #9d9c9c;
}

/** ADDITIONAL **/
.cse-blu-tickets .cse-blu-tickets-btn {
  border-radius: 31px;
  padding: 12px 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s all ease-out;
}
.cse-blu-tickets .cse-blu-tickets-btn:hover {
  background: var(--c-global-btn-bg);
  transition: 0.3s all ease-out;
  box-shadow: inset 0px 0px 10px 1px #ffffffa8;
  border: 0;
}

.cse-blu-tickets__confirm .cse-blu-tickets-btn {
  display: inline-block;
  transition: 0.3s all ease-out;
}
.cse-blu-tickets__confirm .cse-blu-tickets-btn:hover {
  background: var(--c-global-btn-bg);
  transition: 0.3s all ease-out;
  box-shadow: inset 0px 0px 10px 1px #ffffffa8;
  border: 0;
}

.cse-blu-tickets__form-multi .cse-blu-tickets__ticket-quantity .cse-blu-tickets-btn {
  border: none;
}
.cse-blu-tickets__form-multi .cse-blu-tickets__ticket-quantity .cse-blu-tickets-btn:before, .cse-blu-tickets__form-multi .cse-blu-tickets__ticket-quantity .cse-blu-tickets-btn:after {
  background-color: var(--c-global-btn-font) !important;
}

.cse-blu-tickets__ticket-index {
  font-weight: 600;
  font-size: 24px;
  padding: 10px;
  color: #999;
}

.wp-block .cse-blu-tickets__ticket-main {
  padding: 25px;
}
.wp-block .cse-blu-tickets__ticket-quantity-btn {
  border: 1px solid #707070;
  background-color: #707070;
  border-radius: 20px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  padding: 8px 32px;
  line-height: 24px;
  font-weight: 600;
  font-size: 13px;
}

/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.blu-partners {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto;
}
.blu-partners--content {
  display: block;
  position: relative;
  height: -moz-min-content;
  height: min-content;
  margin: 0 auto;
}
.blu-partners--content-heading > h1 {
  text-align: center;
  font: normal normal 600 36px/48px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: var(--c-global-font-heading);
}
@media (max-width: 440px) {
  .blu-partners--content-heading > h1 {
    font: normal normal 600 23px/28px "Poppins", sans-serif;
    text-align: center;
  }
}
.blu-partners--content-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 284px 284px 284px 284px;
      grid-template-columns: 284px 284px 284px 284px;
  row-gap: 0;
  position: relative;
  height: auto;
  z-index: 20;
  -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 40px auto;
  height: auto;
}
@media (max-width: 1240px) {
  .blu-partners--content-items {
    -ms-grid-columns: 284px 284px 284px;
        grid-template-columns: 284px 284px 284px;
    row-gap: 0;
  }
}
@media (max-width: 992px) {
  .blu-partners--content-items {
    -ms-grid-columns: 210px 210px 210px;
        grid-template-columns: 210px 210px 210px;
    row-gap: 0;
  }
}
@media (max-width: 736px) {
  .blu-partners--content-items {
    -ms-grid-columns: 163px 163px 163px;
        grid-template-columns: 163px 163px 163px;
    row-gap: 0;
    grid-column-gap: 40px;
  }
}
@media (max-width: 576px) {
  .blu-partners--content-items {
    -ms-grid-columns: 165px 165px;
        grid-template-columns: 165px 165px;
    grid-column-gap: 30px;
  }
}
@media (max-width: 440px) {
  .blu-partners--content-items {
    -ms-grid-columns: 128px 128px;
        grid-template-columns: 128px 128px;
    grid-column-gap: 20px;
  }
}
.blu-partners--content-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  position: relative;
  width: 100%;
  height: 170px;
}
@media (max-width: 736px) {
  .blu-partners--content-item {
    height: 140px;
  }
}
@media (max-width: 576px) {
  .blu-partners--content-item {
    height: 120px;
  }
}
@media (max-width: 440px) {
  .blu-partners--content-item {
    height: 100px;
  }
}
.blu-partners--content-item .image {
  position: relative;
  width: auto;
  height: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.blu-partners--content-item .image > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.blu-testimonials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 5px;
}
.blu-testimonials--content {
  display: block;
  position: relative;
  z-index: 20;
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.blu-testimonials--content-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 40px;
}
.blu-testimonials--content-heading h1 {
  text-align: center;
  font: normal normal 600 28px/37px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: var(--c-global-font-heading);
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (max-width: 576px) {
  .blu-testimonials--content-heading h1 {
    font: normal normal 600 23px/27px "Poppins", sans-serif;
    text-align: center;
    width: 100%;
  }
}
.blu-testimonials--content-heading h1 > .block-editor-rich-text__editable {
  font: normal normal 600 28px/37px "Poppins", sans-serif;
}
.blu-testimonials--content-arrows {
  width: 140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-right: 10px;
}
@media (max-width: 576px) {
  .blu-testimonials--content-arrows {
    display: none;
  }
}
.blu-testimonials--content-dots {
  display: none;
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: -15px;
}
@media (max-width: 576px) {
  .blu-testimonials--content-dots {
    display: -ms-flexbox;
    display: flex;
  }
}
.blu-testimonials--content-dots > ul.slick-dots {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  padding: 0;
}
.blu-testimonials--content-dots > ul.slick-dots > li {
  display: block;
}
.blu-testimonials--content-dots > ul.slick-dots > li > button {
  border: 0;
  display: block;
  position: relative;
  height: 6px;
  width: 6px;
  background: var(--c-global-btn-bg);
  border-radius: 25px;
  opacity: 0.15;
  margin: 10px;
  text-indent: -999999rem;
  font-size: 0;
  padding: 0;
}
.blu-testimonials--content-dots > ul.slick-dots > li.slick-active > button {
  border: 0;
  display: block;
  position: relative;
  height: 6px;
  width: 6px;
  background: var(--c-global-font-dark);
  border-radius: 25px;
  opacity: 1;
  margin: 10px;
  text-indent: -999999rem;
  font-size: 0;
  padding: 0;
}
.blu-testimonials--content-items {
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: auto;
  z-index: 20;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin: 28px auto;
}
@media (max-width: 992px) {
  .blu-testimonials--content-items {
    width: 100%;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.blu-testimonials--content-items .slick-slide {
  text-align: left;
  color: #419be0;
  margin: 10px;
}
.blu-testimonials--content-items .slick-list {
  width: 1192px;
  margin-left: -9px;
  padding: 0 0;
  margin: 0;
}
@media (max-width: 992px) {
  .blu-testimonials--content-items .slick-list {
    overflow: initial;
  }
}
.blu-testimonials--content-items.edit-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  grid-gap: 19px;
  row-gap: 19px;
}
.blu-testimonials--content-item {
  display: block;
  position: relative;
  width: 100%;
  max-width: 384px;
  min-height: 395px;
  max-height: 395px;
  overflow: hidden;
  background-color: #F1F1F2;
  border-radius: 10px;
  margin-right: 20px;
}
.blu-testimonials--content-item > .text {
  font: normal normal 400 19px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: var(--c-global-font-dark);
  padding: 35px 35px 22px 35px;
}
@media (max-width: 1410px) {
  .blu-testimonials--content-item > .text {
    font: normal normal 400 15px/26px "Poppins", sans-serif;
  }
}
.blu-testimonials--content-item > .user {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  width: 100%;
  padding: 0 27px;
  margin-bottom: 35px;
}
.blu-testimonials--content-item > .user > .img > img {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  z-index: 20;
  -o-object-fit: cover;
     object-fit: cover;
}
.blu-testimonials--content-item > .user > .img > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.blu-testimonials--content-item > .user > .img::after {
  width: 384px;
  height: 307px;
  background: var(--c-global-font-dark) 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 0.1;
  z-index: 10;
}
.blu-testimonials--content-item > .user > .right {
  padding: 10px;
}
.blu-testimonials--content-item > .user > .right > h5 {
  font: normal normal 600 16px/24px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: var(--c-global-color-events-2);
  margin: 0;
  height: 30px;
  text-transform: initial;
}
.blu-testimonials--content-item > .user > .right > p {
  font: normal normal 500 12px/11px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: var(--c-global-font-dark);
  opacity: 0.5;
  margin: 0;
  text-align: left;
}
.blu-testimonials--content-item > .btn-add {
  border-radius: 10px;
  z-index: 10;
  content: "";
  overflow: hidden;
  width: 100%;
  height: 395px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
}
@media (max-width: 576px) {
  .blu-testimonials--content-item > .btn-add {
    width: 201px;
    height: 160px;
  }
}
.blu-testimonials--content-item > .btn-add > a {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-decoration: none;
  color: var(--c-global-color-events-2);
}
.blu-testimonials--content-item > .btn-add img {
  display: block;
  position: relative;
  z-index: 20;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blu-testimonials--content-item > .btn-add::after {
  width: 384px;
  height: 307px;
  background: var(--c-global-font-dark) 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 0.1;
  z-index: 10;
}
.blu-testimonials--content-item > button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 30;
}

/** Theme colors settings */
/** Global colors */
/**
 * Container's maximum width
 * @type Length
 */
/** Theme Fonts */
/**
 * Relative or absolute URL where all assets are served from
 * @type String
 * @example scss - When using a CDN
 * $base-url: 'http://cdn.example.com/assets/';
 */
/**
 * Grid breakpoints

 * Define the minimum dimensions at which your layout will change,
 * adapting to different screen sizes, for use in media queries.
 */
/**
 * Hamburger settings
 */
.blu-help .has-extra-large-font-size {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  letter-spacing: 0px;
}
@media (max-width: 576px) {
  .blu-help .has-extra-large-font-size {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0px;
  }
}

/** Import components */
.cse-atc.cse-atc-open .cse-atc__popup {
  transition: opacity 0.35s;
  pointer-events: auto;
  opacity: 1;
}

.cse-atc__container {
  position: relative;
}

.cse-atc__btn {
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
  width: 35px;
}

.cse-atc__btn-icon {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}
.cse-atc__btn-icon .cse-svg-inline {
  height: 15px;
  width: 15px;
}
.cse-atc__btn-icon .cse-svg-inline path {
  fill: #000;
}

.cse-atc__popup {
  transition: opacity 0.15s;
  pointer-events: none;
  opacity: 0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  width: 200px;
  z-index: 5;
}

.cse-atc__popup-calendar {
  padding: 14px 10px 20px;
}

.cse-atc__popup-calendar-label {
  margin-bottom: 12px;
  text-align: center;
  line-height: 16px;
  color: #6C6C6C;
  font-size: 12px;
}

.cse-atc__popup-calendar-links {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.cse-atc__popup-calendar-links-item {
  margin-right: 8px;
  margin-left: 8px;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  width: 20px;
}
.cse-atc__popup-calendar-links-item .cse-svg-inline {
  height: 20px;
  width: 20px;
}
.cse-atc__popup-calendar-links-item:hover .cse-svg-inline {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25));
}

/**
 * Agenda
 */
.cse-atc--agenda {
  position: absolute;
  right: 10px;
  top: 10px;
}
@media (min-width: 736px) {
  .cse-atc--agenda {
    position: static;
    margin-top: -2px;
  }
}
.cse-atc--agenda .cse-atc__btn {
  border: 1px solid #EFEFEF;
  transition: all 0.15s;
}
.cse-atc--agenda .cse-atc__btn .cse-svg-inline path {
  fill: #313131;
}
.cse-atc--agenda.cse-atc-open .cse-atc__btn,
.cse-atc--agenda .cse-atc__btn:hover {
  background-color: #EFEFEF;
  transition: all 0.25s;
}
.cse-atc--agenda .cse-atc__popup {
  bottom: 42px;
  right: 0;
}

.cse-atc__popup-agenda {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 10px 14px;
}

.cse-atc__popup-agenda-btn {
  display: block;
}
.cse-atc__popup-agenda-btn .icon {
  transition: all 0.15s;
  background-color: #EFEFEF;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  width: 30px;
}
.cse-atc__popup-agenda-btn .icon .cse-svg-inline {
  width: 12px;
}
.cse-atc__popup-agenda-btn .icon .cse-svg-inline path {
  fill: #313131;
}
.cse-atc__popup-agenda-btn .label {
  padding-left: 10px;
  color: #171F1F;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
}

.cse-atc__popup-agenda-btn-state {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 736px) {
  .cse-list__item--low .cse-atc--agenda {
    position: absolute;
    right: 20px;
    top: 16px;
  }
}

/**
 * Saving
 */
.cse-atc__popup-agenda-btn.loading {
  transition: opacity 0.2s;
  pointer-events: none;
  opacity: 0.4;
}
.cse-atc__popup-agenda-btn .add {
  display: -ms-flexbox;
  display: flex;
}
.cse-atc__popup-agenda-btn .add:hover .icon {
  background-color: #DBDBDB;
}
.cse-atc__popup-agenda-btn .remove {
  display: none;
}
.cse-atc__popup-agenda-btn .remove .icon {
  background-color: #DBDBDB;
}
.cse-atc__popup-agenda-btn .saved {
  display: none;
}
.cse-atc__popup-agenda-btn .saved .icon {
  background-color: var(--c-global-btn-bg);
  border-color: var(--c-global-btn-bg);
}
.cse-atc__popup-agenda-btn .saved .icon .cse-svg-inline path {
  fill: var(--c-global-btn-font);
}

@media (min-width: 736px) {
  .cse-list__item--saved.cse-list__item--low .cse-atc--agenda {
    position: absolute;
    right: 18px;
    top: 14px;
  }
}
.cse-list__item--saved .cse-atc--agenda {
  right: 8px;
  top: 8px;
}
.cse-list__item--saved .cse-atc--agenda .cse-atc__btn, .cse-list__item--saved .cse-atc--agenda .cse-atc__btn:hover {
  background-color: var(--c-global-btn-bg);
  border-color: var(--c-global-btn-bg);
}
.cse-list__item--saved .cse-atc--agenda .cse-atc__btn .cse-svg-inline path, .cse-list__item--saved .cse-atc--agenda .cse-atc__btn:hover .cse-svg-inline path {
  fill: var(--c-global-btn-font);
}
.cse-list__item--saved .cse-atc__popup-agenda-btn .add {
  display: none;
}
.cse-list__item--saved .cse-atc__popup-agenda-btn .remove {
  display: none;
}
.cse-list__item--saved .cse-atc__popup-agenda-btn .saved {
  display: -ms-flexbox;
  display: flex;
}
.cse-list__item--saved .cse-atc__popup-agenda-btn.loading .remove, .cse-list__item--saved .cse-atc__popup-agenda-btn:hover .remove {
  display: -ms-flexbox;
  display: flex;
}
.cse-list__item--saved .cse-atc__popup-agenda-btn.loading .saved, .cse-list__item--saved .cse-atc__popup-agenda-btn:hover .saved {
  display: none;
}

/**
 * My Agenda
 */
.cse-page--agenda-personal .cse-list__item--saved .cse-atc {
  right: 10px;
  top: 10px;
}

.cse-btn, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, .cse-btn--primary-disabled, .cse-btn--primary, .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button, .ur-frontend-form .ur-button-container .ur-submit-button, .cse-form .gform_button, .cse-btn--card-submit, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.cse-btn, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, .cse-btn--primary-disabled, .cse-btn--primary, .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button, .ur-frontend-form .ur-button-container .ur-submit-button, .cse-form .gform_button, .cse-btn--card-submit, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button, .cse-btn:hover, .cse-btn:active, .cse-btn:focus {
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

.cse-btn--primary, .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button, .ur-frontend-form .ur-button-container .ur-submit-button, .cse-form .gform_button, .cse-btn--card-submit, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 24px;
  color: var(--c-global-btn-font);
  border-radius: 20px;
  border: 1px solid var(--c-global-btn-bg);
  background-color: var(--c-global-btn-bg);
  text-align: center;
  white-space: nowrap;
  padding: 6px 30px;
  transition: background-color 0.1s ease-in-out;
}
.cse-btn--primary:hover, .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button:hover,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button:hover, .ur-frontend-form .ur-button-container .ur-submit-button:hover, .cse-form .gform_button:hover, .cse-btn--card-submit:hover, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button:hover {
  background-color: var(--c-global-btn-font);
  color: var(--c-global-btn-bg);
}
.cse-btn--primary:hover:disabled, .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button:hover:disabled,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button:hover:disabled, .ur-frontend-form .ur-button-container .ur-submit-button:hover:disabled, .cse-form .gform_button:hover:disabled, .cse-btn--card-submit:hover:disabled, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button:hover:disabled {
  background-color: #9e9e9e;
  border-color: #9e9e9e;
  color: rgba(255, 255, 255, 0.434);
  cursor: pointer;
  pointer-events: none;
}
.cse-btn--primary:hover.cse-blu-tickets-btn, .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button:hover.cse-blu-tickets-btn,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button:hover.cse-blu-tickets-btn, .ur-frontend-form .ur-button-container .ur-submit-button:hover.cse-blu-tickets-btn, .cse-form .gform_button:hover.cse-blu-tickets-btn, .cse-btn--card-submit:hover.cse-blu-tickets-btn, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button:hover.cse-blu-tickets-btn {
  background-color: var(--c-global-btn-bg);
  color: var(--c-global-btn-font);
}
.cse-btn--primary:disabled, .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button:disabled,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button:disabled, .ur-frontend-form .ur-button-container .ur-submit-button:disabled, .cse-form .gform_button:disabled, .cse-btn--card-submit:disabled, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button:disabled {
  background-color: #9e9e9e;
  border-color: #9e9e9e;
  color: rgba(255, 255, 255, 0.434);
  cursor: pointer;
  pointer-events: none;
}
.cse-btn--primary.disabled, .cse-page--login #user-registration .ur-frontend-form.login .disabled.user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .disabled.user-registration-Button, .ur-frontend-form .ur-button-container .disabled.ur-submit-button, .cse-form .disabled.gform_button, .disabled.cse-btn--card-submit, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .disabled.gform_button {
  opacity: 0.75;
  cursor: pointer;
  pointer-events: none;
}
.cse-btn--primary.landing-style, .cse-page--login #user-registration .ur-frontend-form.login .landing-style.user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .landing-style.user-registration-Button, .ur-frontend-form .ur-button-container .landing-style.ur-submit-button, .cse-form .landing-style.gform_button, .landing-style.cse-btn--card-submit, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .landing-style.gform_button {
  border-radius: 31px;
  min-height: 55px;
  min-width: 165px;
}
@media (max-width: 576px) {
  .cse-btn--primary.landing-style, .cse-page--login #user-registration .ur-frontend-form.login .landing-style.user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .landing-style.user-registration-Button, .ur-frontend-form .ur-button-container .landing-style.ur-submit-button, .cse-form .landing-style.gform_button, .landing-style.cse-btn--card-submit, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .landing-style.gform_button {
    min-height: 50px;
  }
}

.cse-btn--primary-disabled {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 24px;
  color: #ddd;
  border-radius: 20px;
  border: 1px solid #9e9e9e;
  background-color: #9e9e9e;
  text-align: center;
  white-space: nowrap;
  padding: 6px 30px;
  transition: background-color 0.1s ease-in-out;
  pointer-events: none;
}
.cse-btn--primary-disabled:hover {
  background-color: #9e9e9e;
  color: #fff;
}
.cse-btn--primary-disabled:hover:disabled {
  background-color: #9e9e9e;
  color: #fff;
  opacity: 0.5;
  cursor: pointer;
}
.cse-btn--primary-disabled:disabled {
  background-color: #9e9e9e;
  color: #fff;
  opacity: 0.5;
  cursor: pointer;
}

.cse-btn--arrow {
  display: -ms-inline-flexbox;
  display: inline-flex;
  opacity: 0.7;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--c-global-font);
  border-radius: 21px;
  border: 2px solid var(--c-global-font);
  padding: 10px 25px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.cse-btn--arrow .cse-svg-inline {
  width: 17px;
  height: 20px;
  fill: var(--c-global-font);
  transition: fill 0.3s ease-in-out;
  margin: 0 25px 0 0;
}
.cse-btn--arrow:hover {
  background-color: var(--c-global-font);
  color: var(--c-global-bg);
}
.cse-btn--arrow:hover .cse-svg-inline {
  fill: var(--c-global-bg);
}

.cse-btn--card-submit, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button {
  width: 100%;
  height: 100%;
  text-transform: none;
}

.go-to-scene-btn {
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  color: #000;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.1s ease-in-out;
}

.btn-full-width {
  width: 100%;
}

.cse-button-widget {
  pointer-events: none;
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 0;
  left: 0;
}
@media (min-width: 576px) {
  .cse-button-widget {
    bottom: 20px;
    right: 20px;
    left: unset;
  }
}
@media (min-width: 576px) {
  .cse-button-widget.cbw-beamer {
    right: 95px;
  }
}
@media (min-width: 576px) {
  .cse-button-widget.cbw-left {
    right: unset;
    left: 20px;
  }
}
@media (min-width: 576px) {
  .cse-button-widget.cbw-left.cbw-beamer {
    right: unset;
  }
}
.cse-button-widget.cbw-top {
  position: absolute;
  top: 0;
}
@media (min-width: 576px) {
  .cse-button-widget.cbw-top {
    top: 20px;
  }
}
.cse-button-widget.cbw-top .cse-button-widget__btn {
  position: sticky;
  top: 0;
}
@media (min-width: 576px) {
  .cse-button-widget.cbw-top .cse-button-widget__btn {
    top: 20px;
  }
}
@media (min-width: 576px) {
  .cse-button-widget.cbw-top.cbw-beamer {
    right: 20px;
  }
}
@media (min-width: 576px) {
  .cse-button-widget.cbw-top.cbw-left {
    right: unset;
  }
}
@media (min-width: 576px) {
  .cse-button-widget.cbw-top.cbw-left.cbw-beamer {
    right: unset;
  }
}
.cse-button-widget.cbw-smaller .cse-button-widget__btn {
  padding: 10px 22px;
}
@media (min-width: 576px) {
  .cse-button-widget.cbw-smaller .cse-button-widget__btn {
    -ms-flex-pack: justify;
        justify-content: space-between;
    transition: box-shadow 0.3s;
    animation: cbw-pop-in 0.5s;
    border-radius: 120px;
    padding: 18px 32px;
  }
}
.cse-button-widget.cbw-smaller .cse-button-widget__text {
  line-height: 20px;
  font-weight: 600;
  font-size: 12px;
}
.cse-button-widget.cbw-smaller .cse-button-widget__icon {
  height: 16px;
  width: 16px;
}
.cse-button-widget.cbw-smaller .cse-button-widget__icon img {
  max-height: 16px;
  max-width: 16px;
}
.cse-button-widget.cbw-smaller .cse-button-widget__icon ~ .cse-button-widget__text {
  padding-left: 10px;
}

.cse-header--sticky + .cse-main .cse-button-widget.cbw-top {
  position: fixed;
  top: 80px;
}
@media (min-width: 576px) {
  .cse-header--sticky + .cse-main .cse-button-widget.cbw-top {
    top: 100px;
  }
}
.cse-header--sticky + .cse-main .cse-button-widget.cbw-top .cse-button-widget__btn {
  position: static;
}

.cse-button-widget__btn {
  background-color: var(--c-global-btn-bg);
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  pointer-events: auto;
  -ms-flex-align: center;
      align-items: center;
  padding: 14px 22px;
  display: -ms-flexbox;
  display: flex;
  z-index: 999;
}
@media (min-width: 576px) {
  .cse-button-widget__btn {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
    -ms-flex-pack: justify;
        justify-content: space-between;
    transition: box-shadow 0.3s;
    animation: cbw-pop-in 0.5s;
    border-radius: 120px;
    padding: 18px 32px;
  }
  .cse-button-widget__btn:hover {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  }
}

.cse-button-widget__text {
  color: var(--c-global-btn-font);
  line-height: 20px;
  font-weight: 600;
  font-size: 13px;
}
@media (min-width: 576px) {
  .cse-button-widget__text {
    line-height: 22px;
    font-size: 14px;
  }
}

.cse-button-widget__icon {
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  width: 25px;
}
.cse-button-widget__icon img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 25px;
  max-width: 25px;
  height: 100%;
  width: 100%;
}
.cse-button-widget__icon ~ .cse-button-widget__text {
  padding-left: 12px;
}

@keyframes cbw-pop-in {
  0% {
    transform: scale(0.75);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .cse-button-widget.cbw-top ~ .cse-page {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .cse-button-widget.cbw-top.cbw-smaller ~ .cse-page {
    margin-top: 34px;
  }
}

.cse-section--chatroll {
  padding: 50px 0;
}
@media (min-width: 992px) {
  .cse-section--chatroll {
    padding: 75px 0 125px;
  }
}
.cse-section--chatroll .cse-container {
  max-width: 825px;
}
.cse-section--chatroll .cse-chat-header {
  width: 100%;
  text-align: center;
}
.cse-section--chatroll .cse-chat-header span {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}
.cse-section--chatroll .cse-chat-container {
  margin-top: 50px;
  width: 100%;
  height: 300px;
}
@media (min-width: 992px) {
  .cse-section--chatroll .cse-chat-container {
    margin-top: 75px;
    height: 450px;
  }
}
.cse-section--chatroll .cse-chat-container .cse-chatroll-frame {
  height: inherit;
  max-width: 500px;
  position: relative;
  margin: auto;
}
@media (min-width: 992px) {
  .cse-section--chatroll .cse-chat-container .cse-chatroll-frame {
    max-width: 100vw;
    width: 100%;
  }
}
.cse-section--chatroll .cse-chat-container .cse-chatroll-frame iframe {
  width: 100%;
  height: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.cse-form {
  display: block;
}
@media (min-width: 576px) {
  .cse-form .gform_wrapper.gform_validation_error .gform_body ul .gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: 100% !important;
  }
}
.cse-form .gform_heading,
.cse-form img.gform_ajax_spinner {
  display: none !important;
}
.cse-form div.validation_error {
  font-size: 13px !important;
  border: none !important;
  color: #fff !important;
  background-color: #ff0000;
  border-radius: 10px;
  padding: 10px 0 !important;
  margin: 20px 0 !important;
}
.cse-form .gform_body .gform_fields {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cse-form .gform_body .gform_fields > .gfield {
  width: 100%;
  margin: 0 0 15px !important;
  padding: 0 !important;
}
@media (min-width: 576px) {
  .cse-form .gform_body .gform_fields > .gfield:first-child, .cse-form .gform_body .gform_fields > .gfield:nth-child(2) {
    width: 49%;
  }
}
.cse-form .gform_body .gform_fields > .gfield.gfield_error div input:not([type=checkbox]),
.cse-form .gform_body .gform_fields > .gfield.gfield_error div textarea {
  border-color: #ff0000 !important;
}
.cse-form .gform_body .gform_fields > .gfield label {
  display: none;
}
.cse-form .gform_body .gform_fields > .gfield div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  margin: 0 !important;
}
.cse-form .gform_body .gform_fields > .gfield div input:not([type=checkbox]),
.cse-form .gform_body .gform_fields > .gfield div textarea {
  width: 100% !important;
  outline: none;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #fbfbfb;
  padding: 6px 20px !important;
  margin: 0;
}
.cse-form .gform_body .gform_fields > .gfield div input:not([type=checkbox]), .cse-form .gform_body .gform_fields > .gfield div input:not([type=checkbox])::-moz-placeholder,
.cse-form .gform_body .gform_fields > .gfield div textarea,
.cse-form .gform_body .gform_fields > .gfield div textarea::-moz-placeholder {
  font-size: 13px !important;
  line-height: 24px !important;
  letter-spacing: 0.4px !important;
  color: #9e9e9e;
}
.cse-form .gform_body .gform_fields > .gfield div input:not([type=checkbox]), .cse-form .gform_body .gform_fields > .gfield div input:not([type=checkbox]):-ms-input-placeholder,
.cse-form .gform_body .gform_fields > .gfield div textarea,
.cse-form .gform_body .gform_fields > .gfield div textarea:-ms-input-placeholder {
  font-size: 13px !important;
  line-height: 24px !important;
  letter-spacing: 0.4px !important;
  color: #9e9e9e;
}
.cse-form .gform_body .gform_fields > .gfield div input:not([type=checkbox]), .cse-form .gform_body .gform_fields > .gfield div input:not([type=checkbox])::placeholder,
.cse-form .gform_body .gform_fields > .gfield div textarea,
.cse-form .gform_body .gform_fields > .gfield div textarea::placeholder {
  font-size: 13px !important;
  line-height: 24px !important;
  letter-spacing: 0.4px !important;
  color: #9e9e9e;
}
.cse-form .gform_body .gform_fields > .gfield .validation_message {
  display: none;
}
.cse-form .gform_body .gform_fields .gfield.gfield_error,
.cse-form .gform_body .gform_fields .gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  max-width: 100% !important;
  background-color: transparent;
  border: none;
  margin: 0 0 15px !important;
}
.cse-form .gform_body .gform_fields .cse-consent {
  display: -ms-flexbox;
  display: flex;
}
.cse-form .gform_body .gform_fields .cse-consent input {
  width: auto;
  margin: 2px 10px 0 0;
}
.cse-form .gform_body .gform_fields .cse-consent .gfield_consent_description {
  display: block;
  -ms-flex-order: 3;
      order: 3;
  overflow: visible;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0;
  color: #9e9e9e;
  border: none;
  padding: 0;
}
.cse-form .gform_body .gform_fields .cse-consent .gfield_required {
  -ms-flex-order: 2;
      order: 2;
  color: #ff0000 !important;
  margin: -3px 5px 0 !important;
}
.cse-form .gform_body .gform_fields .cse-consent.gfield_error .gfield_consent_description {
  color: #ff0000;
}
.cse-form .gform_footer {
  margin: 0 !important;
}
.cse-form .gform_button {
  display: block !important;
  width: auto !important;
  min-height: 0 !important;
  font-size: 14px !important;
  line-height: 24px !important;
  text-transform: lowercase;
  margin: 0 auto !important;
}
@media (min-width: 736px) {
  .cse-form .gform_button {
    margin: 0 0 0 auto !important;
  }
}
.cse-form .gform_confirmation_message {
  color: #fff;
  background-color: #228B22;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0 0;
}

.cse-section--filter .cse-filter {
  width: 100%;
}
@media (min-width: 736px) {
  .cse-section--filter .cse-filter {
    width: 585px;
  }
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid var(--c-global-font);
  opacity: 0.45;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row:focus-within {
  opacity: 0.65;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--col {
  -ms-flex: 1;
      flex: 1;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input {
  color: var(--c-global-font);
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  font-size: 16px;
  font-weight: 300;
  padding: 8px 0;
  margin: 0;
  outline: none;
}
@media (min-width: 576px) {
  .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input {
    font-size: 18px;
  }
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input::-moz-placeholder {
  color: var(--c-global-font);
  opacity: 0.85;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input:-ms-input-placeholder {
  color: var(--c-global-font);
  opacity: 0.85;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input::placeholder {
  color: var(--c-global-font);
  opacity: 0.85;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input:-moz-placeholder {
  color: var(--c-global-font);
  opacity: 0.85;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input::-moz-placeholder {
  color: var(--c-global-font);
  opacity: 0.85;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input:-ms-input-placeholder {
  color: var(--c-global-font);
  opacity: 0.85;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input::-webkit-input-placeholder {
  color: var(--c-global-font);
  opacity: 0.85;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--btn {
  width: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  box-shadow: none;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--btn svg {
  width: 20px;
  height: 20px;
  opacity: 0.75;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--btn svg path {
  fill: var(--c-global-font);
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--btn svg:hover {
  opacity: 1;
}
.cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--btn-clear {
  display: none;
}

.cse-filter-loader {
  display: none;
  width: 100%;
  height: 200px;
}
.cse-filter-loader .cse-loader {
  display: block;
}

.cse-filter-alert {
  padding: 0 18px;
  display: none;
}

.cse-gutenberg .cse-video {
  width: 100%;
  height: 290px;
  padding: 20px 0;
  margin: 0;
}
@media (min-width: 576px) {
  .cse-gutenberg .cse-video {
    height: 430px;
  }
}
@media (min-width: 736px) {
  .cse-gutenberg .cse-video {
    height: 515px;
    padding: 20px 0 40px;
  }
}
.cse-gutenberg .cse-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.cse-gutenberg blockquote {
  margin: 20px 0;
}
.cse-gutenberg blockquote p {
  letter-spacing: 0.2px;
  line-height: 28px;
  margin: 0;
}
.cse-gutenberg .wp-block-columns {
  padding: 25px 0;
  margin: 0;
}
@media (min-width: 736px) {
  .cse-gutenberg .wp-block-columns {
    padding: 45px 0;
  }
}
.cse-gutenberg .cse-img-fullwidth {
  margin: 0;
}
.cse-gutenberg .cse-img-fullwidth img {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  position: relative;
  right: 50%;
  width: 100vw;
}
.cse-gutenberg .cse-small-width {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.is-style-cse-shadow img {
  box-shadow: 5px 5px 10px #CECECE29;
}

.cse-popup {
  overflow-y: auto;
  /* Basic popup content */
  /* Events */
}
.cse-popup .modal__container {
  width: 100%;
  max-width: 1075px;
  background-color: #fff;
  box-shadow: 0px 0px 50px #00000029;
  border-radius: 10px;
  padding: 20px;
  margin: auto;
}
@media (min-width: 576px) {
  .cse-popup .modal__container {
    padding: 32px 36px;
  }
}
@media (min-width: 736px) {
  .cse-popup .modal__container {
    width: 85vw;
  }
}
@media (min-width: 992px) {
  .cse-popup .modal__container {
    width: 80vw;
  }
}
.cse-popup .modal__overlay {
  padding: 15px 0 8vh;
  overflow: auto;
  min-height: 92vh;
}
.cse-popup .cse-popup__close {
  height: 18px;
  width: 18px;
  top: 20px;
  right: 20px;
  position: absolute;
  z-index: 99;
  cursor: pointer;
}
@media (min-width: 736px) {
  .cse-popup .cse-popup__close {
    height: 22px;
    width: 22px;
    top: 30px;
    right: 34px;
  }
}
.cse-popup .cse-popup__close:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #707070;
  transform: rotate(45deg) translate(6px, 6px);
}
.cse-popup .cse-popup__close:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #707070;
  transform: rotate(135deg) translate(6px, -6px);
}
.cse-popup .cse-popup__btn-prev,
.cse-popup .cse-popup__btn-next {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  margin: auto;
  padding: 0;
}
.cse-popup .cse-popup__btn-prev .cse-svg-inline,
.cse-popup .cse-popup__btn-next .cse-svg-inline {
  display: none;
  fill: #9e9e9e;
}
@media (min-width: 576px) {
  .cse-popup .cse-popup__btn-prev .cse-svg-inline,
.cse-popup .cse-popup__btn-next .cse-svg-inline {
    width: 15px;
    height: 30px;
    display: block;
  }
}
.cse-popup .cse-popup__btn-prev {
  left: 10px;
  transform: rotate(180deg);
}
@media (min-width: 1240px) {
  .cse-popup .cse-popup__btn-prev {
    left: 30px;
  }
}
.cse-popup .cse-popup__btn-next {
  right: 10px;
}
@media (min-width: 1240px) {
  .cse-popup .cse-popup__btn-next {
    right: 30px;
  }
}
.cse-popup .cse-popup__content {
  padding: 4px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
}
@media (min-width: 736px) {
  .cse-popup .cse-popup__content {
    padding: 16px 4px 14px 12px;
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media (min-width: 1240px) {
  .cse-popup .cse-popup__content {
    padding: 24px 28px 24px 34px;
  }
}
@media (max-width: 767px) {
  .cse-popup .cse-popup__content {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.cse-popup .cse-popup__col-sm {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
@media (min-width: 576px) {
  .cse-popup .cse-popup__col-sm {
    width: 125px;
  }
}
@media (min-width: 736px) {
  .cse-popup .cse-popup__col-sm {
    width: 150px;
  }
}
@media (min-width: 992px) {
  .cse-popup .cse-popup__col-sm {
    width: 200px;
  }
}
.cse-popup .cse-popup__col-lg {
  width: auto;
  -ms-flex: 1;
      flex: 1;
  text-align: center;
}
@media (min-width: 576px) {
  .cse-popup .cse-popup__col-lg {
    text-align: left;
  }
}
@media (min-width: 1240px) {
  .cse-popup .cse-popup__col-lg {
    padding: 0px 0px 0px 25px;
  }
}
.cse-popup .cse-popup__img {
  position: relative;
  width: 175px;
  height: 175px;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--c-global-bg);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.06);
  padding-bottom: 0;
  transition: box-shadow 0.3s;
}
@media (min-width: 576px) {
  .cse-popup .cse-popup__img {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
  }
}
.cse-popup .cse-popup__img > img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (min-width: 576px) {
  .cse-popup .cse-popup__img > img {
    position: absolute;
  }
}
.cse-popup .cse-popup__text {
  padding: 10px 0 0 0;
}
@media (min-width: 1240px) {
  .cse-popup .cse-popup__text {
    padding: 20px 0 0 0;
  }
}
.cse-popup .cse-popup__text-name {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 0 2px 0;
  margin: 0;
}
@media (min-width: 576px) {
  .cse-popup .cse-popup__text-name {
    font-size: 15px;
  }
}
@media (min-width: 736px) {
  .cse-popup .cse-popup__text-name {
    font-size: 16px;
  }
}
.cse-popup .cse-popup__text-position {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0;
  padding: 4px 0;
  margin: 0;
  color: #949494;
}
@media (min-width: 576px) {
  .cse-popup .cse-popup__text-position {
    font-size: 13px;
  }
}
@media (min-width: 736px) {
  .cse-popup .cse-popup__text-position {
    font-size: 14px;
  }
}
.cse-popup .cse-popup__text-description, .cse-popup .cse-popup__text-description p, .cse-popup .cse-popup__text-description span, .cse-popup .cse-popup__text-description ul, .cse-popup .cse-popup__text-description ol {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  color: #000;
  padding: 4px 0 0 0;
}
@media (min-width: 576px) {
  .cse-popup .cse-popup__text-description, .cse-popup .cse-popup__text-description p, .cse-popup .cse-popup__text-description span, .cse-popup .cse-popup__text-description ul, .cse-popup .cse-popup__text-description ol {
    font-size: 13px;
  }
}
@media (min-width: 736px) {
  .cse-popup .cse-popup__text-description, .cse-popup .cse-popup__text-description p, .cse-popup .cse-popup__text-description span, .cse-popup .cse-popup__text-description ul, .cse-popup .cse-popup__text-description ol {
    font-size: 14px;
  }
}
.cse-popup .cse-popup__text-description hr {
  border: 1px solid #d8d8d8;
  margin: 30px 0 10px;
}
.cse-popup .cse-popup__text-description p, .cse-popup .cse-popup__text-description ul, .cse-popup .cse-popup__text-description ol {
  margin: 8px 0;
}
.cse-popup .cse-popup__events {
  border-top: 1px solid #D8D8D8;
  margin-top: 18px;
}
.cse-popup .cse-popup__events .cse-popup__events-header {
  padding: 12px 0 0 0;
  font-size: 14px;
  font-weight: 700;
}
.cse-popup .cse-popup__events .cse-popup__events-table {
  padding: 18px 0 0 0;
  display: -ms-flexbox;
  display: flex;
}
.cse-popup .cse-popup__events .cse-popup__events-table table, .cse-popup .cse-popup__events .cse-popup__events-table tbody {
  width: 100%;
  margin: 0;
}
.cse-popup .cse-popup__events .cse-popup__events-table td {
  padding-top: 6px;
  padding-bottom: 6px;
  color: #5B5B5B;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  vertical-align: top;
  display: inline;
}
@media (min-width: 576px) {
  .cse-popup .cse-popup__events .cse-popup__events-table td {
    font-size: 13px;
  }
}
@media (min-width: 736px) {
  .cse-popup .cse-popup__events .cse-popup__events-table td {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .cse-popup .cse-popup__events .cse-popup__events-table td {
    display: table-cell;
  }
}
.cse-popup .cse-popup__events .cse-popup__events-table .day {
  white-space: nowrap;
}
.cse-popup .cse-popup__events .cse-popup__events-table .stage {
  padding: 6px 10px 25px 17px;
  text-align: left;
  white-space: normal;
}
@media (min-width: 992px) {
  .cse-popup .cse-popup__events .cse-popup__events-table .stage {
    white-space: nowrap;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.cse-popup .cse-popup__events .cse-popup__events-table .time {
  text-align: center;
  white-space: nowrap;
  color: #aaa;
}
@media (min-width: 992px) {
  .cse-popup .cse-popup__events .cse-popup__events-table .time {
    color: #5B5B5B;
  }
}
.cse-popup .cse-popup__events .cse-popup__events-table .name {
  color: #000;
  font-weight: 500;
  display: block;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 30px;
  margin-top: 1px;
  width: 100%;
  font-size: 13px;
}
@media (min-width: 736px) {
  .cse-popup .cse-popup__events .cse-popup__events-table .name {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .cse-popup .cse-popup__events .cse-popup__events-table .name {
    display: table-cell;
    padding-left: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-top: 0;
  }
}
.cse-popup .cse-popup__events .cse-popup__events-table tr:last-child .name {
  padding-bottom: 6px;
}

/* Popup Networking */
.cse-popup.cse-popup__networking .modal__container .cse-popup__content {
  padding: 4px;
}
@media (min-width: 736px) {
  .cse-popup.cse-popup__networking .modal__container .cse-popup__content {
    padding: 16px 30px 14px;
  }
}
@media (min-width: 1240px) {
  .cse-popup.cse-popup__networking .modal__container .cse-popup__content {
    padding: 24px 60px 24px;
  }
}
.cse-popup.cse-popup__networking .modal__container .cse-popup__text {
  padding: 0 0 10px;
  margin: 0 0 20px;
}
@media (min-width: 1240px) {
  .cse-popup.cse-popup__networking .modal__container .cse-popup__text {
    margin: 0 0 30px;
  }
}
.cse-popup.cse-popup__networking .modal__container .cse-popup__text-name {
  font-size: 20px;
  text-transform: uppercase;
}
@media (min-width: 736px) {
  .cse-popup.cse-popup__networking .modal__container .cse-popup__text-name {
    font-size: 25px;
  }
}
.cse-popup.cse-popup__networking .modal__container .cse-popup__img {
  width: 174px;
  height: 174px;
  border-radius: 50%;
  overflow: visible;
}
@media (min-width: 576px) {
  .cse-popup.cse-popup__networking .modal__container .cse-popup__img {
    width: calc(100% - 2px);
    height: 0;
    padding-bottom: calc(100% - 2px);
  }
}
.cse-popup.cse-popup__networking .modal__container .cse-popup__img > img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  max-width: none;
  border-radius: 50%;
  margin: -1px;
}
@media (min-width: 576px) {
  .cse-popup.cse-popup__networking .modal__container .cse-popup__img > img {
    position: absolute;
  }
}
.cse-popup.cse-popup__networking .modal__container .cse-popup__btn-desc {
  display: block;
  font-size: 10px;
  line-height: 1;
  color: #000;
  margin: 10px 0 0;
}

/* Ajax Popup Loader */
.cse-popup-loader {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1300;
  opacity: 0;
  transition: opacity 0.2s;
}
.cse-popup-loader:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-global-bg);
  opacity: 0.33;
}
.cse-popup-loader .cse-loader {
  display: block;
}
.cse-popup-loader.active {
  opacity: 1;
  transition: opacity 0.3s;
}
.cse-popup-loader.off .cse-loader {
  display: none;
}

/* MicroModal */
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 2000000000;
  outline: none;
}

.modal__container {
  position: relative;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/* Demo Animation Style */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(4%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-2%);
  }
}
.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.cse-popup__form .modal__container {
  max-width: 675px;
  width: 95%;
}
.cse-popup__form .cse-popup__content {
  padding: 15px 0 0 0;
}
.cse-popup__form .cse-popup__content .cse-popform__user {
  width: calc(100% - 15px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 5px;
}
.cse-popup__form .cse-popup__content .cse-popform__user .cse-popform__user-img {
  width: 50px;
  height: 50px;
}
.cse-popup__form .cse-popup__content .cse-popform__user .cse-popform__user-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
}
.cse-popup__form .cse-popup__content .cse-popform__user .cse-popform__user-name {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 2px 0 0 15px;
}
.cse-popup__form .cse-popup__content .cse-popform__user .cse-popform__user-name .caption {
  font-size: 10px;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 600;
  line-height: 1.15;
}
.cse-popup__form .cse-popup__content .cse-popform__user .cse-popform__user-name .name {
  padding-top: 4px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
}
.cse-popup__form .cse-popup__content .cse-form {
  width: 100%;
  padding-top: 15px;
}
.cse-popup__form .cse-popup__content .cse-form .gform_wrapper {
  margin-bottom: 16px;
  margin-top: 16px;
}
.cse-popup__form .cse-popup__content .cse-form .gform_body .gform_fields {
  grid-row-gap: unset;
}
.cse-popup__form .cse-popup__content .cse-form .gform_body .gform_fields .gfield {
  width: 100%;
}
.cse-popup__form .cse-popup__content .cse-form .gform_body .gform_fields .gfield div input:not([type=checkbox]),
.cse-popup__form .cse-popup__content .cse-form .gform_body .gform_fields .gfield div textarea {
  background-color: #eeeeee;
}
.cse-popup__form .cse-popup__content .cse-form .gform_body .gform_fields .cse-popform__form-info {
  font-size: 12px;
  line-height: 1.4;
  color: #aaa;
  margin: 0 auto !important;
  text-align: center;
}
.cse-popup__form .cse-popup__content .cse-form .gform_footer {
  padding-bottom: 0;
}
.cse-popup__form .cse-popup__content .cse-form .gform_footer .gform_button {
  margin: 0 auto !important;
}

.cse-lang-switch .cse-active-lang {
  cursor: pointer;
}
.cse-lang-switch .cse-round-lang {
  border: solid 1px rgba(var(--c-global-menu-font-rgb), 0.15);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  height: 30px;
  width: 30px;
}
.cse-lang-switch .cse-round-lang__flag-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.cse-lang-switch .cse-lang-list {
  background-color: var(--c-global-menu-bg);
  transition: all 0.2s;
  border-radius: 10px;
  position: absolute;
  padding: 15px;
  top: 125%;
  right: 0;
}
.cse-lang-switch .cse-lang-list__item {
  list-style: none;
}
.cse-lang-switch .cse-lang-name {
  color: var(--c-global-menu-font);
  letter-spacing: 0.2px;
}
.cse-lang-switch .cse-lang-name--active {
  font-weight: 600;
}
.cse-lang-switch .cse-lang-list__link {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.cse-lang-switch-desktop {
  border-left: 1px solid rgba(var(--c-global-menu-font-rgb), 0.15);
  padding: 10px 0 10px 20px;
  margin: 15px 0 15px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
  position: relative;
  display: none;
}
@media (min-width: 1240px) {
  .cse-lang-switch-desktop {
    display: -ms-flexbox;
    display: flex;
  }
}
.cse-lang-switch-desktop .cse-lang-list {
  box-shadow: 0 25px 30px -15px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 10px 10px;
  top: calc(100% - 10px);
  margin: 15px 0 0 0;
  padding: 20px;
}
.cse-lang-switch-desktop .cse-lang-list__item:not(:last-child) {
  margin-bottom: 4px;
}
.cse-lang-switch-desktop .cse-lang-list__item .cse-lang-name {
  margin-left: 10px;
}
.cse-lang-switch-desktop .cse-lang-list__link {
  border-radius: 10px;
  padding: 10px 15px;
}
.cse-lang-switch-desktop .cse-lang-list__link:hover {
  background: rgba(var(--c-global-menu-font-rgb), 0.05);
}
.cse-lang-switch-desktop .cse-lang-list {
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 2233;
  opacity: 0;
}
.cse-lang-switch-desktop.cse-lang-switch-active .cse-lang-list {
  pointer-events: auto;
  opacity: 1;
}

.cse-lang-switch-mobile {
  -ms-flex-pack: center;
      justify-content: center;
  padding: 15px 20px;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1240px) {
  .cse-lang-switch-mobile {
    display: none;
  }
}
.cse-lang-switch-mobile .cse-round-lang {
  height: 25px;
  width: 25px;
}
.cse-lang-switch-mobile .cse-lang-switch-mobile__select {
  border: 1px solid rgba(var(--c-global-menu-font-rgb), 0.15);
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}
.cse-lang-switch-mobile .cse-lang-switch-mobile__select .select-active-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 10px 20px;
}
.cse-lang-switch-mobile .cse-lang-switch-mobile__select .cse-lang-name {
  margin-left: 20px;
  font-size: 13px;
}
.cse-lang-switch-mobile .cse-lang-switch-mobile__select .lang-switch-svg-arrow {
  transition: all 0.2s;
  margin-left: 35px;
  width: 10px;
  height: 6px;
}
.cse-lang-switch-mobile .cse-lang-switch-mobile__select .lang-switch-svg-arrow--active {
  transform: rotate(180deg);
}
.cse-lang-switch-mobile .cse-mobile-lang-list {
  transition: all 0.2s;
  list-style: none;
  max-height: 0;
  padding: 0;
  margin: 0;
}
.cse-lang-switch-mobile .cse-mobile-lang-list .cse-lang-list__item {
  background: rgba(var(--c-global-menu-font-rgb), 0.05);
  padding: 10px 20px;
}
.cse-lang-switch-mobile .cse-mobile-lang-list .cse-lang-list__item:hover {
  background: unset;
}

.cse-loader,
.cse-loader:before,
.cse-loader:after {
  background: var(--c-global-font);
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.cse-loader {
  display: none;
  color: var(--c-global-font);
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  min-height: 25px;
  font-size: 5px;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.cse-loader:before,
.cse-loader:after {
  position: absolute;
  top: 0;
  content: "";
}

.cse-loader:before {
  left: -1.5em;
  animation-delay: -0.32s;
}

.cse-loader:after {
  left: 1.5em;
}
@keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
.cse-search__input input {
  -webkit-appearance: none;
  border-radius: 0;
}

.cse-search-desktop {
  border-left: 1px solid rgba(var(--c-global-menu-font-rgb), 0.15);
  padding: 10px 5px 10px 20px;
  margin: 15px 0 15px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
  display: none;
  /* Active */
}
@media (min-width: 1240px) {
  .cse-search-desktop {
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1610px) {
  .cse-search-desktop {
    position: relative;
    padding-right: 0;
  }
}
.cse-search-desktop + .cse-lang-switch-desktop {
  margin-left: 15px;
}
@media (min-width: 1610px) {
  .cse-search-desktop + .cse-lang-switch-desktop {
    margin-left: 20px;
  }
}
.cse-search-desktop .cse-search__trigger-open,
.cse-search-desktop .cse-search__trigger-close {
  -ms-flex-pack: center;
      justify-content: center;
}
.cse-search-desktop .cse-search__trigger-open {
  display: -ms-flexbox;
  display: flex;
}
.cse-search-desktop .cse-search__trigger-open, .cse-search-desktop .cse-search__trigger-open .cse-svg-inline {
  height: 24px;
  width: 24px;
}
.cse-search-desktop .cse-search__trigger-open .cse-svg-inline path {
  stroke: var(--c-global-menu-font);
}
.cse-search-desktop .cse-search__trigger-close {
  display: none;
  width: 24px;
}
.cse-search-desktop .cse-search__trigger-close .cse-svg-inline {
  width: 19px;
}
.cse-search-desktop .cse-search__trigger-close, .cse-search-desktop .cse-search__trigger-close .cse-svg-inline {
  height: 19px;
}
.cse-search-desktop .cse-search__trigger-close .cse-svg-inline path {
  fill: var(--c-global-menu-font);
}
.cse-search-desktop .cse-search__dropdown {
  box-shadow: 0 25px 30px -15px rgba(0, 0, 0, 0.05);
  background-color: var(--c-global-menu-bg);
  border-radius: 0 0 10px 10px;
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  right: 15px;
  top: 100%;
}
@media (min-width: 1610px) {
  .cse-search-desktop .cse-search__dropdown {
    top: calc(100% + 15px);
    right: -20px;
  }
}
.cse-search-desktop .cse-search__dropdown-container {
  padding: 20px;
  display: -ms-flexbox;
  display: flex;
}
.cse-search-desktop .cse-search__input {
  position: relative;
  display: -ms-flexbox;
  display: flex;
}
.cse-search-desktop .cse-search__input input {
  background-color: rgba(255, 255, 255, 0);
  color: var(--c-global-menu-font);
  font-size: 15px;
  outline: none;
  border: none;
  width: 250px;
  padding: 0;
}
.cse-search-desktop .cse-search__input input::-moz-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-desktop .cse-search__input input:-ms-input-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-desktop .cse-search__input input::placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-desktop .cse-search__input input:-moz-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-desktop .cse-search__input input::-moz-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-desktop .cse-search__input input:-ms-input-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-desktop .cse-search__input input::-webkit-input-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-desktop .cse-search__input:after {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--c-global-menu-font);
  opacity: 0.15;
  height: 1px;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
}
.cse-search-desktop .cse-search__submit {
  padding-left: 15px;
}
.cse-search-desktop .cse-search__submit .cse-btn, .cse-search-desktop .cse-search__submit #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-search-desktop .cse-search__submit a, .cse-search-desktop .cse-search__submit .cse-btn--primary, .cse-search-desktop .cse-search__submit .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-search-desktop .cse-search__submit .user-registration-Button,
.cse-search-desktop .cse-search__submit .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-search-desktop .cse-search__submit .user-registration-Button, .cse-search-desktop .cse-search__submit .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-search-desktop .cse-search__submit .ur-submit-button, .cse-search-desktop .cse-search__submit .cse-btn--primary-disabled, .cse-search-desktop .cse-search__submit .cse-btn--card-submit, .cse-search-desktop .cse-search__submit .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .cse-search-desktop .cse-search__submit .gform_button, .cse-search-desktop .cse-search__submit .cse-form .gform_button, .cse-form .cse-search-desktop .cse-search__submit .gform_button {
  letter-spacing: 0.6px;
  padding: 6px 22px;
  font-weight: 600;
  font-size: 13px;
}
.cse-search-desktop .cse-search__dropdown {
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 2222;
  opacity: 0;
}
.cse-search-desktop.cse-search-active .cse-search__trigger-open {
  display: none;
}
.cse-search-desktop.cse-search-active .cse-search__trigger-close {
  display: -ms-flexbox;
  display: flex;
}
.cse-search-desktop.cse-search-active .cse-search__dropdown {
  pointer-events: auto;
  opacity: 1;
}

.cse-search-mobile {
  padding: 20px 20px 15px;
}
.cse-search-mobile .cse-search__mobile-container {
  padding: 10px 0 15px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
}
.cse-search-mobile .cse-search__mobile-container:after {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--c-global-menu-font);
  opacity: 0.15;
  height: 1px;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
}
.cse-search-mobile .cse-search__input {
  -ms-flex: 1;
      flex: 1;
}
.cse-search-mobile .cse-search__input input {
  background-color: rgba(255, 255, 255, 0);
  color: var(--c-global-menu-font);
  font-size: 16px;
  outline: none;
  border: none;
  width: 100%;
  padding: 0;
}
.cse-search-mobile .cse-search__input input::-moz-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-mobile .cse-search__input input:-ms-input-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-mobile .cse-search__input input::placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-mobile .cse-search__input input:-moz-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-mobile .cse-search__input input::-moz-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-mobile .cse-search__input input:-ms-input-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-mobile .cse-search__input input::-webkit-input-placeholder {
  color: var(--c-global-menu-font);
  opacity: 0.5;
}
.cse-search-mobile .cse-search__submit {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
}
.cse-search-mobile .cse-search__submit .cse-btn, .cse-search-mobile .cse-search__submit #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-search-mobile .cse-search__submit a, .cse-search-mobile .cse-search__submit .cse-btn--primary, .cse-search-mobile .cse-search__submit .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-search-mobile .cse-search__submit .user-registration-Button,
.cse-search-mobile .cse-search__submit .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-search-mobile .cse-search__submit .user-registration-Button, .cse-search-mobile .cse-search__submit .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-search-mobile .cse-search__submit .ur-submit-button, .cse-search-mobile .cse-search__submit .cse-btn--primary-disabled, .cse-search-mobile .cse-search__submit .cse-btn--card-submit, .cse-search-mobile .cse-search__submit .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .cse-search-mobile .cse-search__submit .gform_button, .cse-search-mobile .cse-search__submit .cse-form .gform_button, .cse-form .cse-search-mobile .cse-search__submit .gform_button {
  padding: 0 0 0 10px;
  display: -ms-flexbox;
  display: flex;
}
.cse-search-mobile .cse-search__submit .cse-btn .cse-svg-inline, .cse-search-mobile .cse-search__submit #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a .cse-svg-inline, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-search-mobile .cse-search__submit a .cse-svg-inline, .cse-search-mobile .cse-search__submit .cse-btn--primary .cse-svg-inline, .cse-search-mobile .cse-search__submit .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button .cse-svg-inline, .cse-page--login #user-registration .ur-frontend-form.login .cse-search-mobile .cse-search__submit .user-registration-Button .cse-svg-inline,
.cse-search-mobile .cse-search__submit .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button .cse-svg-inline,
.cse-page--account #user-registration .ur-frontend-form.login .cse-search-mobile .cse-search__submit .user-registration-Button .cse-svg-inline, .cse-search-mobile .cse-search__submit .ur-frontend-form .ur-button-container .ur-submit-button .cse-svg-inline, .ur-frontend-form .ur-button-container .cse-search-mobile .cse-search__submit .ur-submit-button .cse-svg-inline, .cse-search-mobile .cse-search__submit .cse-btn--primary-disabled .cse-svg-inline, .cse-search-mobile .cse-search__submit .cse-btn--card-submit .cse-svg-inline, .cse-search-mobile .cse-search__submit .cse-form .gform_button .cse-svg-inline, .cse-form .cse-search-mobile .cse-search__submit .gform_button .cse-svg-inline {
  height: 18px;
  width: 18px;
}
.cse-search-mobile .cse-search__submit .cse-btn .cse-svg-inline path, .cse-search-mobile .cse-search__submit #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a .cse-svg-inline path, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-search-mobile .cse-search__submit a .cse-svg-inline path, .cse-search-mobile .cse-search__submit .cse-btn--primary .cse-svg-inline path, .cse-search-mobile .cse-search__submit .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button .cse-svg-inline path, .cse-page--login #user-registration .ur-frontend-form.login .cse-search-mobile .cse-search__submit .user-registration-Button .cse-svg-inline path,
.cse-search-mobile .cse-search__submit .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button .cse-svg-inline path,
.cse-page--account #user-registration .ur-frontend-form.login .cse-search-mobile .cse-search__submit .user-registration-Button .cse-svg-inline path, .cse-search-mobile .cse-search__submit .ur-frontend-form .ur-button-container .ur-submit-button .cse-svg-inline path, .ur-frontend-form .ur-button-container .cse-search-mobile .cse-search__submit .ur-submit-button .cse-svg-inline path, .cse-search-mobile .cse-search__submit .cse-btn--primary-disabled .cse-svg-inline path, .cse-search-mobile .cse-search__submit .cse-btn--card-submit .cse-svg-inline path, .cse-search-mobile .cse-search__submit .cse-form .gform_button .cse-svg-inline path, .cse-form .cse-search-mobile .cse-search__submit .gform_button .cse-svg-inline path {
  stroke: var(--c-global-menu-font);
}

.cse-social-media {
  transform: translate(0%, -50%);
  -ms-flex-direction: column;
      flex-direction: column;
  position: fixed;
  display: -ms-flexbox;
  display: flex;
  z-index: 1000;
  top: 50%;
  left: 0;
}
@media (max-width: 1240px) {
  .cse-social-media--desktop {
    display: none;
  }
}
.cse-social-media--desktop .cse-social-media__img {
  -o-object-fit: cover;
     object-fit: cover;
}
.cse-social-media--mobile {
  padding: 15px;
  -ms-flex-align: center;
      align-items: center;
  position: static;
  transform: none;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1240px) {
  .cse-social-media--mobile {
    display: none;
  }
}
.cse-social-media--mobile:not(:first-child) .cse-social-media__container {
  margin: -10px 0;
}
.cse-social-media--mobile .cse-social-media__container {
  max-width: 230px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 576px) {
  .cse-social-media--mobile .cse-social-media__container {
    max-width: none;
  }
}
.cse-social-media--mobile .cse-social-media__item {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 10px;
}
.cse-social-media--mobile .cse-social-media__img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 35px;
  width: 35px;
}

.cse-social-media__item {
  transition: all 0.1s;
  margin: 0;
}
.cse-social-media__item:hover {
  filter: drop-shadow(2px 2px 0.75rem rgba(0, 0, 0, 0.2));
}

.cse-section--stream {
  padding: 30px 0 45px 0;
}
@media (min-width: 992px) {
  .cse-section--stream {
    padding: 45px 0 25px 0;
  }
}
@media (min-width: 1240px) {
  .cse-section--stream {
    padding: 60px 0 35px 0;
  }
}
.cse-section--stream .cse-stream {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
@media (min-width: 992px) {
  .cse-section--stream .cse-stream {
    padding: 0 10px;
  }
}
@media (min-width: 1650px) {
  .cse-section--stream .cse-stream {
    padding: 0;
  }
}
.cse-section--stream .cse-stream .cse-stream--video {
  position: relative;
  padding-bottom: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .cse-section--stream .cse-stream .cse-stream--video {
    width: 75%;
    padding-right: 15px;
    padding-bottom: 37px;
  }
}
@media (min-width: 1240px) {
  .cse-section--stream .cse-stream .cse-stream--video {
    padding-right: 25px;
  }
}
@media (min-width: 1410px) {
  .cse-section--stream .cse-stream .cse-stream--video {
    padding-right: 35px;
  }
}
.cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-wrapper {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  z-index: 1;
}
.cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 8px 8px 0 0;
}
@media (min-width: 992px) {
  .cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages {
    position: absolute;
    bottom: 5px;
    right: 10px;
  }
}
@media (min-width: 1240px) {
  .cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages {
    right: 20px;
  }
}
@media (min-width: 1410px) {
  .cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages {
    right: 30px;
  }
}
.cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages span {
  color: var(--c-global-font);
  opacity: 0.5;
  font-size: 11px;
  line-height: 14px;
  padding: 0 2px 0 0;
}
.cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages a {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  height: 24px;
  width: 24px;
  padding: 4px;
  margin: 0 0 0 6px;
  border-radius: 100px;
}
.cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 100px;
  border: 1px solid var(--c-global-font);
  opacity: 0;
}
.cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages a.active {
  pointer-events: none;
}
.cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages a.active:before {
  opacity: 1;
}
.cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages a:hover:before {
  opacity: 0.5;
}
.cse-section--stream .cse-stream .cse-stream--video .cse-stream--player-languages a img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
}
.cse-section--stream .cse-stream .cse-stream--sidebar {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media (min-width: 992px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar {
    width: 25%;
    padding-left: 15px;
  }
}
@media (min-width: 1240px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar {
    padding-left: 10px;
  }
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title {
  padding-top: 22px;
  padding-bottom: 12px;
  position: relative;
}
@media (min-width: 992px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title {
    padding-top: 10px;
  }
}
@media (min-width: 1240px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title {
    padding-top: 16px;
    padding-bottom: 22px;
  }
}
@media (min-width: 1410px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title {
    padding-top: 22px;
  }
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title--border:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--c-global-font);
  opacity: 0.2;
  bottom: 0;
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title .cse-stream-name {
  color: var(--c-global-font);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}
@media (min-width: 736px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title .cse-stream-name {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title .cse-stream-name {
    font-size: 20px;
  }
}
@media (min-width: 1240px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title .cse-stream-name {
    font-size: 22px;
  }
}
@media (min-width: 1410px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title .cse-stream-name {
    font-size: 24px;
  }
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title .cse-stream-person {
  color: var(--c-global-font);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  padding-top: 8px;
}
@media (min-width: 992px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title .cse-stream-person {
    padding-top: 16px;
  }
}
@media (min-width: 1240px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--title .cse-stream-person {
    padding-top: 22px;
    font-size: 14px;
  }
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex: 1;
      flex: 1;
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat .cse-chatroll-frame {
  margin-top: 20px;
  height: 100%;
  max-height: 600px;
  min-height: 300px;
  position: relative;
}
@media (min-width: 992px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat .cse-chatroll-frame {
    min-height: 200px;
    margin-top: 35px;
  }
}
@media (min-width: 1240px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat .cse-chatroll-frame {
    margin-top: 45px;
  }
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat .cse-chatroll-frame iframe {
  width: 100%;
  height: 100%;
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex: 1;
      flex: 1;
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat-tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4px;
}
@media (min-width: 1240px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat-tabs {
    margin-top: 14px;
  }
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat-tabs .cse-stream--chat-tab {
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  margin: 12px 14px 0 0;
  position: relative;
  letter-spacing: 0.75px;
  opacity: 0.5;
}
@media (min-width: 1240px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat-tabs .cse-stream--chat-tab {
    font-size: 14px;
    line-height: 18px;
  }
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat-tabs .cse-stream--chat-tab:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  opacity: 0;
  bottom: -6px;
  background-color: var(--c-global-font);
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat-tabs .cse-stream--chat-tab.cse-active-tab {
  opacity: 1;
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat-tabs .cse-stream--chat-tab.cse-active-tab:before {
  opacity: 1;
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat-tabs .cse-stream--chat-tab:hover {
  opacity: 1;
  cursor: pointer;
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat {
  display: none;
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat .cse-chatroll-frame {
  margin-top: 18px;
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat-tabbed .cse-stream--chat.cse-active-tab {
  display: -ms-flexbox;
  display: flex;
}
.cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat--alt iframe {
  border-radius: 20px;
  margin: 10px 0 40px;
}
@media (min-width: 992px) {
  .cse-section--stream .cse-stream .cse-stream--sidebar .cse-stream--chat--alt iframe {
    min-height: unset !important;
  }
}

.cse-user {
  -ms-flex-pack: end;
      justify-content: flex-end;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  z-index: 3333;
}
.cse-user .cse-user__info {
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  pointer-events: none;
  padding: 0;
}
@media (min-width: 736px) {
  .cse-user .cse-user__info {
    padding: 0 0 0 30px;
  }
}
@media (min-width: 1240px) {
  .cse-user .cse-user__info {
    pointer-events: auto;
  }
}
.cse-user .cse-user__img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.cse-user .cse-user__name {
  color: var(--c-global-menu-font);
  letter-spacing: 0.6px;
  margin: 0 0 0 10px;
  line-height: 17px;
  font-weight: 600;
  font-size: 12px;
  display: none;
}
@media (min-width: 736px) {
  .cse-user .cse-user__name {
    display: block;
  }
}
.cse-user .cse-user__menu {
  display: none;
  box-shadow: 0 25px 30px -15px rgba(0, 0, 0, 0.05);
  background-color: var(--c-global-menu-bg);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  top: calc(100% - 10px);
  padding: 26px 32px;
  position: absolute;
  min-width: 230px;
  left: -150px;
  width: 100%;
}
@media (min-width: 736px) {
  .cse-user .cse-user__menu {
    padding: 16px 30px 18px;
    min-width: 180px;
    left: 0;
  }
}
.cse-user .cse-user__menu .cse-menu__item {
  display: -ms-flexbox;
  display: flex;
  padding: 4px 0;
}
@media (min-width: 1240px) {
  .cse-user .cse-user__menu .cse-menu__item.cse-menu__item--mobile {
    display: none;
  }
}
.cse-user .cse-user__menu .cse-menu__item > a {
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  transition: opacity 0.3s ease-in-out;
}
.cse-user .cse-user__menu .cse-menu__item > a span {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.6px;
  color: var(--c-global-menu-font);
}
@media (min-width: 736px) {
  .cse-user .cse-user__menu .cse-menu__item > a span {
    font-size: 13px;
  }
}
.cse-user .cse-user__menu .cse-menu__item > a .cse-svg-inline {
  width: 12px;
  height: 12px;
  fill: var(--c-global-menu-font);
  margin: 0 0 0 5px;
}
.cse-user .cse-user__menu .cse-menu__item > a:hover {
  opacity: 0.66;
}

/** Import layout */
.cse-page--404 {
  display: -ms-flexbox;
  display: flex;
}
.cse-page--404 .cse-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cse-page--404 .cse-content .cse-title {
  font-size: 100px;
  line-height: 1.1;
  margin-bottom: 30px;
}
@media (min-width: 736px) {
  .cse-page--404 .cse-content .cse-title {
    font-size: 200px;
  }
}
.cse-page--404 .cse-content p {
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
}
@media (min-width: 736px) {
  .cse-page--404 .cse-content p {
    font-size: 30px;
  }
}

.cse-footer {
  background-color: #fff;
  padding: 30px 0;
}
@media (min-width: 736px) {
  .cse-footer {
    padding: 30px 0 45px;
  }
}
.cse-footer .cse-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
@media (min-width: 736px) {
  .cse-footer .cse-content {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.cse-footer .cse-navbar .cse-footer-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  margin: 0 0 5px;
}
@media (min-width: 736px) {
  .cse-footer .cse-navbar .cse-footer-menu {
    -ms-flex-direction: row;
        flex-direction: row;
    margin: 0;
  }
}
.cse-footer .cse-navbar .cse-footer-menu li {
  margin: 0 0 10px 0;
}
@media (min-width: 736px) {
  .cse-footer .cse-navbar .cse-footer-menu li {
    margin: 0 50px 0 0;
  }
}
.cse-footer .cse-navbar .cse-footer-menu li > a {
  text-decoration: none;
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
  color: var(--c-global-font);
}
.cse-footer .cse-navbar .cse-footer-menu li > a:hover {
  color: var(--c-global-font-dark);
}
.cse-footer .cse-lang-copy {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.cse-footer .cse-lang-copy .cse-lang-switcher {
  width: 100%;
  margin: 0 8px 10px;
}
@media (min-width: 736px) {
  .cse-footer .cse-lang-copy .cse-lang-switcher {
    width: auto;
    margin: 0 8px -4px;
  }
}
.cse-footer .cse-lang-copy .cse-lang-switcher .cse-lang-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (min-width: 736px) {
  .cse-footer .cse-lang-copy .cse-lang-switcher .cse-lang-menu {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
.cse-footer .cse-lang-copy .cse-lang-switcher .cse-lang-menu .menu-item {
  padding: 0 6px;
}
.cse-footer .cse-lang-copy .cse-copyrights,
.cse-footer .cse-lang-copy .cse-copyrights > a {
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  color: var(--c-global-font);
  margin: 0;
}
.cse-footer .cse-lang-copy .cse-copyrights > a {
  font-weight: 700;
}
.cse-footer .cse-lang-copy .cse-copyrights > a:hover {
  color: var(--c-global-font);
  opacity: 0.65;
}
.cse-footer-landing {
  height: 111px;
  width: 100%;
}
@media (max-width: 736px) {
  .cse-footer-landing {
    height: auto;
  }
  .cse-footer-landing .cse-navbar {
    padding-top: 10px;
  }
}
.cse-footer-landing--no-padding {
  margin: 0;
  padding: 0;
}
.cse-footer-landing .cse-navbar .cse-footer-menu li > a {
  opacity: 0.8;
  color: var(--c-global-font-dark);
}
.cse-footer-landing .cse-navbar .cse-footer-menu li > a:hover {
  color: var(--c-global-font-dark);
  opacity: 0.65;
}
.cse-footer-landing.has-global-block-bg-color-background-color-light {
  background: #f4f4f8;
}
.cse-footer-landing.has-global-block-bg-color-background-color {
  height: 49px;
  text-align: center;
  color: #ffffff;
}
.cse-footer-landing.cse-content {
  -ms-flex-pack: center;
      justify-content: center;
}

:root {
  --c-global-menu-bg: #fff;
  --c-global-menu-font: #000;
}

.cse-header {
  background-color: var(--c-global-menu-bg);
  position: relative;
  z-index: 1111;
}
.cse-header--sticky {
  position: sticky;
  z-index: 1000;
  top: 0;
}
@media (min-width: 1240px) {
  .cse-header--center .cse-header__navbar {
    -ms-flex-pack: center;
        justify-content: center;
    padding: 0 12px;
  }
}
@media (min-width: 1410px) {
  .cse-header--center .cse-header__navbar {
    padding: 0 22px;
  }
}
.cse-header--shadow {
  box-shadow: 0px 4px 4px -4px rgba(0, 0, 0, 0.2);
}
.cse-header--shadow .cse-header__navbar {
  box-shadow: inset 0px 4px 4px -4px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1240px) {
  .cse-header--shadow .cse-header__navbar {
    box-shadow: unset;
  }
}
@media (min-width: 1240px) {
  .cse-header--shadow .cse-navbar .cse-primary-menu li .sub-menu {
    box-shadow: inset 0px 4px 4px -4px rgba(0, 0, 0, 0.2), 0px 4px 10px -8px rgba(0, 0, 0, 0.2);
    top: 100%;
  }
}
.cse-header--shadow .cse-user__menu,
.cse-header--shadow .cse-lang-switch-desktop .cse-lang-list,
.cse-header--shadow .cse-search-desktop .cse-search__dropdown {
  box-shadow: inset 0px 4px 4px -4px rgba(0, 0, 0, 0.2), 0px 4px 10px -8px rgba(0, 0, 0, 0.2);
}
.cse-header--shadow .cse-user__menu,
.cse-header--shadow .cse-lang-switch-desktop .cse-lang-list {
  top: 100%;
}
.cse-header.js-mobile-active .cse-header__navbar {
  transform: translateX(0);
}
.cse-header .cse-content {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "logo actions";
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -ms-flex-pack: justify;
      justify-content: space-between;
  grid-column-gap: 10px;
  -ms-grid-row-align: center;
      align-items: center;
  min-height: 80px;
}
@media (min-width: 1240px) {
  .cse-header .cse-content {
    grid-template-areas: "logo menu actions";
    -ms-grid-columns: auto 1fr auto;
        grid-template-columns: auto 1fr auto;
  }
}

/**
 * Logo
 */
.cse-header__logo {
  padding: 10px 0;
  grid-area: logo;
  z-index: 1112;
}
.cse-header__logo .cse-logo__img {
  display: -ms-flexbox;
  display: flex;
}
.cse-header__logo .cse-logo__img > img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 60px;
  max-width: 100%;
  height: 100%;
  width: auto;
}

/**
 * Menu
 */
.cse-header__navbar {
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--c-global-menu-bg);
  transition: transform 0.4s ease-in-out;
  transform: translateX(-100%);
  padding: 0 20px 40px;
  position: absolute;
  overflow-y: auto;
  z-index: 1111;
  top: 80px;
  left: 0;
}
@media (min-width: 1240px) {
  .cse-header__navbar {
    width: auto;
    height: auto;
    grid-area: menu;
    background-color: rgba(0, 0, 0, 0);
    transform: translateX(0);
    -ms-flex-pack: start;
        justify-content: flex-start;
    padding: 0 0 0 12px;
    -ms-flex-align: center;
        align-items: center;
    overflow: visible;
    position: static;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    top: unset;
  }
  .cse-header__navbar .cse-navbar {
    height: 100%;
  }
}
@media (min-width: 1410px) {
  .cse-header__navbar {
    padding: 0 0 0 22px;
  }
}
.cse-header__navbar .cse-navbar .cse-primary-menu {
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 20px 0 25px;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1240px) {
  .cse-header__navbar .cse-navbar .cse-primary-menu {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    height: 100%;
    padding: 0;
  }
}
.cse-header__navbar .cse-navbar .cse-primary-menu li {
  margin-right: -6px;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 6px 0;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1240px) {
  .cse-header__navbar .cse-navbar .cse-primary-menu li {
    -ms-flex-pack: center;
        justify-content: center;
    margin-right: unset;
    padding: 0 12px;
    height: 100%;
  }
}
@media (min-width: 1410px) {
  .cse-header__navbar .cse-navbar .cse-primary-menu li {
    padding: 0 16px;
  }
}
.cse-header__navbar .cse-navbar .cse-primary-menu li a {
  -ms-flex: 1;
      flex: 1;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 5px 0 5px 0;
  letter-spacing: 0.6px;
  color: var(--c-global-menu-font);
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 1240px) {
  .cse-header__navbar .cse-navbar .cse-primary-menu li a {
    letter-spacing: 0.6px;
    line-height: 19px;
    font-size: 13px;
    padding: 5px 0;
  }
}
.cse-header__navbar .cse-navbar .cse-primary-menu li .cse-svg-inline {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}
.cse-header__navbar .cse-navbar .cse-primary-menu li .cse-svg-inline path {
  fill: var(--c-global-menu-font);
}
@media (min-width: 1240px) {
  .cse-header__navbar .cse-navbar .cse-primary-menu li .cse-svg-inline {
    display: none;
  }
}
.cse-header__navbar .cse-navbar .cse-primary-menu li:not(.menu-item-has-children) .cse-svg-inline {
  display: none;
}
.cse-header__navbar .cse-navbar .cse-primary-menu li.current-menu-item > a,
.cse-header__navbar .cse-navbar .cse-primary-menu li.current-menu-item > .cse-svg-inline,
.cse-header__navbar .cse-navbar .cse-primary-menu li > a:hover {
  opacity: 0.66;
}
.cse-header__navbar .cse-navbar .cse-primary-menu li.individual-menu-item-color-1 > a {
  color: var(--c-global-color-events-1);
}
.cse-header__navbar .cse-navbar .cse-primary-menu li.individual-menu-item-color-2 > a {
  color: var(--c-global-color-events-2);
}
.cse-header__navbar .cse-navbar .cse-primary-menu .sub-menu {
  padding-top: 5px;
  opacity: 0.66;
  display: none;
  width: 100%;
}
@media (min-width: 1240px) {
  .cse-header__navbar .cse-navbar .cse-primary-menu .sub-menu {
    display: none;
    box-shadow: 0 25px 30px -15px rgba(0, 0, 0, 0.05);
    background-color: var(--c-global-menu-bg);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 16px 30px 18px;
    top: calc(100% - 10px);
    position: absolute;
    min-width: 230px;
    opacity: 1;
    left: 0;
  }
}
.cse-header__navbar .cse-navbar .cse-primary-menu .sub-menu > li {
  margin-right: unset;
  height: unset;
  padding: 0;
}
@media (min-width: 1240px) {
  .cse-header__navbar .cse-navbar .cse-primary-menu .sub-menu > li {
    -ms-flex-pack: unset;
        justify-content: unset;
    -ms-flex-direction: unset;
        flex-direction: unset;
  }
}
.cse-header__navbar .cse-navbar .cse-primary-menu .sub-menu > li > a {
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 1240px) {
  .cse-header__navbar .cse-navbar .cse-primary-menu .sub-menu > li > a {
    text-align: left;
    font-size: 13px;
    line-height: 19px;
  }
}
.cse-header__navbar .cse-navbar .cse-primary-menu .sub-menu > li .cse-svg-inline {
  display: none;
}
.cse-header__navbar .cse-navbar .cse-primary-menu .menu-item.menu-item-is-live > a > .is-live-label {
  background-color: #ce2c2c;
  display: inline-block;
  vertical-align: top;
  border-radius: 10px;
  margin-left: 6px;
  margin-top: 4px;
  line-height: 1;
  padding: 4px;
  font-size: 0;
}
@media (min-width: 1240px) {
  .cse-header__navbar .cse-navbar .cse-primary-menu .menu-item.menu-item-is-live > a {
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex;
  }
  .cse-header__navbar .cse-navbar .cse-primary-menu .menu-item.menu-item-is-live > a > .is-live-label {
    padding: 7px 24px 6px 8px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 2px;
    font-weight: 500;
    margin-top: 0px;
    font-size: 10px;
    color: #fff;
  }
  .cse-header__navbar .cse-navbar .cse-primary-menu .menu-item.menu-item-is-live > a > .is-live-label:before {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    right: 10px;
    bottom: 0;
    top: 0;
    background-color: #fff;
    border-radius: 10px;
    height: 4px;
    width: 4px;
  }
  .cse-header__navbar .cse-navbar .cse-primary-menu .menu-item.menu-item-is-live > a > .is-live-label:after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    right: 7px;
    bottom: 0;
    top: 0;
    border: 1px solid #fff;
    border-radius: 10px;
    height: 10px;
    width: 10px;
  }
}

/**
 * Actions
 */
.cse-header__navbar .cse-navbar-mobile-actions {
  position: relative;
  margin: 0 -20px;
}
.cse-header__navbar .cse-navbar-mobile-actions:before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--c-global-menu-font);
  opacity: 0.15;
  height: 1px;
  right: 0;
  left: 0;
  top: 0;
}
@media (min-width: 1240px) {
  .cse-header__navbar .cse-navbar-mobile-actions {
    display: none;
  }
}

.cse-header__actions {
  grid-area: actions;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.cse-header__unlogged {
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: none;
}
@media (min-width: 736px) {
  .cse-header__unlogged {
    display: -ms-flexbox;
    display: flex;
  }
}
.cse-header__unlogged .cse-btn, .cse-header__unlogged #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-header__unlogged a, .cse-header__unlogged .cse-btn--primary, .cse-header__unlogged .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-header__unlogged .user-registration-Button,
.cse-header__unlogged .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-header__unlogged .user-registration-Button, .cse-header__unlogged .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-header__unlogged .ur-submit-button, .cse-header__unlogged .cse-btn--primary-disabled, .cse-header__unlogged .cse-btn--card-submit, .cse-header__unlogged .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .cse-header__unlogged .gform_button, .cse-header__unlogged .cse-form .gform_button, .cse-form .cse-header__unlogged .gform_button {
  font-weight: 500;
}

@media (min-width: 736px) {
  .cse-header__unlogged-register {
    margin-left: 15px;
  }
}
@media (min-width: 1240px) {
  .cse-header__unlogged-register {
    margin-left: 20px;
  }
}

.cse-header__unlogged-mobile {
  padding-top: 20px;
  margin: 0 -5px;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 736px) {
  .cse-header__unlogged-mobile {
    display: none;
  }
}
.cse-header__unlogged-mobile .cse-btn, .cse-header__unlogged-mobile #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-header__unlogged-mobile a, .cse-header__unlogged-mobile .cse-btn--primary, .cse-header__unlogged-mobile .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-header__unlogged-mobile .user-registration-Button,
.cse-header__unlogged-mobile .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-header__unlogged-mobile .user-registration-Button, .cse-header__unlogged-mobile .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-header__unlogged-mobile .ur-submit-button, .cse-header__unlogged-mobile .cse-btn--primary-disabled, .cse-header__unlogged-mobile .cse-btn--card-submit, .cse-header__unlogged-mobile .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .cse-header__unlogged-mobile .gform_button, .cse-header__unlogged-mobile .cse-form .gform_button, .cse-form .cse-header__unlogged-mobile .gform_button {
  margin-bottom: 10px;
  margin-right: 15px;
  padding: 6px 20px;
  font-weight: 500;
  font-size: 13px;
}

.cse-header__navbar .cse-navbar .cse-header__unlogged-mobile + .cse-primary-menu {
  padding: 0 0 25px;
}
@media (min-width: 736px) {
  .cse-header__navbar .cse-navbar .cse-header__unlogged-mobile + .cse-primary-menu {
    padding: 15px 0 25px;
  }
}
@media (min-width: 1240px) {
  .cse-header__navbar .cse-navbar .cse-header__unlogged-mobile + .cse-primary-menu {
    padding: 0;
  }
}

/**
 * Hamburger
 */
.cse-header__hamburger {
  -ms-flex-pack: end;
      justify-content: flex-end;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  z-index: 1112;
}
@media (min-width: 1240px) {
  .cse-header__hamburger {
    display: none;
  }
}
.cse-header__hamburger .cse-hamburger {
  -ms-flex-align: center;
      align-items: center;
  padding-right: 0;
  display: -ms-flexbox;
  display: flex;
}

.cse-page {
  color: var(--c-global-font);
  padding: 30px 0;
}
@media (min-width: 576px) {
  .cse-page {
    padding: 60px 0;
  }
}
.cse-page--nomargin {
  padding: 0;
}
@media (min-width: 576px) {
  .cse-page--nomargin {
    padding: 0;
  }
}
.cse-page--default .cse-gutenberg h1, .cse-page--default .cse-gutenberg h2, .cse-page--default .cse-gutenberg h3, .cse-page--default .cse-gutenberg h4, .cse-page--default .cse-gutenberg h5, .cse-page--default .cse-gutenberg h6, .cse-page--default .cse-gutenberg p, .cse-page--default .cse-gutenberg ul, .cse-page--default .cse-gutenberg ol, .cse-page--default .cse-gutenberg blockquote {
  margin-bottom: 20px;
  margin-top: 20px;
}
.cse-page--default .cse-gutenberg h1, .cse-page--default .cse-gutenberg h2, .cse-page--default .cse-gutenberg h3 {
  line-height: 1.4;
}
.cse-page--default .cse-gutenberg h4, .cse-page--default .cse-gutenberg h5, .cse-page--default .cse-gutenberg h6 {
  line-height: 1.5;
}
.cse-page--default .cse-gutenberg p, .cse-page--default .cse-gutenberg ul, .cse-page--default .cse-gutenberg ol, .cse-page--default .cse-gutenberg blockquote {
  line-height: 1.6;
}
.cse-page--default .cse-gutenberg span, .cse-page--default .cse-gutenberg a {
  line-height: inherit;
}
.cse-page--default .cse-gutenberg p > a, .cse-page--default .cse-gutenberg li > a, .cse-page--default .cse-gutenberg strong > a, .cse-page--default .cse-gutenberg span > a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 1px;
}
.cse-page--default .cse-gutenberg .wp-block-button__link {
  font-weight: 500;
  font-size: 14px;
}

.cse-page--exhibitor .cse-container--sm {
  max-width: 820px;
}
.cse-page--exhibitor .cse-exhibitor-navigation .cse-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  max-width: 1190px;
  padding: 15px;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-exhibitor-navigation .cse-content {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
  }
}
.cse-page--exhibitor .cse-exhibitor-navigation .cse-exhibitor {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 30px 15px 5px;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-exhibitor-navigation .cse-exhibitor {
    padding: 5px 15px;
  }
}
@media (min-width: 1240px) {
  .cse-page--exhibitor .cse-exhibitor-navigation .cse-exhibitor {
    padding: 5px;
  }
}
.cse-page--exhibitor .cse-exhibitor-navigation .cse-exhibitor .cse-exhibitor__logo {
  width: 71px;
  height: 71px;
  min-width: 71px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  overflow: hidden;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
  padding: 5px;
}
.cse-page--exhibitor .cse-exhibitor-navigation .cse-exhibitor > span {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.6px;
  padding: 5px 25px;
}
.cse-page--exhibitor .cse-exhibitor-navigation .cse-btn--arrow {
  display: none;
  margin: 0 15px 0 0;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-exhibitor-navigation .cse-btn--arrow {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (min-width: 1240px) {
  .cse-page--exhibitor .cse-exhibitor-navigation .cse-btn--arrow {
    margin: 0;
  }
}
.cse-page--exhibitor > .cse-wrapper {
  max-width: 1190px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding-left: 0;
  padding-right: 0;
}
.cse-page--exhibitor > .cse-wrapper .cse-title {
  text-align: center;
  color: #000;
}
@media (min-width: 736px) {
  .cse-page--exhibitor > .cse-wrapper .cse-title {
    text-align: left;
  }
}
.cse-page--exhibitor .cse-section {
  padding: 35px 20px;
}
.cse-page--exhibitor .cse-section--page-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 0;
}
@media (min-width: 1240px) {
  .cse-page--exhibitor .cse-section--page-header {
    min-height: 400px;
  }
}
.cse-page--exhibitor .cse-section--page-header .cse-background,
.cse-page--exhibitor .cse-section--page-header .cse-content {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.cse-page--exhibitor .cse-section--page-header .cse-background {
  max-width: 100%;
  max-height: 350px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--page-header .cse-background {
    max-height: 550px;
  }
}
@media (min-width: 992px) {
  .cse-page--exhibitor .cse-section--page-header .cse-background {
    max-height: 750px;
  }
}
.cse-page--exhibitor .cse-section--page-header .cse-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  padding: 50px 15px;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--page-header .cse-content {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cse-page--exhibitor .cse-section--page-header .cse-content {
    -ms-flex-align: start;
        -ms-grid-row-align: flex-start;
        align-items: flex-start;
    padding: 90px 0;
  }
}
.cse-page--exhibitor .cse-section--page-header .cse-title {
  max-width: 455px;
  -ms-flex-order: 2;
      order: 2;
  text-align: center;
  margin: 20px 0 0;
}
.cse-page--exhibitor .cse-section--page-header .cse-title.cse-title--no-logo {
  margin: 0;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--page-header .cse-title {
    -ms-flex-order: 1;
        order: 1;
    text-align: left;
  }
  .cse-page--exhibitor .cse-section--page-header .cse-title, .cse-page--exhibitor .cse-section--page-header .cse-title.cse-title--no-logo {
    margin: auto 15px 0 0;
  }
}
.cse-page--exhibitor .cse-section--page-header .cse-exhibitor__logo {
  -ms-flex-order: 1;
      order: 1;
  max-width: 190px;
  width: 100%;
  margin: 0;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--page-header .cse-exhibitor__logo {
    -ms-flex-order: 2;
        order: 2;
  }
}
.cse-page--exhibitor .cse-section--socials {
  overflow: hidden;
  padding: 15px 0;
}
.cse-page--exhibitor .cse-section--socials .cse-socials {
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 40px);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 0 -20px;
}
@media (min-width: 992px) {
  .cse-page--exhibitor .cse-section--socials .cse-socials {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
.cse-page--exhibitor .cse-section--socials .cse-socials .cse-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 10px;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--socials .cse-socials .cse-social {
    padding: 10px 20px;
  }
}
.cse-page--exhibitor .cse-section--socials .cse-socials .cse-social .cse-social__img {
  width: 20px;
  height: 20px;
  fill: #000;
  margin-right: 5px;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--socials .cse-socials .cse-social .cse-social__img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
}
.cse-page--exhibitor .cse-section--socials .cse-socials .cse-social > span {
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.35px;
  font-weight: 600;
  color: #000;
}
.cse-page--exhibitor .cse-section--socials .cse-socials .cse-social:hover {
  opacity: 0.8;
}
.cse-page--exhibitor .cse-section--content {
  padding: 0 15px;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--content {
    padding: 0 15px;
  }
}
.cse-page--exhibitor .cse-section--content .cse-gutenberg h2 {
  color: #000;
  text-align: center;
  padding: 0 0 20px;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--content .cse-gutenberg h2 {
    text-align: left;
  }
}
.cse-page--exhibitor .cse-section--content .cse-gutenberg p {
  color: #000;
}
.cse-page--exhibitor .cse-section--content .cse-gutenberg .wp-block-columns .wp-block-column {
  text-align: center;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--content .cse-gutenberg .wp-block-columns .wp-block-column {
    text-align: left;
  }
}
.cse-page--exhibitor .cse-section--card {
  background-color: #000;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-title {
  color: #fff;
  padding-bottom: 5px;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-subtile {
  display: block;
  color: #fff;
  text-align: center;
  padding-bottom: 10px;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--card .cse-content .cse-subtile {
    text-align: left;
  }
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form {
  display: block;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_heading,
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_footer,
.cse-page--exhibitor .cse-section--card .cse-content .cse-form img.gform_ajax_spinner {
  display: none !important;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields > li {
  width: 100%;
  margin: 0 !important;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields > li div input {
  background-color: #4e4e4e;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields > li div input, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields > li div input::-moz-placeholder {
  color: #9e9e9e;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields > li div input, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields > li div input:-ms-input-placeholder {
  color: #9e9e9e;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields > li div input, .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields > li div input::placeholder {
  color: #9e9e9e;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields > li .validation_message {
  display: none;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields li.gfield.gfield_error,
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  max-width: 100% !important;
  background-color: transparent;
  border: none;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .ginput_container_fileupload {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .ginput_container_fileupload .gform_fileupload_rules {
  display: none;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .ginput_container_fileupload .gform_fileupload_multifile {
  width: 100%;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area {
  width: 100%;
  padding: 0;
  border: none;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .ginput_container_fileupload .gform_fileupload_multifile .gform_drop_instructions {
  display: none;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .ginput_container_fileupload .gform_fileupload_multifile .gform_button_select_files {
  background-color: rgba(0, 0, 0, 0);
  border: 1px dashed #9e9e9e;
  border-radius: 10px;
  text-align: left;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .ginput_container_fileupload .gform_fileupload_multifile .gform_button_select_files[disabled] {
  opacity: 0.5;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields div[id*=gform_preview] {
  overflow: visible;
  display: block;
  color: #fff;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields div[id*=gform_preview] {
    height: 0;
  }
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields div[id*=gform_preview] {
    max-width: 240px;
  }
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields div[id*=gform_preview] .ginput_preview {
  font-size: 11px;
  line-height: 14px;
  padding: 2px 0;
  width: 100%;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields div[id*=gform_preview] .ginput_preview:first-of-type {
  padding: 8px 0 2px;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields div[id*=gform_preview] .ginput_preview strong {
  font-weight: 400;
  padding: 0 0 0 4px;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .cse-consent {
  grid-column: 1/-1;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .cse-consent input {
  width: auto;
  margin: 2px 10px 0 0;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .cse-consent label {
  display: block;
  -ms-flex-order: 3;
      order: 3;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0;
  color: #9e9e9e;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_body .gform_fields .cse-consent .gfield_required {
  -ms-flex-order: 2;
      order: 2;
  margin: 0 5px;
}
.cse-page--exhibitor .cse-section--card .cse-content .cse-form .gform_button {
  width: 100% !important;
  background-image: none;
  border-radius: 10px;
  margin: 0 !important;
}
.cse-page--exhibitor .cse-section--gallery .cse-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  margin: 30px 0;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--gallery .cse-gallery {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--gallery .cse-gallery {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}
.cse-page--exhibitor .cse-section--gallery .cse-gallery .cse-gallery__el-a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cse-page--exhibitor .cse-section--gallery .cse-gallery .cse-gallery__el-a > img {
  max-width: 180px;
  max-height: 110px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin: 0 auto;
}
.cse-page--exhibitor .cse-section--gallery .cse-gallery .cse-gallery__desc {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  text-align: center;
  color: #000;
  margin: 10px 0 0;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--gallery .cse-gallery .cse-gallery__desc {
    font-size: 16px;
    line-height: 26px;
  }
}
.cse-page--exhibitor .cse-section--consultant {
  background-color: #ededf5;
}
.cse-page--exhibitor .cse-section--consultant .cse-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--consultant .cse-content {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: start;
        -ms-grid-row-align: flex-start;
        align-items: flex-start;
  }
}
.cse-page--exhibitor .cse-section--consultant .cse-content .cse-consultant {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  grid-column-gap: 15px;
  grid-row-gap: 30px;
  margin: 0 0 30px;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--consultant .cse-content .cse-consultant {
    margin-right: 20px;
  }
}
.cse-page--exhibitor .cse-section--consultant .cse-content .cse-consultant .cse-title {
  grid-column: 1/-1;
  -ms-grid-row: 1;
      grid-row: 1;
  width: 100%;
  color: #000;
  margin: 0;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--consultant .cse-content .cse-consultant .cse-title {
    width: auto;
    max-width: 205px;
  }
}
.cse-page--exhibitor .cse-section--consultant .cse-content .cse-consultant .cse-image {
  width: 51px;
  height: 51px;
  -ms-grid-column-span: 1;
  -ms-grid-column: 1;
      grid-column: 1/span 1;
  -ms-grid-row: 2;
      grid-row: 2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.cse-page--exhibitor .cse-section--consultant .cse-content .cse-consultant .cse-info {
  -ms-grid-column-span: 1;
  -ms-grid-column: 2;
      grid-column: 2/span 1;
  -ms-grid-row: 2;
      grid-row: 2;
}
.cse-page--exhibitor .cse-section--consultant .cse-content .cse-consultant .cse-info .cse-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #000;
}
.cse-page--exhibitor .cse-section--consultant .cse-content .cse-consultant .cse-info .cse-desc {
  max-width: 300px;
  font-size: 13px;
  line-height: 19px;
  color: #000;
  margin: 0;
}
.cse-page--exhibitor .cse-section--consultant .cse-content .cse-chat {
  z-index: 1;
}
.cse-page--exhibitor .cse-section--consultant .cse-content .cse-chat > div {
  border-radius: 10px;
  overflow: hidden;
}
.cse-page--exhibitor .cse-section--cta {
  background-color: #ededf5;
}
.cse-page--exhibitor .cse-section--cta .cse-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--cta .cse-content {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
  }
}
.cse-page--exhibitor .cse-section--cta .cse-content .cse-title {
  text-align: center;
  color: #000;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--cta .cse-content .cse-title {
    max-width: 400px;
    text-align: left;
    margin-right: 15px;
  }
}
.cse-page--exhibitor .cse-section--cta .cse-content .cse-btn--primary, .cse-page--exhibitor .cse-section--cta .cse-content .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-page--exhibitor .cse-section--cta .cse-content .user-registration-Button,
.cse-page--exhibitor .cse-section--cta .cse-content .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-page--exhibitor .cse-section--cta .cse-content .user-registration-Button, .cse-page--exhibitor .cse-section--cta .cse-content .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-page--exhibitor .cse-section--cta .cse-content .ur-submit-button, .cse-page--exhibitor .cse-section--cta .cse-content .cse-btn--card-submit, .cse-page--exhibitor .cse-section--cta .cse-content .cse-form .gform_button, .cse-form .cse-page--exhibitor .cse-section--cta .cse-content .gform_button {
  margin: 20px 0 0;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--cta .cse-content .cse-btn--primary, .cse-page--exhibitor .cse-section--cta .cse-content .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-page--exhibitor .cse-section--cta .cse-content .user-registration-Button,
.cse-page--exhibitor .cse-section--cta .cse-content .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-page--exhibitor .cse-section--cta .cse-content .user-registration-Button, .cse-page--exhibitor .cse-section--cta .cse-content .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-page--exhibitor .cse-section--cta .cse-content .ur-submit-button, .cse-page--exhibitor .cse-section--cta .cse-content .cse-btn--card-submit, .cse-page--exhibitor .cse-section--cta .cse-content .cse-form .gform_button, .cse-form .cse-page--exhibitor .cse-section--cta .cse-content .gform_button {
    margin: 0;
  }
}
.cse-page--exhibitor .cse-section--downloads {
  padding: 75px 0 35px;
}
.cse-page--exhibitor .cse-section--downloads .cse-downloads {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin: 25px 0;
}
.cse-page--exhibitor .cse-section--downloads .cse-downloads .cse-files {
  padding: 35px 0;
}
.cse-page--exhibitor .cse-section--downloads .cse-downloads .cse-file {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 10px 0;
}
.cse-page--exhibitor .cse-section--downloads .cse-downloads .cse-file span {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 20px;
  color: #000;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--downloads .cse-downloads .cse-file span {
    font-size: 16px;
    line-height: 23px;
  }
}
.cse-page--exhibitor .cse-section--downloads .cse-downloads .cse-file .cse-svg-inline {
  width: 13px;
  height: 13px;
  min-width: 13px;
  min-height: 13px;
  fill: #000;
  transform: rotate(270deg);
  margin: 0 10px 0 0;
}
.cse-page--exhibitor .cse-section--downloads .cse-downloads .cse-file:hover span {
  color: var(--c-global-btn-bg);
}
.cse-page--exhibitor .cse-section--downloads .cse-downloads .cse-file:hover .cse-svg-inline {
  fill: var(--c-global-btn-bg);
}
.cse-page--exhibitor .cse-section--products {
  padding: 35px 0 60px;
}
@media (min-width: 992px) {
  .cse-page--exhibitor .cse-section--products {
    padding: 35px 0 100px;
  }
}
.cse-page--exhibitor .cse-section--products .cse-products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  padding: 20px 0;
  margin: 0 5px;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--products .cse-products {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .cse-page--exhibitor .cse-section--products .cse-products {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}
.cse-page--exhibitor .cse-section--products .cse-products .cse-product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  width: 130px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cse-page--exhibitor .cse-section--products .cse-products .cse-product {
    width: 180px;
  }
}
.cse-page--exhibitor .cse-section--products .cse-products .cse-product .cse-product__img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.cse-page--exhibitor .cse-section--products .cse-products .cse-product > span {
  display: block;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
  color: #000;
  margin: 20px 0 0;
}
.cse-page--exhibitor .cse-section--products .cse-text > p {
  line-height: 20px;
  padding: 20px 0 0;
  color: #000;
  margin: 0;
}
.cse-page--exhibitor .cse-section--footer {
  background-color: #232323;
  padding: 45px 0 25px;
}
@media (max-width: 992px) {
  .cse-page--exhibitor .cse-section--footer {
    padding: 45px 25px;
  }
}
.cse-page--exhibitor .cse-section--footer .cse-content {
  text-align: center;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--footer .cse-content {
    text-align: left;
  }
}
.cse-page--exhibitor .cse-section--footer .cse-content .cse-title, .cse-page--exhibitor .cse-section--footer .cse-content p {
  color: #fff;
  letter-spacing: 0.4px;
  line-height: 20px;
}
@media (min-width: 736px) {
  .cse-page--exhibitor .cse-section--footer .cse-content .cse-title, .cse-page--exhibitor .cse-section--footer .cse-content p {
    max-width: 500px;
  }
}
.cse-page--exhibitor .cse-section--footer .cse-content .cse-title {
  display: block;
  font-weight: 600;
  margin: 0 0 20px;
}
.cse-page--exhibitor .cse-section--footer .cse-content p {
  font-size: 13px;
}
.cse-page--exhibitor .cse-exhibitor-bottom-navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 50px 0 30px;
}

.cse-page--stage {
  padding: 0;
}
@media (min-width: 576px) {
  .cse-page--stage {
    padding: 0;
  }
}
.cse-page--stage .cse-section--stream {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.cse-page--stage .cse-section--stream.cse-global-bg {
  background-attachment: unset;
}
.cse-page--stage .cse-section--logobar {
  padding: 25px 10px;
}
.cse-page--stage .cse-section--logobar .cse-logbar > img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.cse-section--stage-agenda {
  padding: 50px 0;
}
@media (min-width: 736px) {
  .cse-section--stage-agenda {
    padding: 50px 0 75px;
  }
}

/**
 * General
 */
.cse-page--registration.cse-page--text,
.cse-page--login.cse-page--text,
.cse-page--account.cse-page--text {
  padding: 20px 0;
}
@media (min-width: 736px) {
  .cse-page--registration.cse-page--text,
.cse-page--login.cse-page--text,
.cse-page--account.cse-page--text {
    padding: 60px 0;
  }
}
.cse-page--registration.cse-page--text .cse-gutenberg h2,
.cse-page--login.cse-page--text .cse-gutenberg h2,
.cse-page--account.cse-page--text .cse-gutenberg h2 {
  text-align: center;
  padding: 10px;
  font-size: 24px;
}
@media (min-width: 576px) {
  .cse-page--registration.cse-page--text .cse-gutenberg h2,
.cse-page--login.cse-page--text .cse-gutenberg h2,
.cse-page--account.cse-page--text .cse-gutenberg h2 {
    font-size: 28px;
  }
}
.cse-page--registration.cse-page--text .cse-gutenberg p,
.cse-page--login.cse-page--text .cse-gutenberg p,
.cse-page--account.cse-page--text .cse-gutenberg p {
  text-align: center;
  padding-right: 10px;
  padding-left: 10px;
  line-height: 1.6;
}

.cse-page--registration.cse-page--text .cse-gutenberg,
.cse-page--login.cse-page--text .cse-gutenberg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 10px;
}

.cse-page--registration.cse-page--text h1, .cse-page--registration.cse-page--text h2, .cse-page--registration.cse-page--text p, .cse-page--registration.cse-page--text span,
.cse-page--login.cse-page--text h1,
.cse-page--login.cse-page--text h2,
.cse-page--login.cse-page--text p,
.cse-page--login.cse-page--text span {
  color: #000;
}
.cse-page--registration.cse-page--text .cse-gutenberg,
.cse-page--login.cse-page--text .cse-gutenberg {
  padding: 15px 5px;
}
@media (min-width: 576px) {
  .cse-page--registration.cse-page--text .cse-gutenberg,
.cse-page--login.cse-page--text .cse-gutenberg {
    padding: 25px 50px;
  }
}
@media (min-width: 736px) {
  .cse-page--registration.cse-page--text .cse-gutenberg,
.cse-page--login.cse-page--text .cse-gutenberg {
    padding: 50px 125px;
  }
}

/**
 * Form
 */
.ur-frontend-form {
  color: #888;
  padding: 0;
  margin: 0;
  border: 0;
}
.ur-frontend-form h1, .ur-frontend-form h2, .ur-frontend-form h3, .ur-frontend-form h4, .ur-frontend-form h5, .ur-frontend-form h6 {
  color: #000;
}
.ur-frontend-form p, .ur-frontend-form span {
  color: #888;
}
.ur-frontend-form > p {
  text-align: center;
}
.ur-frontend-form .password_preview {
  text-decoration: none !important;
}
.ur-frontend-form .ur-field-item.cse_registration_role,
.ur-frontend-form .ur-field-item[data-field-id=cse_registration_role] {
  display: none;
}
.ur-frontend-form input:not([type=checkbox]):not([type=submit]) {
  outline: none;
  border: 1px solid transparent;
  border-radius: 10px !important;
  background-color: #f5f5f5;
  padding: 6px 20px !important;
  color: #808080 !important;
  font-size: 13px !important;
  line-height: 24px !important;
  letter-spacing: 0.4px !important;
}
.ur-frontend-form input:not([type=checkbox]):not([type=submit])[disabled=disabled] {
  color: #b0b0b0 !important;
}
.ur-frontend-form input:not([type=checkbox]):not([type=submit])::-moz-placeholder {
  font-size: 13px !important;
  line-height: 24px !important;
  letter-spacing: 0.4px !important;
  color: #b0b0b0 !important;
  font-weight: 300;
}
.ur-frontend-form input:not([type=checkbox]):not([type=submit]):-ms-input-placeholder {
  font-size: 13px !important;
  line-height: 24px !important;
  letter-spacing: 0.4px !important;
  color: #b0b0b0 !important;
  font-weight: 300;
}
.ur-frontend-form input:not([type=checkbox]):not([type=submit])::placeholder {
  font-size: 13px !important;
  line-height: 24px !important;
  letter-spacing: 0.4px !important;
  color: #b0b0b0 !important;
  font-weight: 300;
}
.ur-frontend-form select {
  outline: none;
  border: 1px solid transparent;
  border-radius: 10px !important;
  background: #f5f5f5 url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E") no-repeat right 15px top 55% !important;
  padding: 6px 20px !important;
  color: #808080 !important;
  font-size: 13px !important;
  line-height: 24px !important;
  letter-spacing: 0.4px !important;
}
.ur-frontend-form .field-privacy_policy {
  margin-top: 10px;
}
.ur-frontend-form .field-privacy_policy .form-row {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ur-frontend-form .field-privacy_policy .form-row .description {
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0;
  color: #9e9e9e;
  font-weight: 400;
  -ms-flex: 1;
      flex: 1;
  text-align: left;
}
.ur-frontend-form .field-privacy_policy .form-row .checkbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.ur-frontend-form .field-privacy_policy .form-row .checkbox input {
  width: 15px;
  height: 15px;
  margin: 0 5px 0 0;
}
.ur-frontend-form .field-privacy_policy .form-row .checkbox .required {
  position: absolute;
  top: -1px;
  left: -8px;
}
.ur-frontend-form .field-checkbox .form-row {
  position: relative;
}
.ur-frontend-form .field-checkbox .form-row > .ur-label {
  top: 4px;
  margin-bottom: 10px;
  line-height: 10px;
  left: -10px;
  font-size: 10px;
  font-weight: 500 !important;
}
.ur-frontend-form .field-checkbox .form-row > .ur-label .required {
  position: absolute;
  top: -1px;
  left: -8px;
}
.ur-frontend-form .field-checkbox .form-row ul {
  margin: 0;
  padding: 0;
}
.ur-frontend-form .field-checkbox .form-row ul .ur-checkbox-list {
  display: -ms-flexbox;
  display: flex;
}
.ur-frontend-form .field-checkbox .form-row ul .ur-checkbox-list .ur-checkbox-label {
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #9e9e9e;
  font-weight: 400;
  text-align: left;
  margin: 0;
  padding: 2px 0 0;
  -ms-flex: 1;
      flex: 1;
}
.ur-frontend-form .field-html .form-row .ur-label {
  display: none;
}
.ur-frontend-form .field-html .cse-registration-html, .ur-frontend-form .field-html .cse-registration-html p, .ur-frontend-form .field-html .cse-registration-html ol, .ur-frontend-form .field-html .cse-registration-html ul {
  color: #808080;
}
.ur-frontend-form .field-html .cse-registration-html a {
  color: #404040;
  text-decoration: underline;
}
.ur-frontend-form .field-html .cse-registration-html a:hover {
  color: #808080;
}
.ur-frontend-form .field-html .cse-registration-html, .ur-frontend-form .field-html .cse-registration-html p, .ur-frontend-form .field-html .cse-registration-html a, .ur-frontend-form .field-html .cse-registration-html ol, .ur-frontend-form .field-html .cse-registration-html ul {
  font-size: 12px;
  line-height: 20px;
  padding: 0;
  text-align: left;
}
.ur-frontend-form .field-html .cse-registration-html-divider {
  border-top: 1px solid #f0f0f0;
  margin: 25px 15px 0;
}
.ur-frontend-form .field-html .cse-registration-html-divider p {
  margin: 15px -15px;
  padding: 0;
}
.ur-frontend-form .field-html .cse-registration-html-sm, .ur-frontend-form .field-html .cse-registration-html-sm p, .ur-frontend-form .field-html .cse-registration-html-sm a, .ur-frontend-form .field-html .cse-registration-html-sm ol, .ur-frontend-form .field-html .cse-registration-html-sm ul {
  font-size: 10px;
  line-height: 1.3;
}
.ur-frontend-form .ur-button-container {
  margin: 20px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.ur-frontend-form .ur-button-container .ur-submit-button {
  text-transform: none;
  margin-left: auto;
  margin-right: auto;
}
.ur-frontend-form .ur-form-row .ur-form-grid label.ur-label {
  font-size: 10px;
  font-weight: 400;
  color: #141414;
  line-height: 15px;
  letter-spacing: 0.5px;
}
.ur-frontend-form .ur-form-row .ur-form-grid .cse-code-label {
  text-align: center;
  margin: -5px 0 0 0;
  font-size: 12px;
}
.ur-frontend-form .ur-form-row .ur-form-grid .user-registration-error {
  font-size: 11px;
  padding: 6px 8px;
}
.ur-frontend-form .ur-form-row .ur-form-grid .user-registration-error:before {
  font-size: calc(100% + 6px);
  margin-right: 4px;
}
.ur-frontend-form #ur-submit-message-node.user-registration-error {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 11px;
  padding: 8px 10px;
}
.ur-frontend-form #ur-submit-message-node.user-registration-error ul li {
  padding-bottom: 2px;
}

/**
 * Alerts
 */
.user-registration-error a,
.user-registration-info a,
.user-registration-message a {
  text-decoration: underline;
}
.user-registration-error a:hover,
.user-registration-info a:hover,
.user-registration-message a:hover {
  text-decoration: none;
}
.user-registration-error ul,
.user-registration-info ul,
.user-registration-message ul {
  color: inherit;
  font-size: inherit;
}

ul.user-registration-error,
div.user-registration-info,
div.user-registration-message {
  position: relative;
  padding: 16px 10px 12px 44px;
  min-height: 54px;
  font-size: 12px;
}
ul.user-registration-error:before,
div.user-registration-info:before,
div.user-registration-message:before {
  position: absolute;
  left: 12px;
  top: 10px;
}
ul.user-registration-error a,
div.user-registration-info a,
div.user-registration-message a {
  color: inherit !important;
  font-size: inherit !important;
}
ul.user-registration-error li,
div.user-registration-info li,
div.user-registration-message li {
  display: inline-block;
  font-size: 12px;
}
ul.user-registration-error li a,
div.user-registration-info li a,
div.user-registration-message li a {
  color: inherit !important;
  font-size: inherit !important;
}

.user-registration-form-row label.user-registration-error {
  width: 100% !important;
}

/**
 * Login Form
 */
.cse-page--login h1, .cse-page--login h2, .cse-page--login p, .cse-page--login span,
.cse-page--account h1,
.cse-page--account h2,
.cse-page--account p,
.cse-page--account span {
  color: #000;
}
.cse-page--login #user-registration > .user-registration-error,
.cse-page--account #user-registration > .user-registration-error {
  margin-bottom: inherit;
}
.cse-page--login #user-registration > .user-registration-success,
.cse-page--account #user-registration > .user-registration-success {
  margin-bottom: inherit;
}
.cse-page--login #user-registration > .user-registration-info,
.cse-page--account #user-registration > .user-registration-info {
  margin-bottom: inherit;
}
.cse-page--login #user-registration,
.cse-page--account #user-registration {
  margin: 25px 0;
  box-shadow: none;
}
.cse-page--login #user-registration .ur-frontend-form.login,
.cse-page--account #user-registration .ur-frontend-form.login {
  padding: 0;
}
.cse-page--login #user-registration .ur-frontend-form.login .user-registration-form-row,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 15px;
}
.cse-page--login #user-registration .ur-frontend-form.login .user-registration-form-row label,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-form-row label {
  width: 80px;
  text-align: left;
  margin: 5px 0 0 0;
}
.cse-page--login #user-registration .ur-frontend-form.login .user-registration-form-row label .required,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-form-row label .required {
  opacity: 0;
}
.cse-page--login #user-registration .ur-frontend-form.login .user-registration-form-row .input-wrapper,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-form-row .input-wrapper {
  -ms-flex: 1;
      flex: 1;
}
.cse-page--login #user-registration .ur-frontend-form.login .user-registration-form-row .user-registration-Input--text,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-form-row .user-registration-Input--text {
  margin-bottom: 0;
}
.cse-page--login #user-registration .ur-frontend-form.login .user-registration-form-row .user-registration-Input--text,
.cse-page--login #user-registration .ur-frontend-form.login .user-registration-form-row .password-input-group,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-form-row .user-registration-Input--text,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-form-row .password-input-group {
  min-width: 0;
  -ms-flex: 1;
      flex: 1;
  width: 100%;
}
.cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button {
  padding: 6px 20px !important;
  text-transform: none;
  margin-left: auto;
  margin-right: auto;
}
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .hide_show_password + .form-row .user-registration-form__label-for-checkbox,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .hide_show_password + .form-row .user-registration-form__label-for-checkbox {
  text-align: left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  margin: 0;
  height: 42px;
}
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .hide_show_password + .form-row .user-registration-form__label-for-checkbox span,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .hide_show_password + .form-row .user-registration-form__label-for-checkbox span {
  font-size: 12px;
  display: block;
  margin-top: 2px;
}
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-ResetPassword,
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-LostPassword,
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-register,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-ResetPassword,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-LostPassword,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-register {
  margin: 5px;
  text-align: center;
}
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-ResetPassword a,
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-LostPassword a,
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-register a,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-ResetPassword a,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-LostPassword a,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-register a {
  font-size: 12px;
  text-decoration: underline;
}
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-ResetPassword a:hover,
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-LostPassword a:hover,
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-register a:hover,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-ResetPassword a:hover,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-LostPassword a:hover,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-register a:hover {
  text-decoration: none;
}
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-ResetPassword,
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-LostPassword,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-ResetPassword,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-LostPassword {
  padding-top: 15px;
  margin-top: 30px;
  border-top: 1px solid #efefef;
}
.cse-page--login #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-register,
.cse-page--account #user-registration .ur-frontend-form.login .ur-form-grid .user-registration-register {
  font-weight: 700;
}

/**
 * Delete User Form
 */
.cse-page--delete-user #user-registration {
  margin: 0 0;
}

/**
 * Special registration
 */
.cse-page--registration .oees-registration {
  max-width: 1075px;
}
.cse-page--registration .oees-registration .ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-text, .cse-page--registration .oees-registration .ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-user_email, .cse-page--registration .oees-registration .ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-user_pass, .cse-page--registration .oees-registration .ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-first_name, .cse-page--registration .oees-registration .ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-last_name {
  margin-bottom: 16px;
}
.cse-page--registration .oees-registration .cse-gutenberg {
  padding: 0 !important;
  background: #FFF;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-header {
  background: #000;
  border-radius: 10px 10px 0 0;
  padding: 12px 15px;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 479px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-header {
    padding: 12px 25px;
  }
}
@media (min-width: 576px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-header {
    padding: 12px 75px;
  }
}
@media (min-width: 769px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-header {
    padding: 12px 100px;
  }
}
@media (min-width: 992px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-header {
    padding: 12px 125px;
  }
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-header .oees-free-img img {
  height: 50px;
  width: auto;
}
@media (min-width: 479px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-header .oees-free-img img {
    height: 70px;
  }
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-header .oees-free-title {
  -ms-flex: 1;
      flex: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding-top: 4px;
  padding-left: 14px;
}
@media (min-width: 479px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-header .oees-free-title {
    font-size: 22px;
    line-height: 30px;
    padding-top: 10px;
    padding-left: 28px;
  }
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-header .oees-free-title p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
  margin: 0;
  padding: 0;
  letter-spacing: 0.55px;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content {
  padding: 20px 15px;
}
@media (min-width: 479px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-content {
    padding: 25px;
  }
}
@media (min-width: 576px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-content {
    padding: 30px 75px;
  }
}
@media (min-width: 769px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-content {
    padding: 35px 100px;
  }
}
@media (min-width: 992px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-content {
    padding: 35px 125px;
  }
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .oees-form-info {
  color: #616161;
  font-size: 13px;
  line-height: 19px;
  display: block;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .oees-form-info {
    font-size: 15px;
    line-height: 27px;
    padding-bottom: 15px;
  }
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .oees-form-label {
  display: block;
  padding-bottom: 10px;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form {
  margin: 0 -6px;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-grid.ur-grid-1 {
  margin-bottom: 0;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .oees-long-input {
  padding: 4px 0 10px;
  margin: 0;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .oees-long-input:first-child {
  padding: 8px 0 6px;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .field-radio {
  margin-bottom: 0;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .field-radio .form-row .ur-label {
  margin-bottom: 5px;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .field-radio .form-row ul {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
  color: #141414;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .field-radio .form-row ul li {
  padding-right: 50px;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .field-radio .form-row ul li label {
  display: inline-block;
  font-size: 13px;
  margin-bottom: 4px;
  margin-top: 8px;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .field-html p.form-row {
  margin: 0;
  padding: 0;
  text-align: inherit;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .field-html p.form-row span {
  font-size: 13px;
  font-weight: 400;
  color: #141414;
  line-height: 20px;
  letter-spacing: 0.5px;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .field-html p.form-row span .oees-annotation {
  color: #B2B2B2;
  font-size: 11px;
  padding: 8px 0 2px;
  line-height: 18px;
  display: inline-block;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .field-html p.form-row span strong {
  font-weight: 600;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .oees-titled-checkbox {
  margin-top: -8px;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .oees-titled-checkbox .ur-label {
  color: #737373;
  font-size: 11px;
  font-weight: 500 !important;
  line-height: 18px;
  display: block;
  position: relative;
  margin-left: 32px;
  margin-bottom: 8px;
}
@media (min-width: 576px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .oees-titled-checkbox .ur-label {
    margin-left: 40px;
  }
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .oees-titled-checkbox .ur-checkbox-label {
  font-size: 10px;
  line-height: 16px;
  position: relative;
  margin-left: 22px;
}
@media (min-width: 576px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .oees-titled-checkbox .ur-checkbox-label {
    margin-left: 30px;
  }
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .user-registration.ur-frontend-form .ur-form-row .oees-titled-checkbox .input-checkbox {
  position: absolute;
  top: 5px;
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .ur-button-container {
  margin: 30px 0 20px;
}
@media (min-width: 576px) {
  .cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .ur-button-container {
    margin: 40px 0 25px;
  }
}
.cse-page--registration .oees-registration .cse-gutenberg .oees-free-content .ur-button-container .ur-submit-button {
  padding: 8px 48px;
}

/**
 * Account
 */
body:not(.logged-in) .cse-page--account #user-registration {
  padding: 15px 5px;
  border-radius: 10px;
}
@media (min-width: 576px) {
  body:not(.logged-in) .cse-page--account #user-registration {
    padding: 25px 50px;
  }
}
@media (min-width: 736px) {
  body:not(.logged-in) .cse-page--account #user-registration {
    padding: 50px 125px;
  }
}

.cse-page--account.cse-page--text .cse-gutenberg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 10px;
  padding: 0;
}
.cse-page--account.cse-page--text .cse-gutenberg #user-registration.horizontal {
  box-shadow: none;
  margin: 0;
  border-radius: 10px;
}

#user-registration.horizontal > .user-registration-message, #user-registration.horizontal > .user-registration-error, #user-registration.horizontal > .user-registration-info {
  border-radius: 10px 10px 0 0;
}
#user-registration.horizontal .user-registration-MyAccount-content h2 {
  display: none;
}
#user-registration.horizontal .user-registration-MyAccount-content p a {
  text-decoration: underline;
}
#user-registration.horizontal .user-registration-MyAccount-content p a:hover {
  text-decoration: none;
}
#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header {
  margin-bottom: 15px;
}
#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container img {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}
#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .profile-pic-remove {
  padding: 0;
  background: transparent;
  text-decoration: underline;
}
#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .profile-pic-remove:hover {
  text-decoration: none;
}
#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header h3 {
  color: #000;
  font-weight: 700;
}
#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header + p {
  margin: 0;
}

/**
 * Edit profile
 */
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm {
  padding: 12px 2px;
}
@media (min-width: 576px) {
  .user-registration-edit-profile #user-registration .user-registration-EditProfileForm {
    padding: 12px 30px;
  }
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .user-registration-profile-header .user-registration-img-container .user-registration-tips {
  color: #808080;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .user-registration-profile-header header .button-group {
  margin-bottom: 2px;
  margin-top: 12px;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .user-registration-profile-header header .button-group .profile-pic-remove {
  box-shadow: none;
  font-size: 12px;
  margin: -5px 0 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .user-registration-profile-header header span i {
  font-size: 12px;
  color: #808080;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .user-registration-profile-header header span a {
  font-size: 12px;
  color: #606060;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .ur-form-grid label {
  color: #000;
  margin-bottom: 5px;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .ur-form-grid label .required {
  opacity: 0;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .user-registration-Button {
  margin-bottom: 25px;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .field-checkbox .form-row > .ur-label {
  display: none;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .field-privacy_policy,
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm #user_registration_cse_registration_code_field {
  display: none;
  pointer-events: none;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .field-user_email {
  pointer-events: none;
}
.user-registration-edit-profile #user-registration .user-registration-EditProfileForm .field-user_email #user_registration_user_email {
  color: #cacaca !important;
}

/**
 * Tickets
 */
.cse-ur-qr-codes {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media (min-width: 576px) {
  .cse-ur-qr-codes {
    padding-inline: 30px;
  }
}
.cse-ur-qr-codes span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.4px;
  text-align: left;
  margin-bottom: 20px;
}
.cse-ur-qr-codes img {
  width: 100%;
  max-width: 200px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .cse-ur-qr-codes img {
    width: 30%;
  }
}

/**
 * Lost Password
 */
.user-registration-ur-lost-password .cse-gutenberg h2 {
  display: none;
}
.user-registration-ur-lost-password .cse-gutenberg #user-registration {
  border-radius: 10px;
}
.user-registration-ur-lost-password .cse-gutenberg p.user-registration-form-row {
  display: block !important;
}
.user-registration-ur-lost-password .cse-gutenberg p.user-registration-form-row label[for=password_1],
.user-registration-ur-lost-password .cse-gutenberg p.user-registration-form-row label[for=password_2] {
  width: auto !important;
  margin-bottom: 5px !important;
}

/**
 * Change password
 */
.user-registration-edit-password #user-registration .ur-frontend-form.login .ur-form-grid {
  padding: 12px 2px;
}
@media (min-width: 576px) {
  .user-registration-edit-password #user-registration .ur-frontend-form.login .ur-form-grid {
    padding: 12px 40px;
  }
}
.user-registration-edit-password #user-registration .ur-frontend-form.login .ur-form-grid p {
  padding-left: 0;
  padding-right: 0;
  padding-top: 5px;
}
.user-registration-edit-password #user-registration .ur-frontend-form.login .ur-form-grid p .user-registration-Button {
  margin: 6px 0 12px;
}
.user-registration-edit-password #user-registration .ur-frontend-form.login .ur-form-grid fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.user-registration-edit-password #user-registration .ur-frontend-form.login .ur-form-grid fieldset > legend {
  color: #000;
  font-weight: 700;
}
.user-registration-edit-password #user-registration .ur-frontend-form.login .ur-form-grid fieldset .hide_show_password + .form-row {
  margin: 10px 0;
  height: auto;
}
.user-registration-edit-password #user-registration .ur-frontend-form.login .ur-form-grid fieldset .user-registration-form-row {
  margin: 10px 0;
  padding: 0;
  height: auto;
  display: block;
}
.user-registration-edit-password #user-registration .ur-frontend-form.login .ur-form-grid fieldset .user-registration-form-row label {
  width: auto;
  padding: 6px 0 4px 0;
  font-weight: 700;
}
.user-registration-edit-password #user-registration .ur-frontend-form.login .ur-form-grid fieldset .user-registration-form-row input {
  margin: 0;
}

/**
 * Account Nav
 */
#user-registration.horizontal .user-registration-MyAccount-navigation {
  height: 82px;
  display: none;
}
@media (min-width: 736px) {
  #user-registration.horizontal .user-registration-MyAccount-navigation {
    display: block;
  }
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul {
  padding: 0 30px;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a {
  border-bottom: 2px solid #fff;
  font-family: "Poppins", sans-serif;
  margin-bottom: -1px;
  padding: 28px 16px;
  border-radius: 0;
  border-width: 0;
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a:hover {
  border-bottom: 2px solid var(--c-global-btn-bg);
  color: #000;
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active {
  pointer-events: none;
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a {
  border-bottom: 2px solid var(--c-global-btn-bg);
  background-color: #fff;
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout {
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a {
  transition: background-color 0.1s ease-in-out;
  border-bottom: 1px solid #9e9e9e;
  background-color: #fff;
  border: 1px solid #9e9e9e;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  border-radius: 20px;
  padding: 10px 30px;
  font-weight: 500;
  line-height: 1.4;
  font-size: 13px;
  color: #9e9e9e;
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a:hover {
  color: #fff !important;
  background-color: #9e9e9e;
  border-bottom: none;
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout.is-active {
  pointer-events: auto;
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout.is-active a {
  border: 1px solid #9e9e9e;
  background-color: #fff;
  color: #9e9e9e;
}
#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout.is-active a:hover {
  color: #fff !important;
  background-color: #9e9e9e;
  border-bottom: none;
}

.user-registration .field-privacy_policy .description a {
  font-size: 10px;
  color: #9e9e9e;
  font-weight: 400;
  text-decoration: underline;
}

.cse-page--exhibitors .cse-section--page-header {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: 0 0 50px;
}
@media (min-width: 736px) {
  .cse-page--exhibitors .cse-section--page-header {
    text-align: left;
    margin: 0 0 90px;
  }
}
.cse-page--exhibitors .cse-section--page-header .cse-title {
  color: var(--c-global-font);
}
.cse-page--exhibitors .cse-section--exhibitors .cse-category__name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.cse-page--exhibitors .cse-section--exhibitors .cse-category__name span {
  display: block;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  min-width: 33%;
  max-width: 90%;
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 20px;
  color: var(--c-global-font);
}
.cse-page--exhibitors .cse-section--exhibitors .cse-category__name::before, .cse-page--exhibitors .cse-section--exhibitors .cse-category__name::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  opacity: 0.3;
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  background-color: var(--c-global-font);
}
.cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 15px 0 45px;
}
.cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor {
  width: 90px;
  height: 90px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #fff;
  border-radius: 50%;
  padding: 19px;
  margin: 15px 12px;
}
@media (min-width: 576px) {
  .cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor {
    width: 110px;
    height: 110px;
    padding: 20px;
  }
}
.cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--big {
  width: 110px;
  height: 110px;
  padding: 20px;
}
@media (min-width: 576px) {
  .cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--big {
    width: 130px;
    height: 130px;
    padding: 22px;
  }
}
.cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--huge {
  width: 120px;
  height: 120px;
  padding: 24px;
}
@media (min-width: 576px) {
  .cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--huge {
    width: 160px;
    height: 160px;
    padding: 26px;
  }
}
.cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--square {
  border-radius: 0;
  width: 120px;
  height: 90px;
  padding: 15px;
}
@media (min-width: 576px) {
  .cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--square {
    width: 180px;
    height: 130px;
  }
}
@media (min-width: 736px) {
  .cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--square {
    width: 220px;
    height: 155px;
    padding: 20px;
  }
}
@media (min-width: 1410px) {
  .cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--square {
    width: 260px;
    height: 190px;
  }
}
.cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor a {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cse-page--exhibitors .cse-section--exhibitors .cse-exhibitors .cse-exhibitor img {
  max-height: 100%;
}

.cse-page--agenda {
  padding: 30px 0;
}
@media (min-width: 576px) {
  .cse-page--agenda {
    padding: 60px 0;
  }
}
.cse-page--agenda p, .cse-page--agenda span {
  color: var(--c-global-font);
}
.cse-page--agenda .cse-section--page-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 0 0 35px;
}
@media (min-width: 576px) {
  .cse-page--agenda .cse-section--page-header {
    margin: 0 0 50px;
  }
}
.cse-page--agenda .cse-section--page-header .cse-title {
  color: var(--c-global-font);
}
.cse-page--agenda .cse-section--page-header .cse-title-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media (min-width: 736px) {
  .cse-page--agenda .cse-section--page-header .cse-title-container {
    -ms-flex-align: end;
        -ms-grid-row-align: flex-end;
        align-items: flex-end;
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
.cse-page--agenda .cse-section--page-header .cse-title-container .cse-title-sm {
  font-size: 16px;
  font-weight: bold;
  opacity: 0.35;
  color: var(--c-global-font);
  transition: opacity 0.16s ease-in-out;
  padding: 12px 12px 2px;
}
@media (min-width: 736px) {
  .cse-page--agenda .cse-section--page-header .cse-title-container .cse-title-sm {
    padding: 0 40px 2px;
  }
}
@media (min-width: 992px) {
  .cse-page--agenda .cse-section--page-header .cse-title-container .cse-title-sm {
    padding: 0 40px 5px;
  }
}
.cse-page--agenda .cse-section--page-header .cse-title-container .cse-title-sm:hover {
  transition: opacity 0.24s ease-in-out;
  opacity: 1;
}
@media (min-width: 992px) {
  .cse-page--agenda .cse-section--page-header {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.cse-page--agenda .cse-section--page-header .cse-btn-agenda-pdf {
  display: none;
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
  min-width: 200px;
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
  margin: 20px 0 0;
  background-color: var(--c-global-btn-bg);
  border-color: var(--c-global-btn-bg);
  color: var(--c-global-btn-font);
}
.cse-page--agenda .cse-section--page-header .cse-btn-agenda-pdf:hover {
  background-color: transparent;
  color: var(--c-global-btn-bg);
  border-color: var(--c-global-btn-bg);
}
.cse-page--agenda .cse-section--page-header .cse-btn-agenda-pdf:hover .cse-svg-inline {
  fill: var(--c-global-btn-bg);
}
@media (min-width: 992px) {
  .cse-page--agenda .cse-section--page-header .cse-btn-agenda-pdf {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (min-width: 736px) {
  .cse-page--agenda .cse-section--page-header .cse-btn-agenda-pdf {
    margin: 0 0 0 30px;
  }
}
.cse-page--agenda .cse-section--page-header .cse-btn-agenda-pdf .cse-svg-inline {
  width: 18px;
  height: 18px;
  fill: var(--c-global-btn-font);
  margin: 0 10px 0 0;
}
.cse-page--agenda .cse-section--download {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (min-width: 992px) {
  .cse-page--agenda .cse-section--download {
    display: none;
  }
}
.cse-page--agenda .cse-section--download > a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  min-width: 200px;
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
  margin: 20px 0 0;
}
.cse-page--agenda .cse-section--download > a:hover .cse-svg-inline {
  fill: var(--c-global-btn-bg);
}
@media (min-width: 736px) {
  .cse-page--agenda .cse-section--download > a {
    margin: 0 0 0 30px;
  }
}
.cse-page--agenda .cse-section--download > a .cse-svg-inline {
  width: 18px;
  height: 18px;
  fill: var(--c-global-btn-font);
  margin: 0 10px 0 0;
}
.cse-page--agenda.cse-page--agenda-personal .cse-agenda-container .cse-list .cse-list__item {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}
@media (min-width: 736px) {
  .cse-page--agenda.cse-page--agenda-personal .cse-agenda-container .cse-list .cse-list__item {
    -ms-grid-columns: 160px 50px 1fr 45px;
        grid-template-columns: 160px 50px 1fr 45px;
  }
}
@media (min-width: 992px) {
  .cse-page--agenda.cse-page--agenda-personal .cse-agenda-container .cse-list .cse-list__item {
    -ms-grid-columns: 175px 45px 1fr 45px;
        grid-template-columns: 175px 45px 1fr 45px;
  }
}
.cse-page--agenda.cse-page--agenda-personal .cse-agenda-container .cse-list .cse-list__item.cse-list__item--saved {
  padding: 16px 16px 0;
  border: none;
}
@media (min-width: 736px) {
  .cse-page--agenda.cse-page--agenda-personal .cse-agenda-container .cse-list .cse-list__item.cse-list__item--saved {
    padding: 18px;
  }
}

.cse-agenda .cse-days {
  position: relative;
  display: none;
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
}
@media (min-width: 992px) {
  .cse-agenda .cse-days {
    display: -ms-flexbox;
    display: flex;
  }
}
.cse-agenda .cse-days .cse-day {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  opacity: 0.4;
  margin: 20px 40px 0 0;
  transition: opacity 0.16s ease-in-out;
}
.cse-agenda .cse-days .cse-day.cse-active, .cse-agenda .cse-days .cse-day:hover {
  transition: opacity 0.24s ease-in-out;
  opacity: 1;
}
.cse-agenda .cse-days .cse-day.cse-active {
  pointer-events: none !important;
}
.cse-agenda .cse-days .cse-day > span {
  display: block;
  font-size: 25px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 0.9px;
  margin: 0 20px 0 0;
}
@media (min-width: 1240px) {
  .cse-agenda .cse-days .cse-day > span {
    font-size: 30px;
    line-height: 43px;
  }
}
.cse-agenda .cse-days .cse-day > p {
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin: 0;
}
@media (min-width: 1240px) {
  .cse-agenda .cse-days .cse-day > p {
    font-size: 16px;
  }
}
.cse-agenda .cse-days .cse-underline {
  width: 107px;
  height: 2px;
  position: absolute;
  display: block;
  bottom: 0px;
  left: 0;
  background-color: var(--c-global-font);
  transition: left 0.3s ease-in-out;
}
.cse-agenda .cse-days.cse-days--mobile,
.cse-agenda .cse-stages.cse-stages--mobile {
  position: relative;
  display: block;
}
@media (min-width: 992px) {
  .cse-agenda .cse-days.cse-days--mobile,
.cse-agenda .cse-stages.cse-stages--mobile {
    display: none;
  }
}
.cse-agenda .cse-days.cse-days--mobile .cse-svg-inline,
.cse-agenda .cse-stages.cse-stages--mobile .cse-svg-inline {
  width: 25px;
  height: 25px;
  position: absolute;
  z-index: 2;
  opacity: 0.8;
  top: 0;
  bottom: 0;
  right: 15px;
  fill: var(--c-global-font);
  pointer-events: none;
  transform: rotate(90deg);
  margin: auto;
}
.cse-agenda .cse-days.cse-days--mobile > select,
.cse-agenda .cse-stages.cse-stages--mobile > select {
  width: 100%;
  opacity: 0.8;
  font-size: 14px;
  line-height: 23px;
  font-weight: 500;
  color: var(--c-global-font);
  border: 2px solid var(--c-global-font);
  border-radius: 30px;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  outline: none;
  padding: 7px 50px 7px 15px;
}
.cse-agenda .cse-days.cse-days--mobile > select option {
  background-color: var(--c-global-bg);
}
.cse-agenda .cse-stages {
  display: none;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  .cse-agenda .cse-stages {
    display: -ms-flexbox;
    display: flex;
    padding: 40px 0 0;
  }
}
.cse-agenda .cse-stages .cse-stage {
  background-color: rgba(0, 0, 0, 0);
  border-color: var(--c-global-font);
  color: var(--c-global-font);
  padding: 6px 28px;
  line-height: 23px;
  min-width: 180px;
  margin: 6px 12px;
}
@media (min-width: 736px) {
  .cse-agenda .cse-stages .cse-stage {
    margin: 0 18px 12px 0;
  }
}
.cse-agenda .cse-stages .cse-stage:hover, .cse-agenda .cse-stages .cse-stage.cse-active {
  background-color: var(--c-global-btn-bg);
  border-color: var(--c-global-btn-bg);
  color: var(--c-global-btn-font);
}
.cse-agenda .cse-stages .cse-stage.cse-active {
  pointer-events: none !important;
}
.cse-agenda .cse-stages.cse-stages--mobile > select {
  opacity: 1;
}
.cse-agenda .cse-agenda-container {
  padding: 12px 0;
}
@media (min-width: 576px) {
  .cse-agenda .cse-agenda-container {
    padding: 12px 0 32px;
  }
}
.cse-agenda .cse-agenda-container .cse-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item {
  cursor: pointer;
  position: relative;
  display: -ms-grid;
  display: grid;
  margin: 7.5px 0;
  border-radius: 5px;
  padding: 15px 15px 0;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  background-color: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.06);
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item.cse-active .cse-arrow .cse-svg-inline {
  transform: rotate(-90deg);
}
@media (min-width: 736px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-list__item {
    -ms-grid-columns: 110px 50px 1fr 45px;
        grid-template-columns: 110px 50px 1fr 45px;
    border-radius: 15px;
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-list__item {
    -ms-grid-columns: 150px 50px 1fr 45px;
        grid-template-columns: 150px 50px 1fr 45px;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item .cse-arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row-span: 1;
  -ms-grid-row: 3;
      grid-row: 3/span 1;
  width: calc(100% + 30px);
  background-color: rgba(158, 158, 158, 0.2);
  margin: 0 -15px 0;
}
@media (min-width: 736px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-list__item .cse-arrow {
    -ms-grid-column-span: 1;
    -ms-grid-column: 2;
        grid-column: 2/span 1;
    -ms-grid-row-span: 1;
    -ms-grid-row: 1;
        grid-row: 1/span 1;
    background-color: transparent;
    margin: 0;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item .cse-arrow .cse-svg-inline {
  width: 25px;
  height: 25px;
  fill: #707070;
  transform: rotate(90deg);
  cursor: pointer;
  border-radius: 50%;
  margin: 0 auto;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 736px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-list__item .cse-arrow .cse-svg-inline {
    fill: #9e9e9e;
    margin: 0 auto 0 10px;
  }
  .cse-agenda .cse-agenda-container .cse-list .cse-list__item .cse-arrow .cse-svg-inline:hover {
    fill: #707070;
    background-color: rgba(158, 158, 158, 0.2);
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--break {
  cursor: auto;
  position: relative;
  background-color: transparent;
  box-shadow: none;
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--break::before, .cse-agenda .cse-agenda-container .cse-list .cse-list__item--break::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  opacity: 0.3;
  background-color: var(--c-global-font);
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--break::after {
  bottom: 0;
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--break .cse-time span,
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--break .cse-name {
  color: var(--c-global-font);
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--header {
  cursor: auto;
  position: relative;
  background-color: transparent;
  box-shadow: none;
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--header::before, .cse-agenda .cse-agenda-container .cse-list .cse-list__item--header::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  opacity: 0.3;
  background-color: var(--c-global-font);
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--header::after {
  bottom: 0;
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--header .cse-time span,
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--header .cse-name {
  color: var(--c-global-font);
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--header .cse-desc {
  padding: 10px 0 0;
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--header .cse-desc span {
  color: var(--c-global-font);
  padding: 2px 0 0px;
  opacity: 0.8;
}
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--saved:not(.cse-list__item--break),
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--saved:not(.cse-list__item--heading) {
  border: 2px solid var(--c-global-btn-bg);
  padding: 13px 13px 0;
}
@media (min-width: 736px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-list__item--saved:not(.cse-list__item--break),
.cse-agenda .cse-agenda-container .cse-list .cse-list__item--saved:not(.cse-list__item--heading) {
    padding: 18px;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-grid-column-span: 1;
  -ms-grid-column: 1;
      grid-column: 1/span 1;
  margin: 0 0 15px;
}
@media (min-width: 736px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-info {
    -ms-grid-column-span: 1;
    -ms-grid-column: 3;
        grid-column: 3/span 1;
    margin: 0;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  white-space: nowrap;
  top: 11px;
  right: 15px;
  margin: 0 0 0 20px;
  cursor: pointer;
}
@media (min-width: 736px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda {
    position: relative;
    top: auto;
    right: auto;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda:hover > span {
  color: #000;
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda:hover .cse-svg-inline,
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda:hover .line {
  background-color: #000;
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda:hover .cse-svg-inline {
  fill: #fff;
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda:hover .line:before {
  background-color: #fff;
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda > span {
  display: block;
  font-size: 11px;
  line-height: 1;
  color: #707070;
}
@media (min-width: 576px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda > span {
    font-size: 14px;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda .cse-svg-inline,
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda .line {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ededf5;
  padding: 8px;
  margin: 0 0 0 5px;
  transition: fill 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
@media (min-width: 576px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda .cse-svg-inline,
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda .line {
    margin: 0 0 0 10px;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda .cse-svg-inline {
  fill: #707070;
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda .line {
  position: relative;
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda .line:before {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 2px;
  top: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #707070;
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda.cse-add-to-my-agenda .remove, .cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda.cse-add-to-my-agenda .line {
  display: none !important;
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda.cse-remove-from-my-agenda .add, .cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda.cse-remove-from-my-agenda .cse-svg-inline {
  display: none !important;
}
.cse-agenda .cse-agenda-container .cse-list .cse-info .cse-info--header > .cse-update-my-agenda.loading {
  pointer-events: none;
  opacity: 0.33;
  transition: opacity 0.2s;
}
.cse-agenda .cse-agenda-container .cse-list .cse-name {
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
  letter-spacing: 0;
  color: #000;
}
@media (min-width: 576px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-name {
    font-size: 16px;
    line-height: 23px;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-time {
  margin: 0 0 10px;
}
@media (min-width: 736px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-time {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-time {
    padding-left: 15px;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-time span {
  font-size: 13px;
  line-height: 17px;
  font-weight: 600;
  letter-spacing: 0;
  color: #000;
  display: block;
}
@media (min-width: 576px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-time span {
    font-size: 16px;
    line-height: 23px;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-time .cse-btn, .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-btn--primary, .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-btn--primary-disabled, .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-btn--card-submit, .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-form .gform_button, .cse-form .cse-agenda .cse-agenda-container .cse-list .cse-time .gform_button, .cse-agenda .cse-agenda-container .cse-list .cse-time .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-agenda .cse-agenda-container .cse-list .cse-time .ur-submit-button, .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-agenda .cse-agenda-container .cse-list .cse-time .user-registration-Button,
.cse-agenda .cse-agenda-container .cse-list .cse-time .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-agenda .cse-agenda-container .cse-list .cse-time .user-registration-Button, .cse-agenda .cse-agenda-container .cse-list .cse-time #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-agenda .cse-agenda-container .cse-list .cse-time a {
  padding: 4px 12px;
  margin-bottom: 4px;
  margin-left: -2px;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.25;
  white-space: unset;
  border-radius: 50px;
}
@media (min-width: 576px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-btn, .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-btn--primary, .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-btn--primary-disabled, .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-btn--card-submit, .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-form .gform_button, .cse-form .cse-agenda .cse-agenda-container .cse-list .cse-time .gform_button, .cse-agenda .cse-agenda-container .cse-list .cse-time .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-agenda .cse-agenda-container .cse-list .cse-time .ur-submit-button, .cse-agenda .cse-agenda-container .cse-list .cse-time .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-agenda .cse-agenda-container .cse-list .cse-time .user-registration-Button,
.cse-agenda .cse-agenda-container .cse-list .cse-time .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-agenda .cse-agenda-container .cse-list .cse-time .user-registration-Button, .cse-agenda .cse-agenda-container .cse-list .cse-time #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-agenda .cse-agenda-container .cse-list .cse-time a {
    padding: 6px 12px;
    font-size: 11px;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-expert {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #798181;
  cursor: pointer;
  margin: 5px 0 0;
}
.cse-agenda .cse-agenda-container .cse-list .cse-expert span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.cse-agenda .cse-agenda-container .cse-list .cse-expert span:hover {
  color: #000;
}
@media (min-width: 576px) {
  .cse-agenda .cse-agenda-container .cse-list .cse-expert {
    font-size: 14px;
    line-height: 20px;
  }
}
.cse-agenda .cse-agenda-container .cse-list .cse-desc {
  display: none;
  color: #232323;
  padding: 10px 0 0;
  margin: 0;
}
.cse-agenda .cse-agenda-container .cse-list .cse-desc span {
  display: block;
  font-size: 13px;
  line-height: 18px;
  color: #313131;
  white-space: pre-wrap;
  padding-bottom: 8px;
}
.cse-agenda .cse-agenda-container .cse-list .cse-desc .go-to-scene-btn-container {
  padding-top: 6px;
}
.cse-agenda .cse-agenda-container .cse-list .cse-actions {
  -ms-flex-pack: end;
      justify-content: flex-end;
  display: -ms-flexbox;
  display: flex;
}
.cse-agenda .cse-agenda-container .cse-response {
  padding: 50px 0;
}
.cse-agenda .cse-agenda-container .cse-response > p {
  font-size: 20px;
  line-height: 1;
}

.cse-archive--speakers .cse-section--page-header {
  padding: 0 0 30px;
}
@media (min-width: 576px) {
  .cse-archive--speakers .cse-section--page-header {
    padding: 0 0 40px;
  }
}
.cse-archive--speakers .cse-section--page-header .cse-title {
  font-size: 36px;
  line-height: 1.25;
  text-align: center;
  color: var(--c-global-font);
}
@media (min-width: 576px) {
  .cse-archive--speakers .cse-section--page-header .cse-title {
    text-align: left;
  }
}
@media (min-width: 736px) {
  .cse-archive--speakers .cse-section--page-header .cse-title {
    font-size: 40px;
    line-height: 1.25;
  }
}
.cse-archive--speakers .cse-section--filter {
  padding: 60px 0 40px;
}
@media (min-width: 576px) {
  .cse-archive--speakers .cse-section--filter {
    padding: 60px 0 60px;
  }
}
.cse-archive--speakers .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row {
  border-bottom: 1px solid var(--c-global-font);
}
.cse-archive--speakers .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input {
  color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input::-moz-placeholder {
  color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input:-ms-input-placeholder {
  color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input::placeholder {
  color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input:-moz-placeholder {
  color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input::-moz-placeholder {
  color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input:-ms-input-placeholder {
  color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--input::-webkit-input-placeholder {
  color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--filter .cse-filter .cse-filter--form .cse-filter--row .cse-filter--btn svg path {
  fill: var(--c-global-font);
}
.cse-archive--speakers .cse-filter-alert p {
  color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--speakers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px 25px;
}
@media (min-width: 576px) {
  .cse-archive--speakers .cse-section--speakers {
    margin: 0 -15px 100px;
  }
}
@media (min-width: 736px) {
  .cse-archive--speakers .cse-section--speakers {
    margin: 0 -10px 100px;
  }
}
@media (min-width: 992px) {
  .cse-archive--speakers .cse-section--speakers {
    margin: 0 -18px 100px;
  }
}
@media (min-width: 1240px) {
  .cse-archive--speakers .cse-section--speakers {
    margin: 0 -25px 100px;
  }
}
.cse-archive--speakers .cse-section--speakers .cse-filter-alert + .cse-speakers-category-label {
  padding-top: 35px;
}
.cse-archive--speakers .cse-section--speakers .cse-speakers-category-label {
  padding: 100px 25px 60px;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.cse-archive--speakers .cse-section--speakers .cse-speakers-category-label span {
  display: block;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  min-width: 20%;
  font-size: 16px;
  padding: 0 30px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.5px;
  color: var(--c-global-font);
  text-transform: uppercase;
}
.cse-archive--speakers .cse-section--speakers .cse-speakers-category-label::before, .cse-archive--speakers .cse-section--speakers .cse-speakers-category-label::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  opacity: 0.45;
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  background-color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--speakers .cse-speaker {
  width: 50%;
  padding: 0 0 45px 0;
}
@media (min-width: 576px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker {
    width: 33%;
  }
}
@media (min-width: 736px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker {
    padding: 0 0 35px 0;
    width: 20%;
  }
}
@media (min-width: 1240px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker {
    padding: 0 0 25px 0;
  }
}
.cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__inner {
  padding: 0 10px;
}
@media (min-width: 576px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__inner {
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__inner {
    padding: 0 18px;
  }
}
@media (min-width: 1240px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__inner {
    padding: 0 25px;
  }
}
.cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__img {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__img:hover > img {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.3s;
}
.cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__img:hover + .cse-speaker__name {
  opacity: 0.8;
  transition: opacity 0.3s;
}
.cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__img > img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}
.cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__name {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
  padding: 16px 2px 2px 4px;
  transition: opacity 0.3s, color 0.3s;
  color: var(--c-global-font);
}
.cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__name:hover {
  opacity: 0.8;
  transition: opacity 0.3s;
}
@media (min-width: 576px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__name {
    font-size: 15px;
    padding: 20px 4px 2px 8px;
  }
}
@media (min-width: 1240px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__name {
    font-size: 16px;
    padding: 20px 4px 2px 8px;
  }
}
.cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__position {
  display: block;
  opacity: 0.7;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  padding: 4px 2px 0 4px;
  color: var(--c-global-font);
}
@media (min-width: 576px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__position {
    padding: 4px 2px 0 8px;
  }
}
@media (min-width: 1240px) {
  .cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__position {
    padding: 4px 4px 0 8px;
  }
}
.cse-archive--speakers .cse-section--speakers .cse-speaker .cse-speaker__click {
  cursor: pointer;
}
.cse-archive--speakers .cse-section--speakers .cse-speakers-loader {
  width: 100%;
}

/** Import templates */
.cse-page--expo {
  padding: 0;
}
@media (min-width: 992px) {
  .cse-page--expo {
    padding: 0;
  }
}
.cse-page--expo .cse-section--page-header {
  overflow: hidden;
  padding: 30px 0 0;
}
@media (min-width: 992px) {
  .cse-page--expo .cse-section--page-header {
    padding: 60px 0 0;
  }
}
.cse-page--expo .cse-section--page-header .cse-title {
  font-weight: 700;
  line-height: 56px;
  text-align: center;
  padding: 0 0 30px;
}
@media (min-width: 1240px) {
  .cse-page--expo .cse-section--page-header .cse-title {
    text-align: left;
    padding: 0 0 50px;
  }
}
.cse-page--expo .cse-section--page-header .cse-map {
  position: relative;
  display: none;
  -ms-grid-columns: (1fr)[158];
      grid-template-columns: repeat(158, 1fr);
  -ms-grid-rows: (1fr)[64];
      grid-template-rows: repeat(64, 1fr);
}
@media (min-width: 1240px) {
  .cse-page--expo .cse-section--page-header .cse-map {
    display: -ms-grid;
    display: grid;
  }
}
.cse-page--expo .cse-section--page-header .cse-map .cse-map__img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  -o-object-fit: contain;
     object-fit: contain;
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor {
  width: 95px;
  height: 50px;
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 10;
  background-color: #fff;
  border-radius: 5px;
  padding: 3px;
  transition: transform 0.2s ease-in-out;
  margin: -50px 0 0 -95px;
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor > img {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor:hover {
  transform: translateY(-5px);
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  bottom: -15px;
  right: 0;
  border-right: none;
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor.cse-exhibitor--reverse {
  margin: -50px 0 0 0;
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor.cse-exhibitor--reverse::after {
  right: auto;
  left: 0;
  border-right: 20px solid transparent;
  border-left: none;
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor.cse-exhibitor--big {
  width: 76px;
  height: 53px;
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor.cse-exhibitor--small {
  width: 54px;
  height: 37px;
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor.cse-exhibitor--huge {
  padding: 6px;
  transform-origin: right bottom;
  width: 140px;
  height: 88px;
}
@media (min-width: 1410px) {
  .cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor.cse-exhibitor--huge {
    padding: 8px;
    width: 152px;
    height: 96px;
  }
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor.cse-exhibitor--huge:hover {
  transform: scale(1.075);
}
.cse-page--expo .cse-section--page-header .cse-map a.cse-exhibitor.cse-exhibitor--huge.cse-exhibitor--reverse {
  transform-origin: left bottom;
}
.cse-page--expo .cse-section--page-header .cse-description {
  display: none;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.3px;
  text-align: center;
  margin: 20px 0;
  opacity: 0.33;
}
@media (min-width: 1240px) {
  .cse-page--expo .cse-section--page-header .cse-description {
    display: block;
  }
}
.cse-page--expo .cse-section--stream {
  padding: 45px 0 45px 0;
}
@media (min-width: 992px) {
  .cse-page--expo .cse-section--stream {
    padding: 45px 0 25px 0;
  }
}
@media (min-width: 1240px) {
  .cse-page--expo .cse-section--stream {
    padding: 45px 0 35px 0;
  }
}
.cse-page--expo .cse-section--exhibitors {
  overflow-x: hidden;
  padding: 60px 0;
}
.cse-page--expo .cse-section--exhibitors .cse-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 0 50px;
}
@media (min-width: 736px) {
  .cse-page--expo .cse-section--exhibitors .cse-title {
    margin: 0 0 90px;
  }
}
@media (min-width: 1240px) {
  .cse-page--expo .cse-section--exhibitors .cse-title {
    text-align: left;
  }
}
.cse-page--expo .cse-section--exhibitors .cse-category .cse-category__name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.cse-page--expo .cse-section--exhibitors .cse-category .cse-category__name span {
  display: block;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  min-width: 33%;
  max-width: 90%;
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 20px;
}
.cse-page--expo .cse-section--exhibitors .cse-category .cse-category__name::before, .cse-page--expo .cse-section--exhibitors .cse-category .cse-category__name::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  opacity: 0.6;
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  background-color: var(--c-global-font);
}
.cse-page--expo .cse-section--exhibitors .cse-exhibitors {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 15px 0 45px;
}
.cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor {
  width: 90px;
  height: 90px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #fff;
  padding: 20px;
  margin: 15px 12px;
  border-radius: 50%;
  border-color: rgba(0, 0, 0, 0);
}
.cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor::after {
  content: "";
  display: block;
  position: absolute;
  width: 106px;
  height: 106px;
  top: -8px;
  left: -8px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
}
@media (min-width: 576px) {
  .cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor {
    width: 110px;
    height: 110px;
  }
  .cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor::after {
    width: 126px;
    height: 126px;
  }
}
.cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--big {
  width: 110px;
  height: 110px;
  padding: 20px;
}
.cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--big::after {
  width: 126px;
  height: 126px;
}
@media (min-width: 576px) {
  .cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--big {
    width: 130px;
    height: 130px;
    padding: 22px;
  }
  .cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--big::after {
    width: 146px;
    height: 146px;
  }
}
.cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--huge {
  width: 120px;
  height: 120px;
  padding: 24px;
}
.cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--huge::after {
  width: 132px;
  height: 132px;
  top: -6px;
  left: -6px;
}
@media (min-width: 576px) {
  .cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--huge {
    width: 160px;
    height: 160px;
    padding: 26px;
  }
  .cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--huge::after {
    width: 176px;
    height: 176px;
    top: -8px;
    left: -8px;
  }
}
.cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--square {
  border-radius: 0;
  width: 120px;
  height: 90px;
  padding: 15px;
}
@media (min-width: 576px) {
  .cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--square {
    width: 180px;
    height: 130px;
  }
}
@media (min-width: 736px) {
  .cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--square {
    width: 220px;
    height: 155px;
    padding: 20px;
  }
}
@media (min-width: 1410px) {
  .cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--square {
    width: 260px;
    height: 190px;
  }
}
.cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor.cse-exhibitor--square::after {
  border-radius: 0;
  width: unset;
  height: unset;
  top: -6px;
  left: -6px;
  bottom: -6px;
  right: -6px;
}
.cse-page--expo .cse-section--exhibitors .cse-exhibitors .cse-exhibitor > img {
  max-height: 100%;
}
.cse-page--expo .cse-section--exhibitors-all .cse-exhibitors {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}
.cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap {
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 38px;
}
@media (min-width: 576px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap {
    width: 33%;
  }
}
@media (min-width: 736px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap {
    width: 20%;
  }
}
.cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap .cse-exhibitor {
  width: 100px;
  height: 100px;
  margin: 0;
  box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}
@media (min-width: 576px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap .cse-exhibitor {
    width: 125px;
    height: 125px;
  }
}
@media (min-width: 1240px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap .cse-exhibitor {
    width: 140px;
    height: 140px;
  }
}
.cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap .cse-exhibitor::after {
  content: "";
  display: block;
  position: absolute;
  width: 115px;
  height: 115px;
}
@media (min-width: 576px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap .cse-exhibitor::after {
    width: 140px;
    height: 140px;
  }
}
@media (min-width: 1240px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap .cse-exhibitor::after {
    width: 155px;
    height: 155px;
  }
}
.cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap .cse-exhibitor:hover {
  transition: box-shadow 0.15s ease-in-out;
  box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.2);
}
.cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 20px;
  text-align: center;
  margin: 15px 0;
}
@media (min-width: 576px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap span {
    font-size: 16px;
    margin: 20px 0;
  }
}
@media (min-width: 736px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors .cse-exhibitor-wrap span {
    font-size: 20px;
    line-height: 25px;
    margin: 30px 0;
  }
}
@media (min-width: 576px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors.cse-exhibitors--huge .cse-exhibitor-wrap {
    width: 50%;
  }
}
@media (min-width: 736px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors.cse-exhibitors--huge .cse-exhibitor-wrap {
    width: 33%;
  }
}
@media (min-width: 992px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors.cse-exhibitors--huge .cse-exhibitor-wrap {
    width: 25%;
  }
}
.cse-page--expo .cse-section--exhibitors-all .cse-exhibitors.cse-exhibitors--huge .cse-exhibitor-wrap .cse-exhibitor {
  width: 120px;
  height: 80px;
  box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.025);
  border-radius: 0;
  padding: 10px;
}
@media (min-width: 576px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors.cse-exhibitors--huge .cse-exhibitor-wrap .cse-exhibitor {
    width: 200px;
    height: 140px;
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors.cse-exhibitors--huge .cse-exhibitor-wrap .cse-exhibitor {
    width: 220px;
    height: 155px;
    padding: 20px;
  }
}
@media (min-width: 1240px) {
  .cse-page--expo .cse-section--exhibitors-all .cse-exhibitors.cse-exhibitors--huge .cse-exhibitor-wrap .cse-exhibitor {
    width: 260px;
    height: 190px;
  }
}
.cse-page--expo .cse-section--exhibitors-all .cse-exhibitors.cse-exhibitors--huge .cse-exhibitor-wrap .cse-exhibitor:hover {
  box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.05);
}
.cse-page--expo .cse-section--exhibitors-all .cse-exhibitors.cse-exhibitors--huge .cse-exhibitor-wrap .cse-exhibitor::after {
  border-radius: 0;
  width: unset;
  height: unset;
  top: -8px;
  left: -8px;
  bottom: -8px;
  right: -8px;
}

.cse-page--network-vip {
  padding: 30px 0 0;
}
@media (min-width: 576px) {
  .cse-page--network-vip {
    padding: 60px 0 0;
  }
}
.cse-page--network-vip .cse-header {
  padding: 0 0 40px;
}
.cse-page--network-vip .cse-header .cse-header__title span {
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: var(--c-global-font);
}
@media (min-width: 576px) {
  .cse-page--network-vip .cse-header .cse-header__title span {
    display: inline-block;
  }
}
.cse-page--network-vip .cse-header .cse-header__title span.cse-option {
  opacity: 0.5;
  margin: 0 30px 0 0;
}
.cse-page--network-vip .cse-header .cse-header__title::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background-color: var(--c-global-font);
  margin: 5px 0 20px;
}
.cse-page--network-vip .cse-header p {
  opacity: 0.5;
  font-size: 14px;
  line-height: 20px;
  color: var(--c-global-font);
}
.cse-page--network-vip .cse-section--chatroll {
  padding: 30px 0 40px;
}
@media (min-width: 992px) {
  .cse-page--network-vip .cse-section--chatroll {
    padding: 60px 0 80px;
  }
}
.cse-page--network-vip .cse-section--chatroll .cse-chat-container {
  margin-top: 0;
}
.cse-page--network-vip .cse-section--vip-individual {
  background-color: rgba(0, 0, 0, 0.14);
  padding: 30px 0;
}
@media (min-width: 992px) {
  .cse-page--network-vip .cse-section--vip-individual {
    padding: 80px 0;
  }
}
.cse-page--network-vip .cse-section--vip-individual .cse-container {
  max-width: 1030px;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-wrapper {
  width: 100%;
  height: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media (min-width: 992px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-wrapper {
    height: 560px;
    -ms-flex-align: end;
        -ms-grid-row-align: flex-end;
        align-items: flex-end;
  }
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-chat {
  margin: auto;
  max-width: 500px;
  width: 100%;
}
@media (min-width: 992px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-chat {
    max-width: 500px;
    width: 500px;
    margin: 0;
  }
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-chat {
  position: relative;
  width: 100%;
  height: 364px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (min-width: 412px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-chat {
    height: 448px;
  }
}
@media (min-width: 530px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-chat {
    height: auto;
  }
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-chat .cse-vip-chat-frame {
  position: absolute;
  transform: scale(0.65);
  transform-origin: top center;
  margin: auto;
  width: 500px;
}
@media (min-width: 412px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-chat .cse-vip-chat-frame {
    transform: scale(0.8);
  }
}
@media (min-width: 530px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-chat .cse-vip-chat-frame {
    position: relative;
    transform: none;
    margin: 0;
  }
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-chat .cse-vip-chat-frame::before, .cse-page--network-vip .cse-section--vip-individual .cse-vip-chat .cse-vip-chat-frame::after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  bottom: -10px;
  right: -10px;
  left: -10px;
  border: 10px solid var(--c-global-bg);
  border-radius: 20px;
  pointer-events: none;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-chat .cse-vip-chat-frame::after {
  border: 10px solid rgba(0, 0, 0, 0.14);
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list {
  position: relative;
  width: 100%;
  max-width: 325px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  margin: 35px 0 0 0;
}
@media (min-width: 412px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-list {
    width: 400px;
    max-width: 500px;
  }
}
@media (min-width: 530px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-list {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-list {
    padding: 25px;
  }
}
@media (min-width: 992px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-list {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    max-width: 400px;
    width: 400px;
    margin: 0;
  }
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__header {
  padding: 8px 42px 14px 20px;
}
@media (min-width: 576px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__header {
    padding: 8px 36px 14px 14px;
  }
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__header span {
  display: block;
  max-width: 235px;
  font-size: 17px;
  color: var(--c-global-bg);
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__header span {
    font-size: 19px;
  }
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users {
  height: 260px;
  padding: 16px 16px 16px 22px;
  background: #F2F2F2;
  border-radius: 10px;
}
@media (min-width: 576px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users {
    height: 420px;
  }
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-list__scroll {
  height: 100%;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-list__scroll .simplebar-scrollbar:before {
  background: #8E8E8E;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-list__scroll .simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-list__scroll .simplebar-track.simplebar-vertical:before {
  content: "";
  top: 2px;
  bottom: 4px;
  left: 5px;
  width: 1px;
  background: #CFCFCF;
  position: absolute;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-user {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0 12px 0;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-user .cse-vip-user__img img {
  height: 25px;
  width: 25px;
  border-radius: 50px;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-user .cse-vip-user__data {
  -ms-flex: 1;
      flex: 1;
  padding: 0 28px 0 18px;
}
@media (min-width: 576px) {
  .cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-user .cse-vip-user__data {
    padding: 0 56px 0 18px;
  }
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-user .cse-vip-user__data .cse-vip-user__name {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  opacity: 0.9;
  line-height: 1.25;
  padding-bottom: 2px;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-user .cse-vip-user__data .cse-vip-user__pro {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  line-height: 1.25;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-user .cse-vip-user__data .cse-vip-user__pro span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-user .cse-vip-user__data .cse-vip-user__pro .position {
  opacity: 0.9;
}
.cse-page--network-vip .cse-section--vip-individual .cse-vip-list .cse-vip-list__users .cse-vip-user .cse-vip-user__data .cse-vip-user__pro .company {
  opacity: 0.4;
}

.cse-page--registration-start .cse-reg-start-wrap {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 10px;
  text-align: center;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start {
  padding: 55px 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start.cse-reg--start-reverse {
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start.cse-reg--start-reverse .cse-reg--start-title {
  padding: 0 0 40px 0;
  -ms-flex-order: 1;
      order: 1;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-title {
  padding: 0 0 30px 0;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-title h1 {
  font-size: 28px;
  line-height: 1.4;
  color: #000;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-title .cse-reg--start-desc {
  margin: 20px auto 0;
  max-width: 500px;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-title .cse-reg--start-desc p {
  line-height: 1.7;
  font-size: 14px;
  color: #606060;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-title .cse-reg--start-desc p a {
  color: #808080;
  text-decoration: underline;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-title .cse-reg--start-desc p a:hover {
  color: #606060;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code {
  max-width: 400px;
  margin: 0 auto 30px;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-title {
  max-width: 350px;
  margin: 0 auto;
  padding: 0 0 22px 0;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-title h2 {
  font-size: 22px;
  line-height: 1.4;
  color: #000;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-content {
  max-width: 350px;
  margin: 0 auto;
  padding: 0 0 8px 0;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-content p {
  line-height: 1.7;
  font-size: 14px;
  color: #606060;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 0 26px 0;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-input {
  outline: none;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #f5f5f5;
  padding: 6px 20px;
  color: #9e9e9e;
  font-size: 13px;
  margin: 0 8px 12px;
  width: 200px;
}
@media (min-width: 576px) {
  .cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-input {
    margin: 0 8px;
  }
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-input, .cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-input::-moz-placeholder {
  font-size: 13px;
  line-height: 24px;
  color: #9e9e9e;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-input, .cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-input:-ms-input-placeholder {
  font-size: 13px;
  line-height: 24px;
  color: #9e9e9e;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-input, .cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-input::placeholder {
  font-size: 13px;
  line-height: 24px;
  color: #9e9e9e;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-btn--submit {
  margin: 0 8px;
  text-transform: none;
  font-size: 13px;
  padding: 8px 22px;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-code-input-alert {
  display: none;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-code-input-alert p {
  color: #e20000;
  font-size: 13px;
  margin: 15px 0 0 0;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-input .cse-reg--start-code-input-alert.visible {
  display: block;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-buy {
  max-width: 250px;
  margin: 0 auto;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-buy p {
  line-height: 1.4;
  font-size: 14px;
  color: #b0b0b0;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-buy p a {
  color: #a0a0a0;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-code .cse-reg--start-code-buy p a:hover {
  color: #909090;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-divider {
  text-align: center;
  padding: 20px 0 60px;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-divider .line {
  max-width: 385px;
  margin: auto;
  border-top: 1px solid #e0e0e0;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-open .cse-reg--start-open-title {
  max-width: 350px;
  margin: 0 auto;
  padding: 0 0 22px 0;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-open .cse-reg--start-open-title h2 {
  font-size: 22px;
  line-height: 1.4;
  color: #000;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-open .cse-reg--start-open-content {
  max-width: 350px;
  margin: 0 auto;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-open .cse-reg--start-open-content p {
  line-height: 1.7;
  font-size: 14px;
  color: #606060;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-open .cse-reg--start-open-button {
  padding: 10px 0 30px 0;
}
.cse-page--registration-start .cse-reg-start-wrap .cse-reg--start .cse-reg--start-open .cse-reg--start-open-button .cse-btn--submit {
  text-transform: none;
  font-size: 14px;
  padding: 8px 22px;
}

.cse-page--stages {
  padding: 30px 0;
}
@media (min-width: 576px) {
  .cse-page--stages {
    padding: 50px 0 100px;
  }
}
.cse-page--stages .cse-section--top-banner,
.cse-page--stages .cse-section--low-banner {
  margin: 30px 0;
}
.cse-page--stages .cse-section--top-banner picture,
.cse-page--stages .cse-section--low-banner picture {
  display: -ms-flexbox;
  display: flex;
}
.cse-page--stages .cse-section--top-banner .cse-banner > img,
.cse-page--stages .cse-section--low-banner .cse-banner > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.cse-page--stages .cse-section--top-banner {
  margin-top: 0;
}
.cse-page--stages .cse-section--content {
  margin: 0 0 30px;
}
.cse-page--stages .cse-section--stream {
  padding: 30px 0 30px 0;
}
@media (min-width: 992px) {
  .cse-page--stages .cse-section--stream {
    padding: 20px 0 10px 0;
  }
}
@media (min-width: 1240px) {
  .cse-page--stages .cse-section--stream {
    padding: 40px 0 10px 0;
  }
}
.cse-page--stages .cse-section--stream .cse-container--lg {
  padding: 0;
}
@media (min-width: 992px) {
  .cse-page--stages .cse-section--stream .cse-stream {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cse-page--stages .cse-section--stream .cse-stream--video {
    padding-right: 10px;
    width: 68%;
  }
}
@media (min-width: 1240px) {
  .cse-page--stages .cse-section--stream .cse-stream--video {
    padding-right: 10px;
  }
}
@media (min-width: 1410px) {
  .cse-page--stages .cse-section--stream .cse-stream--video {
    padding-right: 10px;
  }
}
.cse-page--stages .cse-section--stream .cse-stream--video .cse-stream--player-wrapper {
  border-radius: 12px;
}
@media (min-width: 1240px) {
  .cse-page--stages .cse-section--stream .cse-stream--video .cse-stream--player-languages {
    right: 10px;
  }
}
@media (min-width: 1410px) {
  .cse-page--stages .cse-section--stream .cse-stream--video .cse-stream--player-languages {
    right: 10px;
  }
}
@media (min-width: 992px) {
  .cse-page--stages .cse-section--stream .cse-stream--sidebar {
    padding-left: 10px;
    width: 32%;
  }
}
@media (min-width: 1240px) {
  .cse-page--stages .cse-section--stream .cse-stream--sidebar {
    padding-left: 10px;
  }
}
.cse-page--stages .cse-section--stream .cse-stream--sidebar .cse-stream--title {
  display: none;
}
.cse-page--stages .cse-section--stream .cse-stream--sidebar .cse-stream--chat .cse-chatroll-frame {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .cse-page--stages .cse-section--stream .cse-stream--sidebar .cse-stream--chat .cse-chatroll-frame {
    margin-top: 0;
  }
}
@media (min-width: 1240px) {
  .cse-page--stages .cse-section--stream .cse-stream--sidebar .cse-stream--chat .cse-chatroll-frame {
    margin-top: 0;
  }
}
.cse-page--stages .cse-section--links .cse-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-gap: 20px;
}
@media (min-width: 736px) {
  .cse-page--stages .cse-section--links .cse-content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}
.cse-page--stages .cse-section--links .cse-content .cse-link {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.cse-page--stages .cse-section--links .cse-content .cse-link:hover .cse-svg--arrow {
  transform: translateX(10px);
}
@media (min-width: 736px) {
  .cse-page--stages .cse-section--links .cse-content .cse-link {
    min-height: 110px;
  }
  .cse-page--stages .cse-section--links .cse-content .cse-link.cse-link--big {
    -ms-grid-row-span: 2;
    -ms-grid-row: auto;
        grid-row: auto/span 2;
  }
}
.cse-page--stages .cse-section--links .cse-content .cse-link .cse-link__img {
  width: 140px;
}
.cse-page--stages .cse-section--links .cse-content .cse-link .cse-link__img .cse-link__img-child {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.cse-page--stages .cse-section--links .cse-content .cse-link .cse-link__img .cse-link__img-child img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cse-page--stages .cse-section--links .cse-content .cse-link .cse-link__text {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 15px;
}
@media (min-width: 992px) {
  .cse-page--stages .cse-section--links .cse-content .cse-link .cse-link__text {
    padding: 20px;
  }
}
.cse-page--stages .cse-section--links .cse-content .cse-link .cse-link__desc {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.25;
  text-transform: uppercase;
  color: rgba(112, 112, 112, 0.5);
  margin: 0 0 5px;
}
@media (min-width: 736px) {
  .cse-page--stages .cse-section--links .cse-content .cse-link .cse-link__desc {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .cse-page--stages .cse-section--links .cse-content .cse-link .cse-link__desc {
    margin: 0;
  }
}
.cse-page--stages .cse-section--links .cse-content .cse-link .cse-link__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: auto 0 0 0;
}
.cse-page--stages .cse-section--links .cse-content .cse-link .cse-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #000;
  margin: 0 10px 0 0;
}
@media (min-width: 736px) {
  .cse-page--stages .cse-section--links .cse-content .cse-link .cse-name {
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.8px;
  }
}
@media (min-width: 992px) {
  .cse-page--stages .cse-section--links .cse-content .cse-link .cse-name {
    font-size: 26px;
    line-height: 44px;
  }
}
.cse-page--stages .cse-section--links .cse-content .cse-link .cse-name.cse-name--bold {
  font-weight: 700;
}
.cse-page--stages .cse-section--links .cse-content .cse-link .cse-svg--arrow {
  width: 25px;
  height: 25px;
  fill: #707070;
  margin: 0 10px 0 0;
  transition: transform 0.3s ease-in-out;
  display: none;
}
@media (min-width: 480px) {
  .cse-page--stages .cse-section--links .cse-content .cse-link .cse-svg--arrow {
    display: block;
  }
}
@media (min-width: 736px) {
  .cse-page--stages .cse-section--links .cse-content .cse-link .cse-svg--arrow {
    width: 30px;
    height: 30px;
  }
}
.cse-page--stages .cse-section--feed {
  padding-top: 50px;
}
.cse-page--stages .cse-section--feed .cse-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cse-page--stages .cse-section--feed .cse-content .cse-feed--img {
  width: 100%;
  padding-bottom: 20px;
}
@media (min-width: 736px) {
  .cse-page--stages .cse-section--feed .cse-content .cse-feed--img {
    padding-bottom: 0;
    padding-right: 10px;
    width: 50%;
  }
}
.cse-page--stages .cse-section--feed .cse-content .cse-feed--img .cse-feed--img-url {
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.cse-page--stages .cse-section--feed .cse-content .cse-feed--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 736px) {
  .cse-page--stages .cse-section--feed .cse-content .cse-feed--img img {
    max-height: 620px;
  }
}
.cse-page--stages .cse-section--feed .cse-content .cse-feed--widget {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.06);
}
@media (min-width: 736px) {
  .cse-page--stages .cse-section--feed .cse-content .cse-feed--widget {
    margin-left: 10px;
    width: auto;
    -ms-flex: 1;
        flex: 1;
  }
}
.cse-page--stages .cse-section--feed .cse-content .cse-feed--widget .cse-feed--widget-container {
  padding: 10px;
  margin: auto;
  max-width: 520px;
  /* FB Widget */
}
@media (min-width: 550px) {
  .cse-page--stages .cse-section--feed .cse-content .cse-feed--widget .cse-feed--widget-container {
    width: 520px;
  }
}
@media (min-width: 736px) {
  .cse-page--stages .cse-section--feed .cse-content .cse-feed--widget .cse-feed--widget-container {
    width: auto;
  }
}
@media (min-width: 1095px) {
  .cse-page--stages .cse-section--feed .cse-content .cse-feed--widget .cse-feed--widget-container {
    width: 520px;
  }
}
.cse-page--stages .cse-section--feed .cse-content .cse-feed--widget .cse-feed--widget-container .fb-page,
.cse-page--stages .cse-section--feed .cse-content .cse-feed--widget .cse-feed--widget-container .fb-page span,
.cse-page--stages .cse-section--feed .cse-content .cse-feed--widget .cse-feed--widget-container .fb-page span iframe[style] {
  width: 100% !important;
}

.cse-page--text .cse-section--page-header {
  margin: 0 0 30px;
}
.cse-page--text .wp-block-group.has-background h1, .cse-page--text .wp-block-group.has-background h2, .cse-page--text .wp-block-group.has-background h3, .cse-page--text .wp-block-group.has-background h4, .cse-page--text .wp-block-group.has-background h5, .cse-page--text .wp-block-group.has-background h6 {
  padding: 20px;
}
.cse-page--text .wp-block-group p {
  margin: 20px 0;
}

/* For: Here, Networking, Support */
.cse-section--userslist {
  background-color: #FCFCFC;
  padding: 80px 0;
}
.cse-section--userslist .cse-loader,
.cse-section--userslist .cse-loader:before,
.cse-section--userslist .cse-loader:after {
  background: #000000;
}
.cse-section--userslist .cse-loader {
  color: #000000;
}
.cse-section--userslist .cse-userslist-header {
  text-align: center;
  padding: 0 0 60px;
}
.cse-section--userslist .cse-userslist-header span {
  font-size: 40px;
  color: #000000;
  font-weight: bold;
  line-height: 1.15;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-gap: 20px;
}
@media (min-width: 576px) {
  .cse-section--userslist .cse-userslist-container .cse-userslist-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .cse-section--userslist .cse-userslist-container .cse-userslist-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user {
  box-shadow: 5px 5px 15px #E5E5E5A1;
  border: 0.5px solid #DFDFDF;
  border-radius: 10px;
  padding: 0 26px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  min-height: 100px;
  max-height: 100px;
  -ms-flex-align: center;
      align-items: center;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul--img {
  width: 50px;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul--img .cse-ul--img-child {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul--img .cse-ul--img-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul--content {
  -ms-flex: 1;
      flex: 1;
  padding: 0 0 0 20px;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul--content .cse-ul--name {
  color: #000000;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 4px;
  line-height: 1.25;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul--content .cse-ul--position {
  color: #000000;
  font-size: 10px;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul--content .cse-ul--role {
  color: #000000;
  font-size: 10px;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  padding: 8px;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay > div {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-grid-row-align: center;
      align-items: center;
  display: -ms-grid;
  display: grid;
  min-height: 85px;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay > div {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-grid-row-align: center;
      align-items: center;
  display: -ms-grid;
  display: grid;
  min-height: 85px;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .cse-ul-overlay-bg {
  background: var(--c-global-btn-bg);
  opacity: 0.66;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 9px;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .cse-btn, .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .cse-btn--primary, .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .cse-btn--primary-disabled, .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .cse-btn--card-submit, .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .cse-form .gform_button, .cse-form .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .gform_button, .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .ur-submit-button, .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .user-registration-Button,
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .user-registration-Button, .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay a {
  position: relative;
  color: #000;
  background-color: #fff;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay .cse-open-popform {
  pointer-events: none;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user .cse-ul-overlay:hover .cse-open-popform {
  pointer-events: auto;
}
.cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user:hover .cse-ul-overlay {
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: auto;
}
.cse-section--userslist .cse-userslist-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.cse-section--userslist .cse-userslist-button .cse-btn--arrow {
  text-transform: none;
  opacity: 1;
  border-width: 1px;
  border-color: #000000;
  color: #000000;
  background-color: #FCFCFC;
}
.cse-section--userslist .cse-userslist-button .cse-btn--arrow .cse-svg-inline {
  transform: rotate(180deg);
  margin: auto -5px auto 15px;
  fill: #000000;
}
.cse-section--userslist .cse-userslist-button .cse-btn--arrow:hover {
  color: #FCFCFC;
  background-color: #000000;
}
.cse-section--userslist .cse-userslist-button .cse-btn--arrow:hover .cse-svg-inline {
  fill: #FCFCFC;
}
.cse-section--userslist .cse-users-loader {
  grid-column: 1/-1;
}
.cse-section--userslist .cse-users-loader .cse-loader {
  margin: 30px auto;
}

/* For: Here, Support */
.cse-page--userslist,
.cse-page--support {
  background-color: #FCFCFC;
  padding: 0;
}
@media (min-width: 576px) {
  .cse-page--userslist,
.cse-page--support {
    padding: 0;
  }
}
.cse-page--userslist .cse-section--page-header,
.cse-page--support .cse-section--page-header {
  padding: 60px 0;
  text-align: center;
}
@media (min-width: 736px) {
  .cse-page--userslist .cse-section--page-header,
.cse-page--support .cse-section--page-header {
    padding: 90px 0;
  }
}
.cse-page--userslist .cse-section--page-header .cse-container,
.cse-page--support .cse-section--page-header .cse-container {
  max-width: 790px;
}
.cse-page--userslist .cse-section--page-header .cse-container .cse-title,
.cse-page--support .cse-section--page-header .cse-container .cse-title {
  font-size: 32px;
  line-height: 1.15;
}
@media (min-width: 736px) {
  .cse-page--userslist .cse-section--page-header .cse-container .cse-title,
.cse-page--support .cse-section--page-header .cse-container .cse-title {
    font-size: 42px;
  }
}
@media (min-width: 1240px) {
  .cse-page--userslist .cse-section--page-header .cse-container .cse-title,
.cse-page--support .cse-section--page-header .cse-container .cse-title {
    font-size: 50px;
  }
}
.cse-page--userslist .cse-section--page-header .cse-container p,
.cse-page--support .cse-section--page-header .cse-container p {
  margin: 15px 0 0;
  opacity: 0.5;
}
.cse-page--userslist .cse-section--page-header .cse-container .cse-userslist-button,
.cse-page--support .cse-section--page-header .cse-container .cse-userslist-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 20px;
}
.cse-page--userslist .cse-section--page-header .cse-container .cse-userslist-button .cse-btn--arrow,
.cse-page--support .cse-section--page-header .cse-container .cse-userslist-button .cse-btn--arrow {
  text-transform: none;
  opacity: 1;
  border-width: 1px;
  font-size: 12px;
  padding: 8px 20px;
}
.cse-page--userslist .cse-section--page-header .cse-container .cse-userslist-button .cse-btn--arrow .cse-svg-inline,
.cse-page--support .cse-section--page-header .cse-container .cse-userslist-button .cse-btn--arrow .cse-svg-inline {
  width: 14px;
  height: 14px;
  margin: auto 16px auto -4px;
}

/* For: Here */
.cse-page--userslist .cse-section--filter {
  padding: 0 0 30px;
}
@media (min-width: 736px) {
  .cse-page--userslist .cse-section--filter {
    padding: 0 0 40px;
  }
}
.cse-page--userslist .cse-section--filter .cse-filter--form .cse-filter--row {
  border-color: #000000;
}
.cse-page--userslist .cse-section--filter .cse-filter--form .cse-filter--row .cse-filter--input {
  color: #000000;
}
.cse-page--userslist .cse-section--filter .cse-filter--form .cse-filter--row .cse-filter--input::-moz-placeholder {
  color: #000000;
}
.cse-page--userslist .cse-section--filter .cse-filter--form .cse-filter--row .cse-filter--input:-ms-input-placeholder {
  color: #000000;
}
.cse-page--userslist .cse-section--filter .cse-filter--form .cse-filter--row .cse-filter--input::placeholder {
  color: #000000;
}
.cse-page--userslist .cse-section--filter .cse-filter--form .cse-filter--row .cse-filter--input:-moz-placeholder {
  color: #000000;
}
.cse-page--userslist .cse-section--filter .cse-filter--form .cse-filter--row .cse-filter--input::-moz-placeholder {
  color: #000000;
}
.cse-page--userslist .cse-section--filter .cse-filter--form .cse-filter--row .cse-filter--input:-ms-input-placeholder {
  color: #000000;
}
.cse-page--userslist .cse-section--filter .cse-filter--form .cse-filter--row .cse-filter--input::-webkit-input-placeholder {
  color: #000000;
}
.cse-page--userslist .cse-section--filter .cse-filter--form .cse-filter--row .cse-filter--btn svg path {
  fill: #000000;
}
.cse-page--userslist .cse-filter-alert {
  padding: 0;
}

/* For: Support */
.cse-page--support .cse-section {
  padding: 60px 0;
}
@media (min-width: 736px) {
  .cse-page--support .cse-section {
    padding: 90px 0;
  }
}
.cse-page--support .cse-section--userslist {
  background-color: #FCFCFC;
  padding: 50px 0;
}
@media (min-width: 736px) {
  .cse-page--support .cse-section--userslist {
    padding: 80px 0;
  }
}
.cse-page--support .cse-section--userslist .cse-loader,
.cse-page--support .cse-section--userslist .cse-loader:before,
.cse-page--support .cse-section--userslist .cse-loader:after {
  background: #000000;
}
.cse-page--support .cse-section--userslist .cse-loader {
  color: #000000;
}
.cse-page--support .cse-section--userslist .cse-userslist-header {
  text-align: center;
  padding: 0 0 60px;
}
.cse-page--support .cse-section--userslist .cse-userslist-header span {
  font-size: 40px;
  color: #000000;
  font-weight: bold;
  line-height: 1.15;
}
.cse-page--support .cse-section--userslist .cse-userslist-container .cse-userslist-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 0;
}
.cse-page--support .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user {
  margin: 10px;
  width: 100%;
}
@media (min-width: 576px) {
  .cse-page--support .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user {
    max-width: 400px;
    width: 46%;
  }
}
@media (min-width: 1240px) {
  .cse-page--support .cse-section--userslist .cse-userslist-container .cse-userslist-grid .cse-userslist-user {
    width: 28%;
  }
}
.cse-page--support .cse-section--consultant .cse-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
@media (min-width: 736px) {
  .cse-page--support .cse-section--consultant .cse-content {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: start;
        -ms-grid-row-align: flex-start;
        align-items: flex-start;
  }
}
.cse-page--support .cse-section--consultant .cse-content .cse-consultant {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  grid-column-gap: 15px;
  grid-row-gap: 30px;
  margin: 0 0 30px;
}
@media (min-width: 736px) {
  .cse-page--support .cse-section--consultant .cse-content .cse-consultant {
    margin-right: 20px;
  }
}
.cse-page--support .cse-section--consultant .cse-content .cse-consultant .cse-title {
  grid-column: 1/-1;
  -ms-grid-row: 1;
      grid-row: 1;
  width: 100%;
  margin: 0;
}
@media (min-width: 736px) {
  .cse-page--support .cse-section--consultant .cse-content .cse-consultant .cse-title {
    width: auto;
    max-width: 205px;
  }
}
.cse-page--support .cse-section--consultant .cse-content .cse-consultant .cse-image {
  width: 51px;
  height: 51px;
  -ms-grid-column-span: 1;
  -ms-grid-column: 1;
      grid-column: 1/span 1;
  -ms-grid-row: 2;
      grid-row: 2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.cse-page--support .cse-section--consultant .cse-content .cse-consultant .cse-info {
  -ms-grid-column-span: 1;
  -ms-grid-column: 2;
      grid-column: 2/span 1;
  -ms-grid-row: 2;
      grid-row: 2;
}
.cse-page--support .cse-section--consultant .cse-content .cse-consultant .cse-info .cse-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.cse-page--support .cse-section--consultant .cse-content .cse-consultant .cse-info .cse-desc {
  max-width: 300px;
  font-size: 13px;
  line-height: 19px;
  margin: 0;
}
.cse-page--support .cse-section--consultant .cse-content .cse-chat > div {
  border-radius: 10px;
  overflow: hidden;
}
.cse-page--support .cse-section--content {
  background-color: #FCFCFC;
  color: #000000;
}
.cse-page--support .cse-section--content p, .cse-page--support .cse-section--content strong, .cse-page--support .cse-section--content ul, .cse-page--support .cse-section--content ol, .cse-page--support .cse-section--content h1, .cse-page--support .cse-section--content h2, .cse-page--support .cse-section--content h3, .cse-page--support .cse-section--content h4, .cse-page--support .cse-section--content h5, .cse-page--support .cse-section--content h6 {
  color: #000000;
}
.cse-page--support .cse-section--content p a, .cse-page--support .cse-section--content strong a, .cse-page--support .cse-section--content ul a, .cse-page--support .cse-section--content ol a, .cse-page--support .cse-section--content h1 a, .cse-page--support .cse-section--content h2 a, .cse-page--support .cse-section--content h3 a, .cse-page--support .cse-section--content h4 a, .cse-page--support .cse-section--content h5 a, .cse-page--support .cse-section--content h6 a {
  text-decoration: none;
}

.cse-page--networking {
  padding: 0;
}
@media (min-width: 576px) {
  .cse-page--networking {
    padding: 30px;
  }
}
.cse-page--networking .cse-section--page-header {
  padding: 30px 0 50px;
}
@media (min-width: 576px) {
  .cse-page--networking .cse-section--page-header {
    padding: 60px 0 50px;
  }
}
.cse-page--networking .cse-section--page-header .cse-title {
  text-align: center;
}
@media (min-width: 736px) {
  .cse-page--networking .cse-section--page-header .cse-title {
    text-align: left;
  }
}
.cse-page--networking .cse-section--zones {
  padding: 30px 0 30px;
}
@media (min-width: 576px) {
  .cse-page--networking .cse-section--zones {
    padding: 30px 0 90px;
  }
}
.cse-page--networking .cse-section--zones .cse-zones {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-row-gap: 20px;
}
@media (min-width: 736px) {
  .cse-page--networking .cse-section--zones .cse-zones {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1240px) {
  .cse-page--networking .cse-section--zones .cse-zones {
    min-height: 570px;
    -ms-grid-columns: (1fr)[7];
        grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: 140px;
    grid-column-gap: 2.5%;
    grid-row-gap: 75px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
@media (max-width: 1239px) {
  .cse-page--networking .cse-section--zones .cse-zones {
    background-image: none !important;
  }
}
.cse-page--networking .cse-section--zones .cse-zones .cse-zone {
  position: relative;
}
@media (max-width: 1239px) {
  .cse-page--networking .cse-section--zones .cse-zones .cse-zone {
    -ms-grid-column-span: 1 !important;
    -ms-grid-column: auto !important;
        grid-column: auto/span 1 !important;
    -ms-grid-row: auto !important;
        grid-row: auto !important;
  }
}
.cse-page--networking .cse-section--zones .cse-zones .cse-zone .cse-zone__click {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}
.cse-page--networking .cse-section--zones .cse-zones .cse-zone .cse-name {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--c-global-font);
  margin: 10px 0;
}
@media (min-width: 1240px) {
  .cse-page--networking .cse-section--zones .cse-zones .cse-zone .cse-name {
    position: absolute;
    top: 100%;
    font-size: 15px;
    margin: 7px 0 0;
    max-width: 110px;
  }
}
.cse-page--networking .cse-section--zones .cse-zones .cse-zone img {
  max-width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 736px) {
  .cse-page--networking .cse-section--zones .cse-zones .cse-zone img {
    max-width: 140px;
  }
}
.cse-page--networking .cse-section--userslist {
  padding: 80px 0 60px;
}
.cse-page--networking .cse-section--userslist .cse-userslist-container {
  padding: 0 0 60px;
}

.cse-pdf-viewer iframe {
  border: none;
  height: 100vh;
  width: 100%;
}

.cse-page--text-search {
  padding: 0 0 20px 0;
}
@media (min-width: 576px) {
  .cse-page--text-search {
    padding: 0 0 60px 0;
  }
}
.cse-page--text-search .wp-block-group.has-background h1,
.cse-page--text-search .wp-block-group.has-background h2,
.cse-page--text-search .wp-block-group.has-background h3,
.cse-page--text-search .wp-block-group.has-background h4,
.cse-page--text-search .wp-block-group.has-background h5,
.cse-page--text-search .wp-block-group.has-background h6 {
  padding: 20px;
}
.cse-page--text-search .wp-block-group p {
  margin: 20px 0;
}
.cse-page--text-search .cse-container {
  position: relative;
}
.cse-page--text-search .page-search-section {
  z-index: 2;
  top: 0;
  position: sticky;
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.cse-page--text-search .page-search-section--search-active {
  box-shadow: 0px 21px 23px -20px rgba(0, 0, 0, 0.09);
}
.cse-page--text-search .page-search-section .page-search-container {
  padding: 5px 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  max-width: 1220px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
@media (min-width: 736px) {
  .cse-page--text-search .page-search-section .page-search-container {
    -ms-flex-direction: row;
        flex-direction: row;
    margin: 0;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.cse-page--text-search .page-search-section .cse-title {
  margin: auto 0 auto 0;
  color: #000;
}
@media (min-width: 736px) {
  .cse-page--text-search .page-search-section .cse-title {
    margin: auto 20px auto 0;
  }
}
.cse-page--text-search .page-search-section .page-search {
  margin-top: 20px;
}
@media (min-width: 736px) {
  .cse-page--text-search .page-search-section .page-search {
    margin: 0;
  }
}
.cse-page--text-search .page-search-section .cse-filter--row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #000;
  opacity: 0.45;
}
@media (min-width: 736px) {
  .cse-page--text-search .page-search-section .cse-filter--row {
    max-width: 400px;
  }
}
.cse-page--text-search .page-search-section .cse-filter--row:focus-within {
  opacity: 0.65;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--col {
  -ms-flex: 1;
      flex: 1;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--input {
  color: #000;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  font-size: 16px;
  font-weight: 300;
  padding: 8px 0;
  margin: 0;
  outline: none;
}
@media (min-width: 576px) {
  .cse-page--text-search .page-search-section .cse-filter--row .cse-filter--input {
    font-size: 18px;
  }
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--input::-moz-placeholder {
  color: #000;
  opacity: 0.85;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--input:-ms-input-placeholder {
  color: #000;
  opacity: 0.85;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--input::placeholder {
  color: #000;
  opacity: 0.85;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--input:-moz-placeholder {
  color: #000;
  opacity: 0.85;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--input::-moz-placeholder {
  color: #000;
  opacity: 0.85;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--input:-ms-input-placeholder {
  color: #000;
  opacity: 0.85;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--input::-webkit-input-placeholder {
  color: #000;
  opacity: 0.85;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--btn {
  width: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  box-shadow: none;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--btn svg {
  width: 20px;
  height: 20px;
  opacity: 0.75;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--btn svg path {
  fill: #000;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--btn svg:hover {
  opacity: 1;
}
.cse-page--text-search .page-search-section .cse-filter--row .cse-filter--btn-clear {
  display: none;
}
.cse-page--text-search .page-search-section .cse-filter--row .page-search-btn {
  display: none;
}
.cse-page--text-search .page-search-section .cse-filter--row .page-search-btn--active {
  display: -ms-flexbox;
  display: flex;
}
.cse-page--text-search .page-search-section .cse-filter--row .page-search-cancel-btn {
  display: none;
}
.cse-page--text-search .page-search-section .cse-filter--row .page-search-cancel-btn--active {
  display: -ms-flexbox;
  display: flex;
}
.cse-page--text-search .page-search-section .search-navigation-container {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 0;
  margin-top: 10px;
}
@media (min-width: 736px) {
  .cse-page--text-search .page-search-section .search-navigation-container {
    max-width: 400px;
  }
}
.cse-page--text-search .page-search-section .search-navigation-container--search-active {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.cse-page--text-search .page-search-section .search-navigation-container .page-search-founded-counter {
  margin: 0 20px;
  display: none;
  color: #000;
}
.cse-page--text-search .page-search-section .search-navigation-container .page-search-founded-counter--active {
  display: block;
}
.cse-page--text-search .page-search-section .search-navigation-container .page-search-not-found-info {
  color: #000;
  display: none;
}
.cse-page--text-search .page-search-section .search-navigation-container .page-search-not-found-info--active {
  display: block;
}
.cse-page--text-search .search-navigation-btn {
  display: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 14px;
  border-radius: 20px;
  border: 1px solid #0a0a0a;
  color: #000;
  text-align: center;
  white-space: nowrap;
  padding: 6px 14px;
  transition: background-color 0.1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .cse-page--text-search .search-navigation-btn:hover {
    background-color: var(--c-global-btn-bg);
    color: var(--c-global-btn-font);
    border: 1px solid rgba(10, 10, 10, 0);
    outline: none;
  }
}
.cse-page--text-search .search-navigation-btn--active {
  display: block;
}
.cse-page--text-search .element-highlighted {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.cse-search-results {
  padding: 45px 0 90px;
}
@media (min-width: 576px) {
  .cse-search-results {
    padding: 60px 0 120px;
  }
}

.cse-search-results__heading span {
  font-weight: inherit;
  font-size: inherit;
  opacity: 0.5;
}

.cse-search-results__section {
  padding: 55px 0 0 0;
}

.cse-search-results__section-title {
  padding: 0 0 20px;
}

.cse-search-results__empty {
  padding: 40px 0 0;
  opacity: 0.5;
}
.cse-search-results__empty .cse-heading {
  letter-spacing: 0.8px;
  line-height: 1.5;
  font-weight: 500;
}

.cse-search-results__stages .cse-search-results__section-content {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-gap: 20px;
  display: -ms-grid;
  display: grid;
}
@media (min-width: 736px) {
  .cse-search-results__stages .cse-search-results__section-content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}
.cse-search-results__stages .cse-stage {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border-radius: 10px;
}
.cse-search-results__stages .cse-stage__link {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 14px 20px 14px 16px;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media (min-width: 576px) {
  .cse-search-results__stages .cse-stage__link {
    padding: 20px 26px 20px 22px;
  }
}
.cse-search-results__stages .cse-stage__link .cse-svg-inline {
  width: 25px;
  height: 25px;
  transition: transform 0.3s;
  fill: #707070;
}
@media (min-width: 576px) {
  .cse-search-results__stages .cse-stage__link .cse-svg-inline {
    width: 30px;
    height: 30px;
  }
}
.cse-search-results__stages .cse-stage__link:hover .cse-svg-inline {
  transform: translateX(10px);
}
.cse-search-results__stages .cse-stage__desc {
  color: rgba(112, 112, 112, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 0 0 10px;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 576px) {
  .cse-search-results__stages .cse-stage__desc {
    font-size: 16px;
  }
}
.cse-search-results__stages .cse-stage__name {
  -ms-flex-line-pack: end;
      align-content: flex-end;
  -ms-flex-align: end;
      align-items: flex-end;
  display: -ms-flexbox;
  display: flex;
}
.cse-search-results__stages .cse-stage__name span {
  letter-spacing: 0.4px;
  color: #000;
  line-height: 1.4;
  font-weight: 600;
  font-size: 18px;
  -ms-flex: 1;
      flex: 1;
}
@media (min-width: 576px) {
  .cse-search-results__stages .cse-stage__name span {
    font-size: 22px;
  }
}

.cse-search-results__agenda .cse-search-results__section-content {
  -ms-flex-direction: column;
      flex-direction: column;
  display: -ms-flexbox;
  display: flex;
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  padding: 15px 15px 0;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  margin: 0;
}
@media (min-width: 736px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item {
    -ms-grid-columns: 110px 50px 1fr 45px;
        grid-template-columns: 110px 50px 1fr 45px;
    border-radius: 15px;
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item {
    -ms-grid-columns: 150px 50px 1fr 45px;
        grid-template-columns: 150px 50px 1fr 45px;
  }
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item.cse-active .cse-arrow .cse-svg-inline {
  transform: rotate(-90deg);
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item:not(:first-of-type) {
  margin: 15px 0 0;
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-arrow {
  background-color: rgba(158, 158, 158, 0.2);
  width: calc(100% + 30px);
  -ms-grid-row-span: 1;
  -ms-grid-row: 3;
      grid-row: 3/span 1;
  margin: 0 -15px 0;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 736px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-arrow {
    background-color: rgba(255, 255, 255, 0);
    -ms-grid-column-span: 1;
    -ms-grid-column: 2;
        grid-column: 2/span 1;
    -ms-grid-row-span: 1;
    -ms-grid-row: 1;
        grid-row: 1/span 1;
    margin: 0;
  }
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-arrow .cse-svg-inline {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease-in-out;
  transform: rotate(90deg);
  border-radius: 50%;
  fill: #707070;
  cursor: pointer;
  margin: 0 auto;
}
@media (min-width: 736px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-arrow .cse-svg-inline {
    margin: 0 auto 0 10px;
    fill: #9e9e9e;
  }
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-arrow .cse-svg-inline:hover {
    background-color: rgba(158, 158, 158, 0.2);
    fill: #707070;
  }
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-info {
  -ms-grid-column-span: 1;
  -ms-grid-column: 1;
      grid-column: 1/span 1;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 0 0 15px;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 736px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-info {
    -ms-grid-column-span: 1;
    -ms-grid-column: 3;
        grid-column: 3/span 1;
    margin: 0;
  }
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-info .cse-info--header {
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-name {
  letter-spacing: 0;
  color: #000;
  line-height: 17px;
  font-weight: 500;
  font-size: 15px;
}
@media (min-width: 576px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-name {
    line-height: 23px;
    font-size: 16px;
  }
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time {
  margin: 0 0 10px;
}
@media (min-width: 736px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time {
    padding-left: 15px;
  }
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time span {
  letter-spacing: 0;
  color: #000;
  line-height: 17px;
  font-weight: 600;
  font-size: 13px;
  display: block;
}
@media (min-width: 576px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time span {
    line-height: 23px;
    font-size: 16px;
  }
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-btn, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-btn--primary, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-btn--primary-disabled, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-btn--card-submit, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-form .gform_button, .cse-form .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .gform_button, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .ur-submit-button, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .user-registration-Button,
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .user-registration-Button, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time a {
  border-radius: 50px;
  white-space: unset;
  margin-bottom: 4px;
  margin-left: -2px;
  padding: 4px 12px;
  line-height: 1.25;
  margin-top: 6px;
  font-size: 10px;
}
@media (min-width: 576px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-btn, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-btn--primary, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-btn--primary-disabled, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-btn--card-submit, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-form .gform_button, .cse-form .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .gform_button, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .ur-frontend-form .ur-button-container .ur-submit-button, .ur-frontend-form .ur-button-container .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .ur-submit-button, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-page--login #user-registration .ur-frontend-form.login .user-registration-Button, .cse-page--login #user-registration .ur-frontend-form.login .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .user-registration-Button,
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .cse-page--account #user-registration .ur-frontend-form.login .user-registration-Button,
.cse-page--account #user-registration .ur-frontend-form.login .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time .user-registration-Button, .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout a, #user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link--user-logout .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-time a {
    padding: 6px 12px;
    font-size: 11px;
  }
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-expert {
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: 14px;
  font-weight: 500;
  font-size: 12px;
  color: #798181;
  cursor: pointer;
  margin: 5px 0 0;
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-expert span {
  letter-spacing: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  color: inherit;
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-expert span:hover {
  color: #000;
}
@media (min-width: 576px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-expert {
    font-size: 14px;
    line-height: 20px;
  }
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-desc {
  padding: 10px 0 0;
  color: #232323;
  display: none;
  margin: 0;
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-desc span {
  white-space: pre-wrap;
  padding-bottom: 8px;
  line-height: 18px;
  color: #313131;
  font-size: 13px;
  display: block;
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-desc .go-to-scene-btn-container {
  padding-top: 6px;
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item .cse-actions {
  -ms-flex-pack: end;
      justify-content: flex-end;
  display: -ms-flexbox;
  display: flex;
}
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item--saved:not(.cse-list__item--break),
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item--saved:not(.cse-list__item--heading) {
  border: 2px solid var(--c-global-btn-bg);
  padding: 13px 13px 0;
}
@media (min-width: 736px) {
  .cse-search-results__agenda .cse-search-results__section-content .cse-list__item--saved:not(.cse-list__item--break),
.cse-search-results__agenda .cse-search-results__section-content .cse-list__item--saved:not(.cse-list__item--heading) {
    padding: 18px;
  }
}

.cse-search-results__speakers .cse-search-results__section-content {
  margin: 0 -10px -45px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 576px) {
  .cse-search-results__speakers .cse-search-results__section-content {
    margin: 0 -14px -45px;
  }
}
@media (min-width: 736px) {
  .cse-search-results__speakers .cse-search-results__section-content {
    margin: 0 -10px -45px;
  }
}
@media (min-width: 992px) {
  .cse-search-results__speakers .cse-search-results__section-content {
    margin: 0 -18px -35px;
  }
}
@media (min-width: 1240px) {
  .cse-search-results__speakers .cse-search-results__section-content {
    margin: 0 -22px -25px;
  }
}
.cse-search-results__speakers .cse-speaker {
  padding: 0 0 45px 0;
  width: 50%;
}
@media (min-width: 576px) {
  .cse-search-results__speakers .cse-speaker {
    width: 33%;
  }
}
@media (min-width: 736px) {
  .cse-search-results__speakers .cse-speaker {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .cse-search-results__speakers .cse-speaker {
    padding: 0 0 35px 0;
    width: 20%;
  }
}
@media (min-width: 1240px) {
  .cse-search-results__speakers .cse-speaker {
    padding: 0 0 25px 0;
  }
}
.cse-search-results__speakers .cse-speaker .cse-speaker__inner {
  padding: 0 10px;
}
@media (min-width: 576px) {
  .cse-search-results__speakers .cse-speaker .cse-speaker__inner {
    padding: 0 14px;
  }
}
@media (min-width: 992px) {
  .cse-search-results__speakers .cse-speaker .cse-speaker__inner {
    padding: 0 18px;
  }
}
@media (min-width: 1240px) {
  .cse-search-results__speakers .cse-speaker .cse-speaker__inner {
    padding: 0 22px;
  }
}
.cse-search-results__speakers .cse-speaker .cse-speaker__img {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  height: 0;
}
.cse-search-results__speakers .cse-speaker .cse-speaker__img:hover > img {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.3s;
}
.cse-search-results__speakers .cse-speaker .cse-speaker__img:hover + .cse-speaker__name {
  transition: opacity 0.3s;
  opacity: 0.8;
}
.cse-search-results__speakers .cse-speaker .cse-speaker__img > img {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
  border-radius: 20px;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.cse-search-results__speakers .cse-speaker .cse-speaker__name {
  transition: opacity 0.3s, color 0.3s;
  padding: 16px 2px 2px 6px;
  color: var(--c-global-font);
  letter-spacing: 0;
  line-height: 1.4;
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin: 0;
}
.cse-search-results__speakers .cse-speaker .cse-speaker__name:hover {
  transition: opacity 0.3s;
  opacity: 0.8;
}
@media (min-width: 736px) {
  .cse-search-results__speakers .cse-speaker .cse-speaker__name {
    font-size: 16px;
  }
}
.cse-search-results__speakers .cse-speaker .cse-speaker__position {
  padding: 2px 2px 0 6px;
  color: var(--c-global-font);
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.4;
  font-size: 12px;
  display: block;
  opacity: 0.7;
}
@media (min-width: 736px) {
  .cse-search-results__speakers .cse-speaker .cse-speaker__position {
    font-size: 13px;
  }
}
.cse-search-results__speakers .cse-speaker .cse-speaker__click {
  cursor: pointer;
}

.cse-search-results__exhibitors .cse-search-results__section-title {
  padding: 0 0 30px;
}
.cse-search-results__exhibitors .cse-search-results__section-content {
  -ms-flex-align: start;
      align-items: flex-start;
  margin: 0 -15px -25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -ms-flexbox;
  display: flex;
}
.cse-search-results__exhibitors .cse-exhibitor {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  margin: 10px 0 35px;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
@media (min-width: 576px) {
  .cse-search-results__exhibitors .cse-exhibitor {
    width: 33%;
  }
}
@media (min-width: 736px) {
  .cse-search-results__exhibitors .cse-exhibitor {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .cse-search-results__exhibitors .cse-exhibitor {
    width: 20%;
  }
}
.cse-search-results__exhibitors .cse-exhibitor__link {
  width: 115px;
  height: 115px;
  box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  border-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 50%;
  position: relative;
  margin: 15px 12px;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  margin: 0;
}
@media (min-width: 576px) {
  .cse-search-results__exhibitors .cse-exhibitor__link {
    width: 130px;
    height: 130px;
  }
}
@media (min-width: 1240px) {
  .cse-search-results__exhibitors .cse-exhibitor__link {
    width: 140px;
    height: 140px;
  }
}
.cse-search-results__exhibitors .cse-exhibitor__link::after {
  content: "";
  display: block;
  position: absolute;
  border-color: inherit;
  border-style: solid;
  border-radius: 50%;
  border-width: 1px;
  bottom: -6px;
  right: -6px;
  left: -6px;
  top: -6px;
}
@media (min-width: 736px) {
  .cse-search-results__exhibitors .cse-exhibitor__link::after {
    bottom: -8px;
    right: -8px;
    left: -8px;
    top: -8px;
  }
}
.cse-search-results__exhibitors .cse-exhibitor__link:hover {
  box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.15s ease-in-out;
}
.cse-search-results__exhibitors .cse-exhibitor__name {
  letter-spacing: 0.6px;
  text-align: center;
  margin: 15px 5% 0;
  line-height: 1.4;
  font-weight: 600;
  font-size: 14px;
}
@media (min-width: 576px) {
  .cse-search-results__exhibitors .cse-exhibitor__name {
    margin: 20px 5% 0;
    font-size: 16px;
  }
}
@media (min-width: 736px) {
  .cse-search-results__exhibitors .cse-exhibitor__name {
    margin: 30px 5% 0;
    font-size: 18px;
  }
}

.cse-calendly-form fieldset {
  border: 0;
}
.cse-calendly-form fieldset > legend {
  color: #000;
  font-weight: 700;
  text-align: left;
  font-size: 18px;
}
.cse-calendly-form fieldset > p {
  display: -ms-grid;
  display: grid;
}
.cse-calendly-form fieldset > p > label {
  width: auto;
  padding: 6px 0 4px 0;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
}
.cse-calendly-form fieldset > p > .calendly-input-group-btn {
  margin-top: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.cse-calendly-form fieldset > p > .calendly-input-group-btn > .input-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 24px;
  color: var(--c-global-btn-font);
  border-radius: 20px;
  border: 1px solid var(--c-global-btn-bg);
  background-color: var(--c-global-btn-bg);
  text-align: center;
  white-space: nowrap;
  padding: 6px 30px;
  transition: background-color 0.1s ease-in-out;
}
.cse-calendly-form fieldset > p > .calendly-input-group > .input-text {
  width: 100%;
  outline: none;
  border: 1px solid transparent;
  border-radius: 10px !important;
  background-color: #f5f5f5;
  padding: 6px 20px !important;
  color: #808080 !important;
  font-size: 13px !important;
  line-height: 24px !important;
  letter-spacing: 0.4px !important;
}
.cse-calendly-message {
  border-radius: 10px;
  text-align: left;
  margin-bottom: 15px !important;
}
.cse-calendly-message.red {
  border-top-color: #ff4149;
  background: #ff4149c7;
  color: #fff;
}

* {
  font-family: "Poppins", sans-serif;
}

.dashicons-hidden:before {
  font-family: "dashicons";
}

.dashicons-visibility:before {
  font-family: "dashicons";
}

.wp-block-media-text {
  -ms-grid-columns: 1fr 50%;
      grid-template-columns: 1fr 50%;
}
.wp-block-media-text.has-media-on-the-right {
  -ms-grid-columns: 50% 1fr;
      grid-template-columns: 50% 1fr;
}

.block-editor-block-list__block > section.block-editor-block-list__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media (max-width: 736px) {
  .has-x-large-font-size {
    text-align: center;
  }
}
@media (max-width: 736px) {
  .has-text-align-left {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .wp-block-group > .is-vertical.is-content-justification-left {
    text-align: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .wp-block-group > .is-vertical.is-content-justification-left.wp-block-group {
    -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
  }
  .wp-block-group > .is-vertical.is-content-justification-left > h1 {
    text-align: center;
  }
  .wp-block-group > .is-vertical.is-content-justification-right {
    text-align: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .wp-block-group > .is-vertical.is-content-justification-right.wp-block-group {
    -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
  }
  .wp-block-group > .is-vertical.is-content-justification-right > h1 {
    text-align: center;
  }
  .wp-block-group > .is-vertical.is-content-justification-center {
    text-align: center;
  }
}
.block-editor-rich-text__editable {
  font-family: "Poppins", sans-serif;
}

@media (max-width: 992px) {
  .blu-container > .blu-block--content > .wp-block-columns > .wp-block-column > .wp-block-group {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.blu-container > .blu-block--content > .wp-block-columns > .wp-block-column > .wp-block-group p {
  /*
  &:first-child {
      @media (max-width: $media-md) {
          max-width: 468px;
          font-size: 52px;
          line-height: 67px;
      }
      @media (max-width: $media-sm) {
          max-width: 268px;
          font-size: 34px;
          line-height: 43px;
      }
  }
  */
}
@media (max-width: 992px) {
  .blu-container > .blu-block--content > .wp-block-columns > .wp-block-column > .wp-block-group p {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .blu-container > .blu-block--content > .wp-block-columns > .wp-block-column > .wp-block-group p:last-child {
    max-width: 364px;
  }
}
@media (max-width: 992px) {
  .blu-container > .blu-block--content > .wp-block-columns > .wp-block-column .wp-block-buttons.is-content-justification-left {
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media (max-width: 992px) {
  .wp-block-cover__image-background.is-repeated {
    background-size: cover;
  }
}

.editor-styles-wrapper > a {
  text-decoration: none;
}

a.no-underline {
  text-decoration: none;
}

@media (max-width: 992px) {
  .wp-block-media-text {
    display: block;
  }
}

.has-3-x-extra-large-font-size {
  font-size: 56px;
  line-height: 72px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .has-3-x-extra-large-font-size {
    font-size: 52px;
    line-height: 67px;
    font-weight: 600;
  }
}
@media (max-width: 736px) {
  .has-3-x-extra-large-font-size {
    font-size: 34px;
    line-height: 43px;
    font-weight: 600;
  }
}

.has-medium-font-size {
  font-size: 16px;
  line-height: 24px;
  font-weight: medium;
}
@media (max-width: 736px) {
  .has-medium-font-size {
    font-size: 12px;
    line-height: 19px;
    font-weight: medium;
  }
}

.wp-block-button > .has-medium-font-size {
  font-size: 16px;
  line-height: 11px;
  font-weight: 600;
  letter-spacing: 0.48px;
}
@media (max-width: 736px) {
  .wp-block-button > .has-medium-font-size {
    font-size: 13px;
    line-height: 5px;
    font-weight: 600;
    letter-spacing: 0.39px;
  }
}

.is-content-justification-center .wp-block-group.has-medium-font-size {
  font-size: 16px;
  line-height: 11px;
  font-weight: 600;
  letter-spacing: 0.48px;
}
@media (max-width: 736px) {
  .is-content-justification-center .wp-block-group.has-medium-font-size {
    font-size: 13px;
    line-height: 5px;
    font-weight: 600;
    letter-spacing: 0.39px;
  }
}

.has-x-large-font-size {
  font-size: 28px;
  line-height: 37px;
  font-weight: 600;
  letter-spacing: 0px;
}
@media (max-width: 992px) {
  .has-x-large-font-size {
    font-size: 28px;
    line-height: 37px;
    font-weight: 600;
    letter-spacing: 0px;
  }
}
@media (max-width: 736px) {
  .has-x-large-font-size {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0px;
  }
}

.has-extra-large-font-size {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  letter-spacing: 0px;
}
@media (max-width: 576px) {
  .has-extra-large-font-size {
    font-size: 23px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0px;
  }
}

.has-2-x-large-font-size {
  font-size: 42px;
  line-height: 56px;
  font-weight: 600;
  letter-spacing: 0px;
}
@media (max-width: 576px) {
  .has-2-x-large-font-size {
    font-size: 23px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0px;
    max-width: 178px;
    margin: 0 auto;
  }
}

.has-2-x-extra-large-font-size {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  letter-spacing: 0px;
}
@media (max-width: 992px) {
  .has-2-x-extra-large-font-size {
    font-size: 29px;
    line-height: 42px;
    font-weight: 600;
    letter-spacing: 0px;
  }
}
@media (max-width: 576px) {
  .has-2-x-extra-large-font-size {
    font-size: 23px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0px;
  }
}

.wp-block-cover__inner-container > .blu-block {
  padding-bottom: 0;
}

@media (max-width: 1240px) {
  .blu-content-with-image figure.wp-block-media-text__media > img {
    padding: 40px 0;
  }
}
@media (max-width: 1240px) and (min-width: 736px) {
  .blu-content-with-image figure.wp-block-media-text__media > img {
    padding: 40px 0 0 0;
  }
}