.results-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  justify-content: space-between;
  width: 100%;
  grid-row-gap: 2em;
}
.load-more-wrapper{text-align: center;width: 100%;}

.load-more-wrapper P{width:100%;}

.custom-search-wrapper {
  display: flex;
  width: 100%;
}
.kw-card-container h3 {
    
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.search-wrapper {
  display: flex;
  width: 100%;
  flex: 1;
  justify-content: space-around;
}

h3.nomore {
  position: absolute;
  bottom: 50px;
  left: 42%;
}

.search-wrapper select {
  display: block;
  width: 100%;
  color: black;
}

.results-wrapper a {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.results-wrapper img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

p.kw-below-img {
  color: black;
  font-size: 14px;
  margin-top: 1em;
}

.kw-card-container {
  padding: 2% 8%;
}

.results-wrapper * {
  color: black !important;
}

.kw-footer-wrapper {
  display: flex;
  justify-content: space-between;
}

.results-wrapper a {
  position: relative;
      padding-bottom: 30px;
}

.kw-content-wrapper {
  margin-bottom: 3em !important;
}

.kw-footer-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #f7f7f7;
  border-top: 1px solid #c7c7c7;
  left: 0;
  font-size: 13px;
}

.kw-content-wrapper p {
  font-size: 13px;
}

.kw-footer-wrapper p {
  margin: 0 !important;
}

.kw-footer-wrapper {
  align-items: center;
  padding: 0.5em 5%;
}

.results-wrapper h3 {
  font-size: 20px;
}

p.kw-below-img {
  margin-bottom: 9px;
}

.results-wrapper {
  justify-content: center !important;
  grid-column-gap: 3%;
  margin: 4em 0;
}

input.search-input {
  background: 0;
  border: 0;
  outline: none;
  width: 80vw;
  max-width: 400px;
  font-size: 1.5em;
  transition: padding 0.3s 0.2s ease;
}

input.search-input:focus {
  padding-bottom: 5px;
}

input.search-input:focus + .line:after {
  transform: scaleX(1);
}

.field {
  position: relative;
}

.field .line {
  width: 100%;
  height: 3px;
  position: absolute;

  background: #bdc3c7;
}

.custom-search-wrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.featured-wrapper {
	padding-top: 4em;
	width: 100%;
	background-color: #eceef0;
	margin-bottom: 4em;
}

.field .line:after {
  content: " ";
  position: absolute;
  float: right;
  width: 100%;
  height: 3px;
  transform: scalex(0);
  transition: transform 0.3s ease;
  background: #1abc9c;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #00c46b;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #00c46b transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

.lds-ring {
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 450px;
  z-index: 99;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.results-container {
  width: 100%;
}
:root {
	--select-border: #777;
	--select-focus: blue;
	--select-arrow: var(--select-border);
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: transparent;
	border: none;
	padding: 0 1em 0 0;
	margin: 0;
	width: 100%;
	font-family: inherit;
	font-size: inherit;
	cursor: inherit;
	line-height: inherit;
	z-index: 1;
	outline: none;
}
select::-ms-expand {
	display: none;
}

.select {
	display: grid;
	grid-template-areas: "select";
	align-items: center;
	position: relative;
	min-width: 15ch;
	max-width: 30ch;
	border: 1px solid var(--select-border);
	border-radius: 0.25em;
	padding: 0.25em 0.5em;
	font-size: 1.25rem;
	cursor: pointer;
	line-height: 1.1;
	background-color: #fff;
	background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}
.select select, .select::after {
	grid-area: select;
}
.select:not(.select--multiple)::after {
	content: "";
	justify-self: end;
	width: 0.8em;
	height: 0.5em;
	background-color: var(--select-arrow);
	-webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
	clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

select:focus + .focus {
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border: 2px solid var(--select-focus);
	border-radius: inherit;
}

select[multiple] {
	padding-right: 0;
	height: 6rem;
}
select[multiple] option {
	white-space: normal;
	outline-color: var(--select-focus);
}

.select--disabled {
	cursor: not-allowed;
	background-color: #eee;
	background-image: linear-gradient(to top, #ddd, #eee 33%);
}

label {
	font-size: 1.125rem;
	font-weight: 500;
}

.select + label {
	margin-top: 2rem;
}
.page-template-page-library_publications .results-wrapper a {
	padding-bottom: 149px;
	height: 100%;
	max-height: 362px;
}
.page-template-page-library_publications .results-wrapper img {
	width: 100%;
    height: 60px !important;
}
.page-template-page-library_publications .kw-card-container h3 {
    -webkit-line-clamp: 5;
}
.page-template-page-library_publications .kw-card-container {
    padding: 0 8% 2%;
	/*line-height:1.3;*/
}
.page-template-page-library_publications .kw-content-wrapper {
	margin-bottom: 0 !important;
	position: absolute;
	bottom: 50px;
	line-height: 1.4;
}
.page-template-page-library_publications .kw-content-wrapper p {
  font-size: 16px;
}
.page-template-page-library_publications .kw-content-wrapper p:last-child {
	margin-bottom: 0 !important;
}