/*
Events page
*/

/**DT ADJUSTMENTS**/
/*Online events on pop up*/
.reset-filters {
   background: #FAFBFC;
   border: 1px solid #E1E2E1 !important;
   color: #BFBEBE !important;
   border-radius: 4px;
   padding: 3px 10px !important;
   margin-left: 15px;
   pointer-events: none;
}

.reset-filters.active {
   color: #1F7EF6 !important;
   pointer-events: all;
}

.reset-filters.inactive {
   color: #BFBEBE !important;
   pointer-events: none;
}

.empty-region .reset-filters {
   margin: 0px;
   padding: 0px !important;
   text-transform: none;
   border: 0px solid !important;
   inset: 0;
   font-size: inherit;
   font-weight: 600;
}


@media (min-width: 645px) {
   .reset-filters {
      margin-left: 0px;
      margin-left: 6px
   }

}

/*Initial text*/
.starting-text p,
.empty-region p {
   font-size: 14px;
   line-height: 22px;
   margin-bottom: 0px;
}

/**Add checkbox to digital event**/
.events-nav__checkbox-item.active input+label::before {
   border: 1px solid #1F7EF6;
}

.events-nav__checkbox-item.active label:before {
   content: '';
   -webkit-appearance: none;
   background-color: transparent;
   border: 1px solid #B4BFC9;
   box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 1px 1px 3px 1px rgb(0 0 0 / 5%);
   -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 1px 1px 3px 1px rgb(0 0 0 / 5%);
   padding: 6.5px;
   display: inline-block;
   position: relative;
   vertical-align: middle;
   cursor: pointer;
   margin-right: 6px;
   border-radius: 2px;
   margin-top: 3px;
}

.events-nav__checkbox-item.active input+label:after {
   content: '';
   display: block;
   position: absolute;
   top: 5px;
   left: 5px;
   width: 5px;
   height: 9px;
   border: solid #1F7EF6;
   border-width: 0 2px 2px 0;
   transform: rotate(45deg);
}

/**Remove location select if upcoming events are not selected**/
.events-dropdowns__dropdown-check-list.popup-location.inactive {
   display: none !important;
}