select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}


#release-notes-filter, #filter-count, label, #selected-filters, #popup-body, #popup-body ul li, .newsbox ul li {
	font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
}

#filter-count {
  padding: 0 0 10px;
  font-size: 1.5rem;
}

#filter-results .release-note {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
	border: 0px solid #023659;
}

#filter-results .release-note.visible {
  opacity: 1;
  padding:20px 10px;
  margin: 0 0 20px 0;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
  background-color: #fff;
  border: 0 solid #69727d;
  border-radius: 3px;
  /*display: flex;
  flex-direction: column;*/
  min-height: 100%;
  overflow: hidden;
  position: relative;
  transition: all .25s;
}

.filter-group {
  margin-right: 25px;
  margin-bottom: 20px;
  float: left;
}

.filter-group {
  position: relative;
  display: inline-block;
}

.filter-group .vc_icon_element-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.filter-group input {
  padding-left: 35px;
}

.open-popup, .remove-filter, #load-more, #clear-all-filters {
  background: #023659;
border: 1px solid #023659;
  padding: 10px 10px;
 color:#fff;
}

.open-popup:hover, #popup-close:hover {
  color: #023659;
  border-color: #023659;
background: #fff;
}

#load-more {
  margin:20px 0 0 0;	
}

#popup-close {
  background: #023659;
border: 1px solid #023659;
  padding: 0px 10px;
 color:#fff;
}

#popup-content #popup-title {
	padding: 20px 0 0 0;
}

.release-note.visible h3 {
  color: #023659;
  font-weight: 600;
  font-size: 21px;
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon::before {
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  width: inherit;
  height: inherit;
  font-size: 0.8em;
  text-align: center;
  text-rendering: optimizelegibility;
}

.fa-search::before {
  content: "\f002";
color:#023659;
}

#search-input {
  padding: 15px;
  width: 100%;
  margin: 30px 0px;
}

#search-clear {
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 30px;
    color: #aaa;
    background: none;
    border: none;
}
#search-clear:hover {
    color: #333;
}

.filter-select {
	min-width: 100%;
	padding: 20px;
	background: #fff;
	border: 1px solid #d5d8dc;
}

.filter-popup {
    display: none;
    position: absolute;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.filter-popup.open {
    display: block;
}

#popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#popup-content {
    background: #fff;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#popup-close {
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
}

#selected-filters {
    margin: 10px 0;
    padding: 10px 0;
    background: #fff;
    /*box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    border: 1px solid #ccc;*/
    border-radius: 5px;
    width: 100%;
    clear: both; /* Sicherstellen, dass der Bereich nicht neben anderen Elementen erscheint */
}

#filter-results {
    margin-top: 20px;
    width: 100%;
}

#selected-filters .selected-filter {
    display: inline-block;
    margin-right: 5px;
    padding: 5px 10px;
    background: #0073aa;
    color: #fff;
    border-radius: 3px;
}

#selected-filters .remove-filter {
    background: none;
    border: none;
    color: #0073aa;
    margin-left: 5px;
    cursor: pointer;
}

.filter-tag {
padding: 14px 10px;
  border: 1px solid #0073aa;
  margin: 0 10px 0 0;
}