@charset "UTF-8";
.select-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  line-height: 24px;
  padding: 0 !important; }
  .select-dropdown .value {
    border: 1px solid #000000;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    padding: 0 23px 0 10px;
    display: flex;
    align-items: center; }
  .select-dropdown .list {
    padding: 5px 5px;
    border: 1px solid #dbdbdb;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    transition: 0.1s ease all;
    top: 100%;
    background-color: #ffffff;
    z-index: 100;
    min-width: 100%; }
    @media (min-width: 373px) {
      .select-dropdown .list {
        right: 0;
        left: auto; } }
    @media (min-width: 638px) {
      .select-dropdown .list {
        right: auto;
        left: 0; } }
    .select-dropdown .list .item {
      margin-bottom: 0;
      max-width: 40vw;
      line-height: 1;
      text-align: left;
      padding: 5px 15px;
      white-space: normal;
      break-inside: avoid-column; }
      .select-dropdown .list .item:hover {
        background-color: #f8f8f8; }
      @media (min-width: 373px) {
        .select-dropdown .list .item {
          white-space: nowrap; } }
  .select-dropdown.opened .list {
    opacity: 1;
    visibility: visible; }

.events-row {
  display: flex;
  flex-direction: column-reverse; }
  @media (min-width: 992px) {
    .events-row {
      flex-direction: row; } }

.events-filter-top {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px; }
  .events-filter-top .item {
    padding: 6px 15px;
    margin-bottom: 15px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: center; }
    .events-filter-top .item label {
      font-weight: normal; }
  .events-filter-top .select-btn-time input {
    margin: 0 5px 0 15px; }
  .events-filter-top .select-btn-time label {
    margin: 0; }
  .events-filter-top .select-btn {
    margin-left: 15px; }
    .events-filter-top .select-btn.active, .events-filter-top .select-btn:hover {
      background-color: #c74f1e;
      color: #ffffff; }
  .events-filter-top .select-dropdown {
    margin-left: 15px;
    position: relative; }
    .events-filter-top .select-dropdown:after {
      pointer-events: none;
      content: "";
      display: block;
      background-image: url("/images/icon-arrow-bottom.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      position: absolute;
      top: 11px;
      right: 4px;
      width: 15px;
      height: 10px;
      transition: 0.3s ease; }
    .events-filter-top .select-dropdown.opened:after {
      transform: rotate(180deg); }
    .events-filter-top .select-dropdown.active .value {
      border-color: #c74f1e;
      background-color: #c74f1e;
      color: #ffffff; }
    .events-filter-top .select-dropdown.active:after {
      background-image: url("/images/icon-arrow-bottom-w.svg"); }

.events-side-filter {
  margin-top: 40px;
  margin-bottom: 40px; }
  @media (min-width: 342px) {
    .events-side-filter {
      display: flex; } }
  @media (min-width: 992px) {
    .events-side-filter {
      display: block;
      margin: 0; } }
  .events-side-filter .f-col {
    width: 100%; }
  .events-side-filter .title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px; }
  .events-side-filter .block {
    margin-bottom: 30px; }
  .events-side-filter input {
    display: block;
    float: left;
    margin-right: 5px;
    margin-left: 15px; }
  .events-side-filter label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px; }

.events-cont h2.events-list-heading {
  display: block;
  float: none;
  clear: both; }
.events-cont .event-item {
  margin-bottom: 30px;
  display: flex;
  flex-flow: column; }
  .events-cont .event-item img {
    transition: 0.3s ease; }
  .events-cont .event-item.past:not(:hover) .title {
    color: #5c6a7c; }
  .events-cont .event-item.past:not(:hover) .btn {
    background-color: #8f8f8f;
    transition: .3s ease; }
  .events-cont .event-item.past:not(:hover) .date {
    color: #7d8994; }
  .events-cont .event-item.past:not(:hover) img {
    filter: saturate(0.1);
    opacity: 0.9; }
  .events-cont .event-item.past:not(:hover) .item.event-past {
    color: #81685e;
    background: #ebebeb; }
  @media (min-width: 768px) {
    .events-cont .event-item {
      background-color: #f8f8f8;
      flex-flow: row;
      padding: 20px; } }
  .events-cont .event-item .img {
    margin-bottom: 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden; }
    @media (min-width: 768px) {
      .events-cont .event-item .img {
        margin-right: 20px;
        margin-bottom: 0;
        width: 320px; } }
    .events-cont .event-item .img img {
      width: 100%;
      object-fit: contain;
      height: 100%;
      background-color: #d9d9d9; }
      @media (min-width: 768px) {
        .events-cont .event-item .img img {
          margin-right: 20px; } }
  .events-cont .event-item .title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #1f3045;
    text-decoration: none; }
  .events-cont .event-item .date {
    font-size: 16px;
    margin-bottom: 20px; }
  .events-cont .event-item .btn {
    background-color: #c74f1e;
    padding: 10px 40px;
    color: #ffffff;
    border-radius: 0;
    text-decoration: none; }
    .events-cont .event-item .btn:hover {
      color: #ffffff; }
.events-cont .event-item-past {
  padding: 40px 20px 0;
  margin-bottom: 0;
  background-color: #f1f1f1; }
  .events-cont .event-item-past .img {
    margin: 0; }
  .events-cont .event-item-past .content {
    background-color: #fafafa;
    padding: 15px 15px 15px 20px;
    width: 100%; }
  .events-cont .event-item-past:last-of-type {
    padding-bottom: 40px; }

.data-hidden {
  display: none; }

.show-more {
  background-color: #c74f1e;
  color: #ffffff;
  padding: 10px 27px;
  border-radius: 0;
  margin-top: 40px; }
  .show-more:hover {
    color: #ffffff !important; }

.event-badges {
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 768px) {
    .event-badges {
      margin-bottom: 15px; } }
  .event-badges .item {
    background-color: #ebebeb;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 13px; }
  .event-badges .item.event-past {
    color: #81685e;
    background: #f1e9e6; }
  .event-badges .item.event-current {
    display: flex; }
    .event-badges .item.event-current .rec {
      display: block;
      background-color: #c74f1e;
      width: 10px;
      height: 10px;
      border-radius: 16px;
      margin-right: 9px;
      position: relative;
      top: 4px;
      -webkit-animation: 2s blink ease infinite;
      -moz-animation: 2s blink ease infinite;
      animation: 2s blink ease infinite; }

@keyframes blink {
  from,
  to {
    opacity: 0; }
  50% {
    opacity: 1; } }
@-moz-keyframes blink {
  from,
  to {
    opacity: 0; }
  50% {
    opacity: 1; } }
/*
 * ╨б╤В╤А╨░╨╜╨╕╤Ж╨░ ╨╛╨┤╨╜╨╛╨│╨╛ ╨╝╨╡╤А╨╛╨┐╤А╨╕╤П╤В╨╕╤П.
 */
.event-video {
  width: 100%;
  height: auto; }

.event-video {
  margin-bottom: 30px; }

.news-inner .event-badges {
  margin-bottom: 0; }

.event-meta {
  display: flex;
  justify-content: space-between;
  background-color: #f8f8f8;
  padding: 10px 15px;
  margin-bottom: 30px; }
  .event-meta .meta .item-name, .event-meta .meta .item, .event-meta .meta .item-group {
    display: inline-block; }
  .event-meta .meta .item-name {
    font-weight: 700; }
  .event-meta .event-info {
    padding: 8px 15px;
    color: #c74f1e;
    background: #ffefe9; }

.event-image img {
  max-width: 100%;
  margin-bottom: 30px; }

.event-reg-button {
  border-color: #c64f15;
  font-size: 14px;
  padding: 17px 32px;
  margin-bottom: 20px; }

.loading-spinner {
  display: none; }

.loading-spinner {
  margin-top: 30px;
  position: relative;
  width: 24px;
  stroke: #000000; }
  .loading-spinner.red {
    stroke: #F03D32; }
  .loading-spinner:before {
    content: '';
    display: block;
    padding-top: 100%; }

.loading-spinner__circle-svg {
  -webkit-animation: loading-spinner-rotate 1.28973s linear infinite;
  animation: loading-spinner-rotate 1.28973s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; }

.loading-spinner__circle-stroke {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: loading-spinner-dash 2s ease-in-out infinite, loading-spinner-color 8s ease-in-out infinite;
  animation: loading-spinner-dash 2s ease-in-out infinite, loading-spinner-color 8s ease-in-out infinite;
  stroke-linecap: round;
  stroke-width: 5px !important; }

@-webkit-keyframes loading-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes loading-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-webkit-keyframes loading-spinner-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px; } }
@keyframes loading-spinner-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px; } }

/*# sourceMappingURL=events.css.map */
