.width-wrapper {
  margin: 0 auto;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
@media only screen and (min-width: 1200px) {
  .width-wrapper {
    /*width: 90%;*/
    max-width: 1400px;
  }
}
body,
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
#main_menu {
  margin-top: 0;
}
.fa,
.fas {
  font-family: 'FontAwesome' !important;
  font-weight: normal !important;
}
.menu-icon {
  margin: 0;
  width: 18px;
  cursor: pointer;
  padding: 8px 10px;
  margin-top: -4px;
}
.menu-icon:after,
.menu-icon:before,
.menu-icon div {
  background-color: #222;
  border-radius: 3px;
  content: '';
  display: block;
  height: 3px;
  margin: 3px 0;
  transition: all 0.2s ease-in-out;
}
.menu-is-active .menu-icon {
  background: #fff;
  border-radius: 50%;
}
.menu-is-active .menu-icon:before {
  transform: translateY(6px) rotate(135deg);
}
.menu-is-active .menu-icon:after {
  transform: translateY(-6px) rotate(-135deg);
}
.menu-is-active .menu-icon div {
  transform: scale(0);
}
.cross-icon {
  margin: 0;
  width: 18px;
  cursor: pointer;
}
.cross-icon:after,
.cross-icon:before,
.cross-icon div {
  background-color: #222;
  border-radius: 3px;
  content: '';
  display: block;
  height: 3px;
  margin: 3px 0;
  transition: all 0.2s ease-in-out;
}
.cross-icon:before {
  transform: translateY(6px) rotate(135deg);
}
.cross-icon:after {
  transform: translateY(-6px) rotate(-135deg);
}
.cross-icon div {
  transform: scale(0);
}
.icon-gray:hover path,
.icon-gray:active path {
  stroke: #818181;
  transition: stroke 0.1s ease-in;
}
.tooltip-wrapper {
  position: relative;
  color: inherit;
}
.tooltip-wrapper:hover .tooltip,
.tooltip-wrapper:active .tooltip-wrapper,
.tooltip-wrapper:hover::after,
.tooltip-wrapper:active::after {
  display: inline-block;
}
.tooltip-wrapper::after {
  display: none;
  position: absolute;
  z-index: 2;
  bottom: 18px;
  right: -4px;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f6f6f6;
}
.tooltip {
  display: none;
  position: absolute;
  z-index: 1;
  bottom: 27px;
  right: -60px;
  width: 200px;
  background-color: #f6f6f6;
  /* border: 1px solid #bbb; */
  padding: 15px 8px;
  font-style: normal;
  font-size: 12px;
  border-radius: 5px;
  font-weight: normal;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.13);
}
.w-tooltip {
  background-color: #f6f6f6;
  border-radius: 5px;
  font-weight: normal;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.13);
}
.w-tooltip .inner {
  font-style: normal;
  font-size: 12px;
}
.w-tooltip .title {
  margin-bottom: 5px;
}
.w-tooltip .arrow {
  border-bottom: 15px solid #f6f6f6 !important;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}
.button-primary {
  font-weight: bold;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #22529C;
  background: #22529C;
  color: white;
}
.button-primary:hover,
.button-primary:active {
  background-color: #3775d3;
  border: 1px solid #3775d3;
}
.button-large {
  padding: 15px 70px;
}
.cl-h1 {
  font-size: 20px;
  font-weight: normal;
  color: #222;
}
@media (min-width: 768px) {
  .cl-h1 {
    font-size: 30px;
  }
}
.cl-h2 {
  font-size: 20px;
  font-weight: normal;
  color: #222;
}
@media (min-width: 768px) {
  .cl-h2 {
    font-size: 26px;
  }
}
.cl-h3 {
  font-size: 18px;
  font-weight: normal;
  color: #222;
}
@media (min-width: 768px) {
  .cl-h3 {
    font-size: 20px;
  }
}
.top-header-wrapper {
  background: #f1f2f3;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f1f2f3 0%, #EFEFF0 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f1f2f3 0%, #EFEFF0 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f1f2f3 0%, #EFEFF0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f2f3', endColorstr='@gray-light', GradientType=0);
  /* IE6-9 */
  margin-bottom: 30px;
}
.top-header {
  color: #222;
  font-size: 14px;
  padding: 20px 0;
}
@media (max-width: 1023px) {
  .top-header {
    height: 70px;
    box-sizing: border-box;
  }
}
.top-header.menu-is-active {
  height: auto;
  min-height: 100vh;
}
.top-header a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.1s ease-in;
}
.top-header a:hover,
.top-header a:active {
  color: #555555;
}
.top-header-logo {
  display: inline-block;
  width: 62px;
  height: auto;
  margin-right: 25px;
}
@media (min-width: 1024px) {
  .top-header-logo {
    width: 78px;
  }
}
@media (max-width: 1023px) {
  .top-header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top-header-logo img {
  width: 100%;
}
@media (min-width: 1024px) {
  .top-header-content {
    display: flex;
    align-content: space-between;
    justify-content: space-between;
  }
}
.top-header-nav {
  display: inline-block;
}
@media (max-width: 1023px) {
  .top-header-nav {
    display: none;
    clear: both;
  }
  .menu-is-active .top-header-nav {
    display: block;
    clear: both;
  }
}
.top-header-nav li {
  display: block;
}
@media (min-width: 1024px) {
  .top-header-nav li {
    display: inline-block;
  }
}
.top-header-nav li.active a:after {
  background: #222;
  transition: background 0.1s ease-in;
}
.top-header-nav li a:hover:after,
.top-header-nav li a:active:after {
  background: #555555;
  transition: background 0.1s ease-in;
}
.top-header-nav a {
  position: relative;
  display: inline-block;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  margin: 0 17px;
  padding: 9px 0;
}
@media (max-width: 1023px) {
  .top-header-nav a {
    padding: 10px 0;
  }
}
.top-header-nav a:after {
  position: absolute;
  left: 0;
  bottom: 12px;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
}
@media (min-width: 1024px) {
  .top-header-nav a:after {
    bottom: 6px;
  }
}
@media (max-width: 1023px) {
  .top-header-menu {
    display: inline-block;
    float: left;
  }
}
@media (min-width: 1024px) {
  .top-header-left {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .top-header-right {
    display: flex;
    align-items: center;
  }
}
.top-header-cart {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}
@media (min-width: 1024px) {
  .top-header-cart {
    order: 2;
  }
}
@media (max-width: 1023px) {
  .top-header-cart {
    display: inline-block;
    float: right;
  }
}
@media (max-width: 767px) {
  .top-header-cart {
    margin-left: 10px;
  }
}
.top-header-cart:hover,
.top-header-cart:active {
  transition: color 0.1s ease-in;
  color: #555555;
}
@media (max-width: 1023px) {
  .top-header-cart.top-header-cart-empty {
    margin-top: 6px;
  }
}
.top-header-cart .fa-shopping-cart {
  font-size: 16px;
}
.top-header-cart-count {
  position: absolute;
  top: -6px;
  display: inline-block;
  background: #EC2029;
  border-radius: 50%;
  text-align: center;
  min-width: 15px;
  height: 15px;
  line-height: 15px;
}
.top-header-cart-empty .top-header-cart-count {
  display: none;
}
.top-header-cart-value {
  display: inline;
  color: #fff;
}
.top-header-register,
.top-header-user {
  color: inherit;
  position: relative;
}
@media (min-width: 1024px) {
  .top-header-register,
  .top-header-user {
    order: 3;
  }
}
@media (max-width: 1023px) {
  .top-header-register,
  .top-header-user {
    display: none;
    float: right;
  }
  .menu-is-active .top-header-register,
  .menu-is-active .top-header-user {
    display: block;
  }
}
.top-header-register a,
.top-header-user a {
  padding: 5px 0;
}
@media (min-width: 1024px) {
  .top-header-register a,
  .top-header-user a {
    padding: 10px 0;
  }
}
.top-header-user.user-block {
  width: auto;
  background: transparent;
}
.top-header-user .user-name {
  display: inline-block !important;
}
.top-header-user .user-name a {
  width: auto;
  padding: 0;
}
.top-header-user .user-image {
  text-align: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}
.top-header-user .user-image .fa-user {
  font-size: 18px;
  line-height: 36px;
  color: #222;
}
.top-header-user .dropdown-select {
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(34, 34, 34)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: center center;
}
.top-header-user .dropdown-content {
  display: none;
  position: absolute;
  z-index: 4;
  top: 45px !important;
  right: 0;
  min-width: 200px;
  background: #fff;
  color: #222;
  border-radius: 0;
}
.top-header-user .dropdown-content li {
  padding: 0;
}
.top-header-user .dropdown-content li a {
  display: block;
  color: inherit;
  padding: 10px 20px;
  font-size: 14px;
}
.top-header-user.user-dropdown-active .dropdown-content {
  display: inline-block !important;
}
.top-header-search-wrapper {
  position: relative;
}
@media (min-width: 1024px) {
  .top-header-search-wrapper {
    order: 1;
    margin-left: 20px;
  }
}
@media (max-width: 1023px) {
  .top-header-search-wrapper {
    display: inline-block;
    float: right;
    width: 70px;
    height: 30px;
  }
  .top-header-search-wrapper.is-active {
    transition: width 0.2s ease-in;
    width: 100%;
    height: 70px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
  }
  .menu-is-active .top-header-search-wrapper {
    display: block;
    position: relative;
    width: 100%;
    float: none;
    clear: both;
    padding: 20px 0;
  }
}
.top-header-search-wrapper.query-is-active .icon-search {
  visibility: hidden;
}
.top-header-search-wrapper.query-is-active .top-header-search-clear {
  visibility: visible !important;
  display: inline-block;
}
.top-header-search-wrapper .icon-search {
  font-size: 18px;
  line-height: 18px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .top-header-search-wrapper .icon-search {
    cursor: pointer;
  }
}
.top-header-search {
  border: none;
  padding: 10px;
  border-radius: 5px;
  min-width: 195px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .top-header-search {
    background: transparent;
    width: 100%;
    min-width: 100%;
    font-size: 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  .is-active .top-header-search {
    font-size: inherit;
    background: #fff;
    height: 100%;
  }
  .menu-is-active .top-header-search {
    font-size: inherit;
    background: #fff;
  }
}
.top-header-search:focus + .icon-search,
.top-header-search:active + .icon-search {
  display: none;
}
.top-header-search-clear {
  position: absolute;
  background: transparent;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .top-header-language {
    order: 4;
  }
}
@media (max-width: 1023px) {
  .top-header-language {
    display: none;
  }
  .menu-is-active .top-header-language {
    display: block;
    margin-top: 0;
  }
}
.top-header-language select {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(34, 34, 34)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
  border: none;
}
.top-header-language select:hover,
.top-header-language select:active {
  transition: color 0.1s ease-in;
  color: #555555;
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(85, 85, 85)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}
.top-header-timer {
  font-size: 10px;
  line-height: 1;
}
.top-header-cart-empty .cart_timer_wrapper {
  display: none;
}
.top-header-profile-menu {
  display: none;
  border-top: 1px solid #DFE2E4;
  margin-top: 10px;
  padding-top: 10px;
  overflow: hidden;
}
.menu-is-active .top-header-profile-menu {
  display: block;
}
.top-header-profile-menu a {
  display: block;
  font-weight: bold;
  padding: 10px 17px;
}
@media (min-width: 1024px) {
  .hide-header-large {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .hide-header-mobile {
    display: none !important;
  }
}
.homepage-slider {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 10px;
}
.homepage-slider img {
  width: 100%;
}
.homepage-slider .bx-controls.bx-has-pager {
  width: 100%;
  position: relative;
  bottom: 0;
  z-index: 2;
}
.homepage-slider .bx-controls.bx-has-pager .bx-pager {
  box-sizing: border-box;
  position: relative;
  top: 0;
  padding: 20px;
}
.homepage-slider .bx-controls.bx-has-pager .bx-pager a.bx-pager-link {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #DFE2E4 !important;
  margin: 0 15px 0 15px;
}
.homepage-slider .bx-controls.bx-has-pager .bx-pager a.bx-pager-link.active {
  background: #B4B4B4 !important;
}
.filters-wrapper {
  display: flex;
}
.filter-results {
  width: 100%;
}
@media only screen and (min-width: 651px) {
  .filter-results {
    width: calc(100% - 170px);
  }
}
.side-filters {
  box-sizing: border-box;
  padding-right: 50px;
}
.side-filter-list {
  list-style-type: none;
  max-height: 0;
  overflow: hidden;
  overflow-y: auto;
  transition: all 0.2s ease-in;
}
.side-filter-active .side-filter-list {
  max-height: 600px;
}
.side-filter-list a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: #222;
  padding: 10px 15px;
  border-radius: 5px;
}
.side-filter-list a:hover,
.side-filter-list a:active {
  background: #F1F2F3;
  transition: background 0.1s ease-out;
}
.filter-selected a {
  background: #DFE2E4;
}
.side-filter-title {
  position: relative;
  display: block;
  padding: 7px 25px 7px 0;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
  color: #22529C;
}
.side-filter-title:after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  margin-top: -12px;
  right: 0;
  background-repeat: no-repeat;
  background-position: center right;
}
.side-filter-active .side-filter-title:after {
  transform: rotate(180deg);
}
@media only screen and (max-width: 650px) {
  .hide-filters-smaller-screen {
    display: none !important;
  }
}
@media only screen and (min-width: 651px) {
  .hide-filters-larger-screen {
    display: none !important;
  }
}
.filters-mobile-wrapper {
  margin-bottom: 25px;
}
.filters-mobile {
  overflow-y: hidden;
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  padding-bottom: 10px;
}
.filter-mobile-clear {
  display: inline-block;
  float: left;
  border-radius: 50%;
  background: #DFE2E4;
  padding: 5px 7px;
  margin-right: 5px;
}
.filter-mobile-clear .cross-icon {
  width: 16px;
}
.filter-mobile-clear .cross-icon:after,
.filter-mobile-clear .cross-icon:before,
.filter-mobile-clear .cross-icon div {
  height: 2px;
}
.filter-mobile-clear .cross-icon:after {
  transform: translateY(-4px) rotate(-135deg);
}
.filter-mobile {
  box-sizing: border-box;
  max-width: 110px;
  display: inline-block;
  background: transparent;
  border: 1px solid #22529C;
  color: #22529C;
  margin-bottom: 0;
  vertical-align: middle;
  width: auto;
  font-size: 12px;
  font-weight: normal;
  padding: 7px 20px 7px 15px;
  margin: 0 5px;
  -moz-appearance: none;
  /* Firefosx */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(34,82,156)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 2px;
  border-radius: 5px;
}
.filter-mobile.filter-mobile-active {
  background: #DFE2E4;
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(34,34,34)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 2px;
  border: 1px solid #DFE2E4;
  color: #222;
}
.actual_events_head_wrapper .actual_events_head_contrtols {
  margin-bottom: 35px;
}
.actual_events_head_wrapper .actual_events_head_contrtols {
  padding: 0;
  background: transparent;
}
.actual_events_head_wrapper .actual_events_head_contrtols .link_action {
  background: transparent;
  border: 1px solid #22529C;
  color: #22529C;
  border-radius: 5px;
  font-weight: normal;
}
.actual_events_head_wrapper .actual_events_head_contrtols .link_action span {
  color: #22529C;
}
.actual_events_head_wrapper .actual_events_head_contrtols .input_action {
  background: transparent;
  border: 1px solid #22529C;
  border-radius: 5px;
  color: #22529C !important;
  font-weight: normal;
}
.actual_events_head_wrapper .actual_events_head_contrtols .input_action.input_action_date_wrapper:after {
  color: inherit;
}
.actual_events_head_wrapper .actual_events_head_contrtols .input_action_date {
  cursor: pointer;
}
.actual_events_head_wrapper .actual_events_head_contrtols .input_action_date::-webkit-input-placeholder {
  /* Edge */
  color: #22529C;
}
.actual_events_head_wrapper .actual_events_head_contrtols .input_action_date:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #22529C;
}
.actual_events_head_wrapper .actual_events_head_contrtols .input_action_date::placeholder {
  color: #22529C;
}
.actual_events_head_wrapper .actual_events_head_contrtols .input_action_date.input_action_date_wrapper:after {
  color: #22529C;
}
.actual_events_head_wrapper .actual_events_head_contrtols .link_value {
  color: #22529C;
}
.actual_events_head_wrapper .actual_events_head_contrtols .link_active {
  background: #DFE2E4;
  border: 1px solid #DFE2E4;
  color: #222;
}
.actual_events_head_wrapper .actual_events_head_contrtols .link_active .link_value {
  background: inherit;
  color: #222 !important;
}
.actual_events_head_wrapper .actual_events_head_contrtols .link_active.input_action.input_action_date_wrapper:after {
  color: #222;
}
.actual_events_head_wrapper .actual_events_head_contrtols .link_active.input_action.input_action_date_wrapper .input_action_date::-webkit-input-placeholder {
  /* Edge */
  color: #222;
}
.actual_events_head_wrapper .actual_events_head_contrtols .link_active.input_action.input_action_date_wrapper .input_action_date:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #222;
}
.actual_events_head_wrapper .actual_events_head_contrtols .link_active.input_action.input_action_date_wrapper .input_action_date::placeholder {
  color: #222;
}
.events-list {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  align-items: flex-start;
  /*align-content: center;
  text-align: center;*/
  margin-bottom: 30px;
}
.event-item {
  display: inline-block;
  position: relative;
  font-size: 14px;
  line-height: 16px;
  overflow: hidden;
  background: #EFEFF0;
  text-align: left;
}
@media (max-width: 399px) {
  .filter-results .event-item {
    width: 100%;
    margin-right: 0;
  }
  .filter-results .event-item:nth-child(n + 2) {
    margin-top: 40px;
  }
}
@media (min-width: 400px) and (max-width: 799px) {
  .filter-results .event-item {
    width: 45%;
    margin-right: 5%;
  }
  .filter-results .event-item:nth-child(2n + 2) {
    margin-right: 0;
  }
  .filter-results .event-item:nth-child(n + 3) {
    margin-top: 40px;
  }
}
@media (min-width: 1050px) {
  .filter-results .event-item {
    width: 22%;
    margin-right: 4%;
  }
  .filter-results .event-item:nth-child(4n + 4) {
    margin-right: 0;
  }
  .filter-results .event-item:nth-child(n + 5) {
    margin-top: 40px;
  }
}
@media (min-width: 800px) and (max-width: 1049px) {
  .filter-results .event-item {
    width: 30%;
    margin-right: 5%;
  }
  .filter-results .event-item:nth-child(3n + 3) {
    margin-right: 0;
  }
  .filter-results .event-item:nth-child(n + 4) {
    margin-top: 40px;
  }
}
.event-item a {
  color: #222;
}
.event-item h2 {
  font-size: 16px;
}
.event-item-image {
  width: 100%;
  height: 0;
  padding-top: 141%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  transition: all 0.1s ease-in;
}
.event-item:hover .event-item-image {
  background-size: 110% auto;
  transition: background 0.2s ease-in;
}
.event-item-image-horizontal {
  position: absolute;
  top: 0;
  width: 100%;
  padding-top: 85%;
  height: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
.event-item:hover .event-item-image-horizontal {
  background-size: 110% auto;
  transition: background 0.2s ease-in;
}
.event-item-content {
  display: block;
  position: relative;
}
.sold-out .event-item-content::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
.event-item-tag {
  display: inline-block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: inherit;
  background: #F6F6F6;
  padding: 10px 20px;
  box-sizing: border-box;
}
.sold-out .event-item-tag {
  color: #fff;
  background: #383838;
}
.event-item-text {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(246, 246, 246, 0.95);
  padding: 10px;
  box-sizing: border-box;
  transition: all 0.1s ease-in;
}
.event-item:hover .event-item-text {
  background: #f6f6f6;
  transition: all 0.1s ease-in;
}
.event-item-title {
  margin-top: 5px;
  min-height: 36px;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 20px;
}
@media (min-width: 1200px) {
  .event-item-title {
    margin-top: 10px;
  }
}
.event-item-date {
  display: block;
  color: #22529C;
}
.event-item-date b {
  font-weight: normal;
}
.event-item-place {
  display: block;
  padding-top: 5px;
}
@media (min-width: 1200px) {
  .event-item-place {
    padding-top: 10px;
  }
}
.search-items {
  margin-top: 30px;
}
.search-item-content {
  display: flex;
  align-items: flex-start;
  color: #222;
  font-size: 16px;
  border-top: 1px solid #DFE2E4;
  padding: 20px 0;
}
.search-item-content:hover,
.search-item-content:active {
  transition: background 0.1s ease-in;
  background-color: #F6F6F6;
}
.search-item-image {
  width: 94px;
  min-width: 94px;
  min-height: 70px;
  display: flex;
  align-items: center;
}
.search-item-bus .search-item-image {
  height: 94px;
  min-width: 94px;
  background: #F6F6F6 url("../images/bus.svg") no-repeat center center;
}
.search-item-image img {
  width: 100%;
  height: auto;
}
.search-item-text {
  padding: 10px 30px;
}
.search-item-text .highlight {
  font-weight: bold;
}
.search-item-title {
  font-weight: bold;
  font-size: 16px;
}
.search-item-time {
  min-height: 18px;
  padding-top: 5px;
  display: none;
}
@media (min-width: 360px) {
  .search-item-time {
    display: block;
  }
}
.search-item-description {
  padding-top: 5px;
  display: none;
}
@media (min-width: 360px) {
  .search-item-description {
    display: block;
  }
}
.main-footer {
  background: #EFEFF0;
  color: #B4B4B4;
  font-size: 16px;
}
.main-footer a {
  color: inherit;
  text-decoration: none;
}
.main-footer-content {
  padding: 30px 0;
}
@media (min-width: 1025px) {
  .main-footer-content {
    display: flex;
    justify-content: space-between;
    padding: 35px 0;
  }
}
@media (max-width: 1024px) {
  .main-footer-content {
    justify-content: space-space-between;
  }
}
@media (max-width: 1024px) {
  .main-footer-social {
    text-align: center;
    padding-top: 30px;
  }
}
.main-footer-social a {
  padding: 0 10px;
}
.main-footer-copy {
  border-top: 1px solid #DFE2E4;
  text-align: center;
  padding: 35px 0 35px;
}
.footer-cols {
  display: flex;
}
@media (max-width: 767px) {
  .footer-cols {
    flex-wrap: wrap;
  }
  .footer-cols .footer-col {
    width: 50%;
  }
}
@media (max-width: 650px) {
  .footer-cols .footer-col {
    width: 100%;
  }
}
.footer-col {
  box-sizing: border-box;
  padding-right: 5%;
}
.footer-col:last-child {
  padding-right: 0;
}
.footer-col a {
  display: block;
  padding: 8px 0;
  white-space: nowrap;
}
.footer-col a:hover,
.footer-col a:active {
  text-decoration: underline;
  transition: color 0.1s ease-in;
  color: #818181;
}
.filter-results .pagination-fr {
  margin-top: 20px;
}
.pagination-fr .pages a {
  border: none;
  color: #22529C;
  font-size: 14px;
}
.pagination-fr .pages a.active {
  background: #DFE2E4;
  border-radius: 5px;
  color: #222;
}
.pagination-fr .pages a:hover,
.pagination-fr .pages a:active {
  background: #F1F2F3;
  border-radius: 5px;
}
.pagination-fr .pages span {
  color: #BBBBBB !important;
}
