.webinar-tax-filter .wtf-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.wtf-active-filters {
	text-align: center;
}

.webinar-tax-filter .wtf-field {
	min-width: 240px;
}

.wtf-row .multi-select {
	min-width: 260px;
}

.wtf-row .multi-select .multi-select-header.multi-select-header-active {
	border-color: #779BBC;
	border-width: 1px;
}

.wtf-row .multi-select .multi-select-header {
	border: 2px solid #779BBC;
	border-radius: 25px;
	color: #779BBC;
	background: #fff;
}

.wtf-row .multi-select .multi-select-header::after {
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23779BBC' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
}

.wtf-row .multi-select .multi-select-header .multi-select-header-placeholder {
	color: #779BBC;
}

.wtf-row .multi-select-option span.multi-select-option-radio {
	display: none;
}

.wtf-row .multi-select .multi-select-options .multi-select-option.multi-select-selected .multi-select-option-text {
	color: #fff;
}

.wtf-row .multi-select .multi-select-options .multi-select-option.multi-select-selected {
	padding: 0 12px;
	background: #779BBC;
	border-radius: 5px;
}

.wtf-row .multi-select .multi-select-options .multi-select-option, .wtf-row .multi-select .multi-select-options .multi-select-all {
	margin: 1px 0;
	height: 32px;
	color: #779BBC;
}

.wtf-row .multi-select .multi-select-header .multi-select-header-option {
	white-space: nowrap;
	background-color: #fff;
}

.webinar-tax-filter .wtf-search input {
	padding: 0 10px;
	width: 260px;
}

.elementor-kit-8 .wtf-row .wtf-search input:focus:not([type="button"]):not([type="submit"]),
.elementor-kit-8 .wtf-search input:not([type="button"]):not([type="submit"]) {
	border-radius: 25px;
	box-shadow: none;
	border: 2px solid #779BBC;
	color: #779BBC;
	height: 45px;
	padding-right: 35px;
}

.elementor-kit-8 .wtf-search input:not([type="button"]):not([type="submit"])::placeholder {
	color: #779BBC;
}

.wtf-row .multi-select .multi-select-options {
	z-index: 10;
	border: 2px solid #779BBC;
}

/* Search input */
.wtf-search {
	position: relative;
}

.wtf-search input[type="text"] {
	padding-right: 35px; /* make room for the icon */
}

.wtf-search .taxonomy-filter-submit {
	position: absolute;
	right: 15px;
	top: 52%;
	transform: translateY(-50%);
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 20px;
	color: #779BBC;
}

/* Loading */
.wtf-loading {
	opacity: .6;
	pointer-events: none;
	position: relative;
}

.wtf-loading::after {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	background: rgba(255, 255, 255, .6);
}

.blue-text {
	color: #779BBC;
}

.slide-container {
	min-width: 300px;
}

.b-glow {
	-webkit-animation: b-glow 3s ease-in-out infinite;
	animation: b-glow 3s ease-in-out infinite;
	cursor: wait;
	display: inline-block;
	min-height: 1em;
	opacity: 0.5;
	vertical-align: middle;
	background-color: white;
}

@-webkit-keyframes b-glow {
	50% {
		opacity: 0.2;
	}
}

@keyframes b-glow {
	50% {
		opacity: 0.2;
	}
}

.image-h.b-glow {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 10px;
	aspect-ratio: 1/0.56;
}

.text-line.one {
	width: 90%;
	height: auto;
	border-radius: 4px;
	margin-bottom: 5px;
}

.text-line.two {
	width: 100%;
	height: auto;
	border-radius: 4px;
	margin-bottom: 10px;
}

.b-pl-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.webinar-loader {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

div#webinar-widget .elementor-pagination {
	margin-top: 35px;
}

/* Filter button */
.filter-button-wrapper {
	display: none;
	margin-bottom: 15px;
	width: 100%;
	text-align: center;
}

.wtf-toggle-filters {
	border: none;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
	.filter-button-wrapper {
		display: inline-block;
	}

	.webinar-form-wrapper {
		max-height: 0;
		opacity: 0;
		transition: max-height 0.35s ease, opacity 0.35s ease;
	}

	.webinar-form-wrapper.wtf-visible {
		max-height: 1000px; /* big enough to fit content */
		opacity: 1;
	}
}