.trls-search {
	box-sizing: border-box;
	max-width: 720px;
	width: 100%;
	padding: 2px;
	overflow: visible;
}

.trls-controls {
	display: block;
	margin: 0 0 1rem;
}

.trls-input-wrap {
	margin: 0 0 0.75rem;
	min-width: 0;
}

.trls-controls input[type="search"].trls-input,
.trls-search input[type="search"].trls-input {
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0.75rem 0.9rem;
	border: 1px solid #c9c9c9;
	border-radius: 4px;
	font: inherit;
}

.trls-controls input[type="search"].trls-input:focus,
.trls-search input[type="search"].trls-input:focus {
	border-color: #59c2fb;
	border-right-color: #59c2fb;
	border-left-color: #59c2fb;
	outline: 2px solid rgba(31, 111, 235, 0.18);
	outline-offset: 1px;
}

.trls-tag-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
}

.trls-tag-filter {
	appearance: none;
	-webkit-appearance: none;
	padding: 0.45rem 0.75rem;
	border: 1px solid #1e2f40;
	border-radius: 4px;
	background: #1e2f40;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size:inherit;
	line-height: 1.2;
	font-weight:bold;
}

.trls-tag-filter:hover,
.trls-tag-filter:focus {
	background: #ffd302;
	color:#1e2f40;
}

.trls-tag-filter.is-active {
	border-color: #ffd302;
	background: #ffd302;
	color: #1e2f40;
}

ul.trls-list {
	margin: 0!important;
	padding: 0;
	list-style: none;
}

.trls-item + .trls-item {
	margin-top: 0.6rem;
}
.trls-item:not(:last-child) {
  border-bottom: 1px dashed #59c2fb;
}
li.trls-item {
	margin-left:0!important;
}

.trls-link {
	display: inline-flex;
	align-items: baseline;
	gap: 0.35em;
	text-decoration: none;
}

.trls-lock-icon {
	display: inline-block;
	flex: 0 0 auto;
	line-height: 1;
}

.trls-title {
	min-width: 0;
}

.trls-link:hover,
.trls-link:focus {
	text-decoration: underline;
}

.trls-highlight {
	font-weight: 700;
}

.trls-no-results {
	margin: 0;
}

@media (max-width: 1025px) {
	.trls-tag-filter {
		padding: 0.4rem 0.65rem;
	}
}

@media (max-width: 769px) {
	.trls-tag-filter {
		border: 1px solid #ffffff;
	}
}
@media (max-width: 425px) {
	.trls-tag-filters {
		gap: 0.4rem;
	}

	.trls-tag-filter {
		flex: 1 1 calc(50% - 0.4rem);
		text-align: center;
		
	}

}
