/* Style for custom Events page */

*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  /* scroll-padding: 1.5rem; */
}
body strong,
body b {
  font-weight: 500;
}
body a {
  color: var(--main-button-color);
}
body a:hover,
body a:focus {
  color: var(--main-button-hover-color);
}
div#main-wrapper {
  padding: 20px;
}
#ast-scroll-top.ast-scroll-top-icon {
  background-color: var(--main-theme-color);
}
.content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Page title */
.page-title-wrapper {
  margin: 20px 20px 2px 10px;
  padding: 5px 0;
}
.page-title-wrapper p {
  margin-bottom: 0.8rem;
}
.page-title-wrapper .page-title {
  margin: 0;
}
.page-title-wrapper .page-title .title {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.page-title-wrapper .separator-parent {
  text-align: left;
  line-height: 0;
}
.page-title-wrapper .separator {
  text-align: left;
  margin: 1px 0 10px 0;
  border-top: 3px solid var(--main-alt-color);
  width: 10%;
  display: inline-block;
}
.page-title-wrapper .page-description p {
  line-height: 1.5em;
  font-size: 15px;
  padding-bottom: 1px;
}
.page-title-wrapper .page-description,
.page-title-wrapper .timezone,
.page-title-wrapper .timezone p {
  margin-bottom: 2px;
}

/* Event Posts */
.event-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/*Upcoming events style */
.event-item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;

  --element-gap: 0.41176470588rem;
}

.event-item-wrap .description {
  color: var(--quvent-dark-b-90);
  margin-top: var(--element-gap);
  font-size: 0.88235rem;
  line-height: 1.8;
}

.event-item-wrap .left-wrap {
  width: 33%;
  border-radius: var(--global-card-border-radius);
  overflow: hidden;
}
.event-item-wrap .img-container {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  /* padding: 75% 0 0 0; */
  padding: 66.667% 0 0 0;
}
.event-item-wrap .img-container > a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.event-item-wrap .img-container img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.event-item-wrap.on-demand .img-container::after {
  position: absolute;
  content: "\f04b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2.5rem;
  color: rgb(252 252 252);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.event-item-wrap.on-demand .img-container .on-demand-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.5rem;
}
.event-item-wrap .img-container .event-date {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
}
.event-item-wrap .img-container .event-date {
  color: #fff;
  background: #333;
  display: block;
  width: 70px;
  font-size: 18px;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  padding: 15px 16px;
  border-radius: calc(var(--global-button-border-radius) * 0.75);
}
.event-item-wrap .right-wrap {
  width: 67%;
  position: relative;
  margin-left: -100px;
  background: #fff;
  padding: 1.5rem 1.8rem;
  text-align: left;
  box-shadow: 0 0 10px rgba(0 0 0 / 0.1);
  border-radius: var(--global-card-border-radius);
  /* z-index: 99; */
}
/* .event-item-wrap .top-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
} */

.event-item-wrap .tags,
.event-item-wrap .status-tag-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.375rem;
  /* margin-left: 0.1rem; */
  letter-spacing: 0.4px;
}

.event-item-wrap .tag-wrap {
  display: flex;
  border-radius: calc(var(--global-button-border-radius) * 0.75);
  line-height: 1;
  font-family: var(--heading-font-family, Lato, Sans-serif);
  font-weight: 600;
  font-size: 0.70588rem;
  /* text-transform: uppercase; */
  cursor: default;
  white-space: nowrap;
}
.event-item-wrap .tag-wrap a {
  padding: 4px 7px;
}
.event-item-wrap .tags .delimeter {
  line-height: 1;
}
.event-item-wrap .tag-wrap.category {
  /* background-color: var(--category-bg-color); */
  border-color: var(--category-text-color);
  border-width: 1px;
  border-style: solid;
}
.event-item-wrap .tag-wrap.category a {
  color: var(--category-text-color);
  padding: 3px 7px;
}
.event-item-wrap .tag-wrap.category a:hover,
.event-item-wrap .tag-wrap.category a:focus {
  background-color: var(--category-text-color);
  color: #fff;
}
.event-item-wrap .tag-wrap.in-person {
  /* border: 2px solid var(--in-person-event-color); */
  background-color: var(--in-person-event-color);
}
.event-item-wrap .tag-wrap.online {
  /* border: 2px solid var(--online-event-color); */
  background-color: var(--online-event-color);
}
.event-item-wrap .tag-wrap.in-person a {
  padding: 4px 7px;
  /* color: var(--in-person-event-color); */
  color: #fff;
}
.event-item-wrap .tag-wrap.online a {
  padding: 4px 7px;
  /* color: var(--online-event-color); */
  color: #fff;
}
/* .event-item-wrap .tag-wrap.in-person a:hover,
.event-item-wrap .tag-wrap.in-person a:focus {
  color: #fff;
  background-color: var(--in-person-event-color);
}
.event-item-wrap .tag-wrap.online a:hover,
.event-item-wrap .tag-wrap.online a:focus {
  color: #fff;
  background-color: var(--online-event-color);
} */

/*Status tags */
.event-item-wrap .status-tag,
.event-item-wrap .free-tag {
  /* line-height: 1; */
  /* border-radius: calc(var(--global-button-border-radius) * 0.75); */
  padding: 4px 7px;
  /* cursor: default; */
}

.event-item-wrap .status-tag.placeholder {
  width: 3.676470588rem;
  height: 1.176470588rem;
  background-color: var(--quvent-light-85, hsl(0, 0%, 85%));
}
.event-item-wrap .status-tag.placeholder.short {
  width: 2.58352941176rem;
}
.event-item-wrap .status-tag .text,
.event-item-wrap .free-tag .text {
  display: block;
  font-family: var(--heading-font-family, Lato, Sans-serif);
  color: #fff;
  font-size: 0.70588rem;
  font-weight: 600;
  /* letter-spacing: 0.5px; */
  white-space: nowrap;
}
/* Live Now Tag */
.event-item-wrap .live-now-tag {
  background: var(--live-indicator-color, #fe3e2a);
  display: none;
}
.event-item-wrap .live-now-tag.live {
  display: block;
}
.event-item-wrap .ongoing-tag {
  background-color: var(--event-accent-color, #026202);
  display: none;
}
.event-item-wrap .ongoing-tag.live {
  display: block;
}
.event-item-wrap .on-demand-tag {
  background-color: var(--on-demand-color, #2a41a7);
}
.event-item-wrap .concluded-tag {
  background-color: var(--concluded-color, #898b95);
}
.event-item-wrap .replay-tag {
  background-color: var(--replay-color, #7f1bcb);
}
.event-item-wrap .free-tag {
  background-color: var(--free-color);
  text-transform: uppercase;
}

.event-item-wrap .description p {
  margin-bottom: 0;
}

/* .event-item-wrap .time-wrap {
  display: flex;
  align-items: center;
} */
.event-item-wrap .title {
  margin: var(--element-gap) 0 0;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: none;
  line-height: 1.4;
}
.event-item-wrap .title a {
  /* line-height: 1.4; */
  margin: 0;
  padding: 0;
  /* display: block; */
  color: var(--quvent-dark-100, #000000);
}
.event-item-wrap .title a:hover,
.event-item-wrap .title a:focus {
  color: var(--main-button-color);
}
.event-item-wrap .post-meta {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  margin: calc(var(--element-gap) * 0.5) 0;
}

.event-item-wrap .time-wrap h3 {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--quvent-dark-b-90);
  line-height: 1.2;
  padding: 0.15rem 0;
  margin-bottom: 0;
  text-transform: none;
}
.event-item-wrap .time-wrap h3 a {
  color: var(--quvent-dark-b-90);
  font-size: inherit;
  line-height: inherit;
}
/* .event-item-wrap .time-wrap h3 i {
  margin-right: 5px;
} */
.event-item-wrap .bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: var(--element-gap) 0.4rem;
  margin-top: var(--element-gap);
  line-height: 1.3;
  /* font-size: 0.941176rem; */
}
.event-item-wrap .buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  line-height: 1.3;
  font-size: 0.941176rem;
}
/* .event-item-wrap .buttons-wrap a {
  padding: 0.1rem 0;
} */

/*Register buttons */
/* .event-item-wrap .access-link button.quvent-button.plain {
  font-weight: 500;
} */
.event-item-wrap .access-link button.quvent-button.plain {
  position: relative;
  letter-spacing: normal;
  font-size: inherit;
  line-height: inherit;
  display: inline;
  border: none;
  border-radius: 0;
  font-weight: 500;
}
.event-item-wrap .access-link button.button__loading .button-text {
  visibility: hidden;
  opacity: 0;
}
.event-item-wrap .access-link button.button__loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: var(--quvent-dark-60);
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}
/*Button animation */
@keyframes button-loading-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.event-item-wrap .access-link button.quvent-button.plain:disabled {
  color: var(--quvent-dark-60);
  pointer-events: none;
}

.event-item-wrap .buttons-wrap .access-link.acquired a {
  pointer-events: none;
  color: var(--quvent-dark-80);
  font-weight: 400;
}

/*Buttons */
.event-item-wrap .sessions-link,
.event-item-wrap .event-link,
.event-item-wrap .details-link,
.event-item-wrap .access-link {
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.3;
}
.event-item-wrap .buttons-wrap a {
  color: var(--quvent-dark-b-90);
  padding: 0.1rem 0;
}
.event-item-wrap .buttons-wrap a:hover,
.event-item-wrap .buttons-wrap a:focus {
  color: var(--main-button-color);
}
.event-item-wrap .buttons-wrap > .active:not(.details-link) a {
  color: var(--main-button-color);
}
.event-item-wrap .buttons-wrap > .active:not(.details-link) a:hover,
.event-item-wrap .buttons-wrap > .active:not(.details-link) a:focus {
  color: var(--main-button-hover-color);
}
.event-item-wrap .buttons-wrap .access-link.acquired a {
  pointer-events: none;
  color: var(--quvent-dark-80);
}
.event-item-wrap .buttons-wrap .delimiter {
  line-height: 1;
}
.event-item-wrap .details-link i {
  margin-left: 0.5rem;
  -webkit-transition: margin-left 250ms ease;
  -moz-transition: margin-left 250ms ease;
  transition: margin-left 250ms ease;
}
.event-item-wrap .details-link:hover i {
  margin-left: 0.75rem;
}

/* Placeholder used while loading button status */
.event-item-wrap .buttons-wrap .placeholder {
  width: 4.8rem;
  height: 1.228823529rem;
  background-color: var(--quvent-light-85, hsl(0, 0%, 85%));
  border-radius: var(--global-card-border-radius, 7px);
}
.event-item-wrap .buttons-wrap .placeholder.on-demand,
.event-item-wrap .buttons-wrap .placeholder.details {
  width: 7.4rem;
}
.event-item-wrap .buttons-wrap .placeholder.delimeter {
  width: 0.5rem;
  height: 1.2rem;
  background-color: var(--quvent-light-85, hsl(0, 0%, 85%));
  border-radius: var(--global-card-border-radius, 7px);
}

/* ACTIONS */

.action-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.125rem;
  /* margin: 0.65rem 0.2rem; */
  /* align-self: flex-end; */
  margin-left: auto;
}
/* Calendar */
.calendar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 28px;
  width: 28px;
}
.calendar-link a {
  /* display: block; */
  color: var(--quvent-dark-60);
  text-align: center;
  line-height: 1;
}
.calendar-link span.text {
  position: absolute;
  bottom: 100%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0);
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: var(--global-button-border-radius, 5px);
  color: #fff;
  width: max-content;
  height: auto;
  font-size: 13px;
  line-height: 1.2;
  padding: 4px 7px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 2;
  letter-spacing: 0;
  text-transform: none;
}
.calendar-link a:hover,
.calendar-link a:focus {
  color: var(--quvent-dark-80);
}
.calendar-link a:hover .text {
  opacity: 1;
  visibility: visible;
}
/* Favorite */
.event-item-wrap .favorite {
  display: flex;
  align-items: center;
  /* margin-left: auto; */
}
.event-item-wrap .simplefavorite-button,
.event-item-wrap .simplefavorite-button-custom {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  height: 28px;
  width: 28px;
  padding: 0;
  color: #e8e8e8;
  color: var(--quvent-dark-60);
  background: transparent;
  /* border-radius: 100%; */
  border-radius: var(--global-button-border-radius);
  opacity: 0.8;
}
.event-item-wrap .simplefavorite-button:hover,
.event-item-wrap .simplefavorite-button-custom:hover {
  opacity: 1;
}
.event-item-wrap .simplefavorite-button:focus-visible,
.event-item-wrap .simplefavorite-button-custom:focus-visible {
  outline: 1px dotted rgb(50 50 50);
}
.event-item-wrap .simplefavorite-button .text,
.event-item-wrap .simplefavorite-button-custom .text {
  position: absolute;
  bottom: 100%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0);
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: var(--global-button-border-radius, 5px);
  color: #fff;
  width: auto;
  height: auto;
  font-size: 13px;
  line-height: 1.2;
  padding: 4px 7px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 2;
  letter-spacing: 0;
  text-transform: none;
}

.event-item-wrap .simplefavorite-button-custom:hover .text,
.event-item-wrap .simplefavorite-button:hover .text {
  opacity: 1;
  visibility: visible;
}

.event-item-wrap .simplefavorite-button i,
.event-item-wrap .simplefavorite-button-custom i {
  font-size: 18px;
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  line-height: 28px;
  right: -1px;
  top: 0;
}

.event-item-wrap .simplefavorite-button-custom.loading,
.event-item-wrap .simplefavorite-button.loading {
  margin-top: auto;
  margin-bottom: auto;
}

.event-item-wrap .simplefavorite-button-custom.active,
.event-item-wrap .simplefavorite-button.active {
  color: #ff1b30;
  opacity: 1;
}
.event-item-wrap .sf-icon-spinner-wrapper {
  display: inline-block;
  min-width: 1em;
  min-height: 1em;
  position: revert;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
}

.event-item-wrap .sf-icon-spinner {
  -webkit-animation: sf_rotate linear 2s infinite;
  animation: sf_rotate linear 2s infinite;
  position: absolute;
  top: 1px;
  left: 0;
  background: 0 0 !important;
  font-size: 18px !important;
}

@-webkit-keyframes sf_rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes sf_rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

/* SEARCH AND FILTER STYLE */
/* This is styling the dropdown filters which are vertically aligned by default*/

/*Fix dropdown arrow */
/* .searchandfilter select {
  background-position-y: 50%;
  background-image: none;
  -webkit-appearance: auto;
  appearance: auto;
} */

form.searchandfilter > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content:space-around; */
  flex-wrap: wrap;
  width: 100%;
  margin-left: 0;
}
form.searchandfilter ul li {
  margin: 2px 10px;
  max-width: 100%;
}

.searchandfilter .sf-field-search INPUT:focus-visible {
  outline: var(--quvent-dark-70, #4a4a4a) auto 1px;
}
.searchandfilter input,
.searchandfilter select {
  border-radius: calc(var(--global-button-border-radius) * 0.75);
  border: 1px solid var(--quvent-light-60, #999);
  transition: all 0s ease 0s;
  color: var(--quvent-dark-80);
}

/* SEARCH BAR */
form.searchandfilter .sf-field-search {
  clear: both;
  /*     width: 100%; */
  padding: 0;
  margin-left: auto;
  margin-right: 0;
  justify-content: end;
  text-align: right;
  white-space: nowrap;
}
.sf-field-search .sf-input-text {
  background-color: var(--quvent-light-100);
  /* padding: 0.8em 0.5em; */
  padding: 0.6em 1.8em 0.6em 0.8em;
  line-height: 1;
  font-size: 15px;
  color: var(--quvent-dark-80);
  /* height: 22px; */
}

/* This is styling the search placeholder text*/
.searchandfilter INPUT.sf-input-text::placeholder {
  color: var(--quvent-light-60, #999);
}

/* This is adding the magnifying glass to the search box*/
.searchandfilter .sf-field-search::after {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #030506;
  font-size: 14px;
  z-index: 1;
  position: relative;
  left: -28px;
  top: 0px;
}

/* RADIO BUTTONS STYLING AS TABS */

form.searchandfilter
  .sf-field-post-meta-schedule_item_time_start_datetime_hidden
  ul {
  display: flex;
  flex-direction: row;
  justify-content: left;
  width: auto;
}
form.searchandfilter
  .sf-field-post-meta-schedule_item_time_start_datetime_hidden
  ul
  li {
  margin: 0;
  padding: 0;
}
form.searchandfilter
  .sf-field-post-meta-schedule_item_time_start_datetime_hidden {
  clear: both;
  /*display: inline-block;
	  width: 60%; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding: 0;
  position: relative;
  flex-basis: 80%;
  margin-left: 0;
  margin-right: 0;
}
.sf-field-post-meta-schedule_item_time_start_datetime_hidden
  input.sf-input-radio {
  position: absolute;
  left: -99999em;
  top: -99999em;
}

.sf-field-post-meta-schedule_item_time_start_datetime_hidden
  input.sf-input-radio
  + label {
  cursor: pointer;
  float: left;
  border: 0px solid #aaa;
  border-bottom: 0;
  background-color: #fff;
  margin-right: -1px;
  padding: 0.5em 1em !important;
  position: relative;
  font-family: var(--heading-font-family, Lato, Sans-serif);
  font-weight: 600;
  font-size: 0.9em;
}
/*
  .sf-field-post-meta-schedule_item_time_start_datetime_hidden input.sf-input-radio + label:hover {
	background-color: #eee;
  }
  */
.sf-field-post-meta-schedule_item_time_start_datetime_hidden
  input.sf-input-radio:checked
  + label {
  box-shadow: 0 3px 0 -1px #fff, inset 0 -5px 0 -1px var(--main-theme-color);
  background-color: var(--quvent-light-100);
  z-index: 1;
}

/* EVENT TYPE SELECTION BOXES */

form.searchandfilter .sf-field-taxonomy-event_type_filter {
  /* margin-left: 0;
  margin-bottom: 2px; */
  padding-bottom: 0;
}
form.searchandfilter .sf-field-taxonomy-event_type_filter ul {
  justify-content: left;
  flex-direction: row;
  display: flex;
  flex-wrap: nowrap;
}
/* form.searchandfilter .sf-field-taxonomy-event_type_filter li {
  margin: 2px 14px 2px 0;
} */

.sf-field-taxonomy-event_type_filter .sf-input-checkbox {
  display: flex;
  justify-content: space-between;
}

.sf-field-taxonomy-event_type_filter .sf-input-checkbox:not(:checked),
.sf-field-taxonomy-event_type_filter .sf-input-checkbox:checked {
  position: absolute;
  left: -9999px;
}

form.searchandfilter
  .sf-field-taxonomy-event_type_filter
  label.sf-label-checkbox {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.95em;
  font-family: var(--heading-font-family, Lato, Sans-serif);
  padding-left: 0;
}
/* checkbox effect #4 */
.searchandfilter
  li[data-sf-field-input-type="checkbox"]
  .sf-input-checkbox:not(:checked)
  + label:before,
.searchandfilter
  li[data-sf-field-input-type="checkbox"]
  .sf-input-checkbox:checked
  + label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #5a5a5a;
  box-sizing: border-box;
  border-radius: 3px;
  margin-right: 10px;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0.2s;
}

.searchandfilter
  li[data-sf-field-input-type="checkbox"]
  .sf-input-checkbox:not(:checked)
  + label:after,
.searchandfilter
  li[data-sf-field-input-type="checkbox"]
  .sf-input-checkbox:checked
  + label:after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  display: flex;
  height: 100%;
  align-items: center;
  position: absolute;
  top: 0;
  left: 2px;
  color: var(--main-theme-color);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  transform-origin: center center;
  opacity: 0;
}

.searchandfilter
  li[data-sf-field-input-type="checkbox"]
  .sf-input-checkbox:not(:checked)
  + label:after {
  transform: scale(0);
}
.searchandfilter
  li[data-sf-field-input-type="checkbox"]
  .sf-input-checkbox:checked
  + label:before {
  transform: scale(0);
  opacity: 0;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
}
.searchandfilter
  li[data-sf-field-input-type="checkbox"]
  .sf-input-checkbox:checked
  + label:after {
  transform: scale(1);
  opacity: 1;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.57, 1.9, 0, 1.52);
  transition-delay: 0.2s;
}

/* CONCLUDED SELECTION BOXES */

form.searchandfilter .sf-field-taxonomy-event_status {
  flex-basis: 25%;
  margin-bottom: 5px;
  padding-bottom: 0;
  margin: 2px 20px 2px 0;
}
/* Hide Upcoming and ongoing */
form.searchandfilter .sf-field-taxonomy-event_status .sf-item-101,
form.searchandfilter .sf-field-taxonomy-event_status .sf-item-102 {
  display: none;
}
form.searchandfilter .sf-field-taxonomy-event_status ul {
  justify-content: left;
  flex-direction: row;
}
form.searchandfilter .sf-field-taxonomy-event_status label {
  padding-left: 0;
}
.sf-field-taxonomy-event_status .sf-input-checkbox {
  display: flex;
  justify-content: space-between;
}

.sf-field-taxonomy-event_status .sf-input-checkbox:not(:checked),
.sf-field-taxonomy-event_status .sf-input-checkbox:checked {
  position: absolute;
  left: -9999px;
}

form.searchandfilter
  .sf-field-taxonomy-event_status
  ul
  li
  label.sf-label-checkbox {
  cursor: pointer;
  position: relative;
  display: flex !important;
  align-items: center;
  font-size: 0.95em;
  font-family: var(--heading-font-family, Lato, Sans-serif);
  padding-left: 0;
}

/* DROPDOWN Style */
form.searchandfilter li[data-sf-field-input-type="select"] {
  /* margin-top: 8px;
  margin-bottom: 5px; */
  padding: 10px 0 0;
  margin: 8px 20px 5px 0;
}

form.searchandfilter
  li[data-sf-field-input-type="select"]
  select.sf-input-select {
  max-width: 18rem;
}
form.searchandfilter
  li[data-sf-field-input-type="select"]
  select.sf-input-select:focus-visible {
  outline: var(--quvent-dark-70, #4a4a4a) auto 1px;
}
form.searchandfilter li[data-sf-field-input-type="select"] select {
  /* padding: 0.3em 1.8em 0.3em 0.5em; */
  padding: 0.6em 1.8em 0.6em 0.8em;
  background-color: var(--quvent-light-100);
  height: auto;
  /* font-size: 16px; */
  font-size: 15px;
  color: var(--quvent-dark-80);
}

/* TRACKS STYLING AS BUTTONS */

/* TRACKS STYLING AS BUTTONS */

form.searchandfilter .sf-field-category ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.25rem 0.375rem;
}

form.searchandfilter .sf-field-category ul li {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
form.searchandfilter .sf-field-category {
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  flex-basis: 100%;
}
.sf-field-category input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
form.searchandfilter .sf-field-category label {
  display: inline-block;
  /* background-color: #000000; */
  border-color: #000000;
  border-width: 1px;
  border-style: solid;
  padding: 4px 8px;
  border-radius: calc(var(--global-button-border-radius) * 0.75);
  font-family: var(--heading-font-family, Lato, Sans-serif);
  font-size: 0.764706rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #000000;
  cursor: pointer;
  line-height: 1;
  transition: all 200ms linear;
  /* opacity: 0.4; */
}
/* form.searchandfilter .sf-field-category input[type="radio"]:checked + label {
  opacity: 1;
} */
form.searchandfilter
  .sf-field-category
  input[type="radio"]:checked
  + label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 6px;
}
form.searchandfilter
  .sf-field-category
  .sf-item-0
  input[type="radio"]:checked
  + label {
  /* background-color: var(--main-button-color); */
  /* border-color: #000000; */
  background-color: #000000;
  color: #fff;
}
form.searchandfilter
  .sf-field-category
  .sf-item-0
  input[type="radio"]:focus
  + label,
form.searchandfilter
  .sf-field-category
  .sf-item-0
  input[type="radio"]:focus-visible
  + label {
  /* background-color: var(--main-button-color); */
  background-color: #000000;
  color: #fff;
  /* outline: thin dotted #000000;
  outline-offset: 1px; */
}

form.searchandfilter .sf-field-category .sf-item-0 label:hover,
form.searchandfilter .sf-field-category .sf-item-0 label:focus {
  /* background-color: var(--main-button-color); */
  background-color: #000000;
  color: #fff;
}

/* Hide speaker and sponsor filters */
form.searchandfilter .sf-field-post-meta-event_presenters_all,
form.searchandfilter .sf-field-post-meta-event_sponsors_all,
form.searchandfilter .sf-field-post-meta-event_organization_relationship {
  display: none;
}

/* SEARCH & FILTER RESPONSIVE */
@media only screen and (max-width: 992px) {
  /* Search bar */
  /* form.searchandfilter .sf-field-search {
    flex-basis: 100%;
    margin-left: 0.9em;
    text-align: left;
  } */
}
@media only screen and (max-width: 768px) {
  /* Search bar */
  form.searchandfilter .sf-field-search {
    flex-basis: 100%;
    margin-left: 0;
    text-align: left;
    order: 1;
  }
  form.searchandfilter .sf-field-search label,
  form.searchandfilter .sf-field-search input {
    width: 100%;
  }
  /* Checboxes - Type */
  form.searchandfilter li[data-sf-field-input-type="select"] {
    /* flex-basis: 60%; */
    margin-left: 0;
    padding: 0;
    order: 2;
  }
  form.searchandfilter .sf-field-taxonomy-event_type_filter li {
    margin-right: 0;
    margin-left: 0.9em;
  }
  form.searchandfilter .sf-field-taxonomy-event_type_filter ul li {
    padding: 0.1em 0;
  }
  /* Checboxes - Concluded */
  form.searchandfilter .sf-field-taxonomy-event_status {
    padding: 0;
    order: 3;
  }
  form.searchandfilter .sf-field-taxonomy-event_status li {
    margin-left: 0;
  }
  form.searchandfilter .sf-field-taxonomy-event_status ul li {
    padding: 0.1em 0;
    white-space: nowrap;
  }
  /* Dropdowns */
  form.searchandfilter .sf-field-taxonomy-virtual_room,
  form.searchandfilter .sf-field-taxonomy-location,
  form.searchandfilter
    .sf-field-post-meta-schedule_item_virtual_stage_relationship {
    display: none;
  }
  form.searchandfilter .sf-field-category {
    order: 4;
  }
}

/* END OF SEARCH FILTER */

@-webkit-keyframes sf_rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes sf_rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

/* Responsive */
@media screen and (max-width: 992px) {
  .event-item-wrap {
    flex-direction: column;
  }
  .event-item-wrap .left-wrap,
  .event-item-wrap .right-wrap {
    width: 100%;
  }
  .event-item-wrap .left-wrap {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .event-item-wrap .right-wrap {
    margin-left: 0;
    padding: 1.1rem 1.3rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  div#main-wrapper {
    padding: 1.2rem 1rem;
  }
}
