#absd-search-popup{
    position:fixed;
    inset:0;
    background: #F8FDFF;
    z-index:999999;
    display:none;
    overflow:auto;
}

.absd-search-container{
    width:80%;
    max-width:1000px;
    margin:100px auto;
}
.absd-serarch-input {
    display: inline-block;
    padding: 1px;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        #5b4df0 0%,
        #22c55e 50%,
        #ff5a3c 100%
    );
	position:relative;
    width: 100%;
    box-shadow: 0 5px 18px 0 rgba(32, 91, 168, 0.08);
}
#absd-close-search{
    font-size:30px;
    background:none;
    border:none;
    cursor:pointer;
	position: absolute;
    top: 40px;
    right: 50px;
	outline: none !important;
}

#absd-live-search {
    width: 100%;
    height: 60px;
    border-radius: 50px;
    border: 1px solid #ddd;
    padding: 0 30px;
    font-size: 18px;
    box-sizing: border-box;
    padding-left: 65px;
    color: #1B1B1B;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-family: Figtree;
	outline: none !important;
}
#absd-live-search::placeholder {
	color:#1b1b1b;
}
.absd-serarch-input:before {
    content: '';
    background-image: url(https://kelstruphus.dk/wp-content/uploads/2026/07/Frame-1.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
}
#absd-search-message{
    margin:20px 0;
}
#absd-search-message:empty {
	display:none;
}
.absd-search-item{
    display:flex;
    gap:30px;
}

.absd-search-item img {
    width: 180px;
    height: 125px;
    object-fit: cover;
    border-radius: 10px;
}
div#absd-search-results {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.absd-search-content{
    flex:1;
}
.absd-search-item:first-child {
	margin-top:50px;
}
.absd-search-content h3 {
    margin: 0 0 10px;
    color: #2A50A2;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.absd-search-content p {
    overflow: hidden;
    color: #5D5D5C;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    margin: 0;
	margin-bottom:20px;
}

.absd-read-more {
    display: inline-flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #205BA8;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 25px;
    border: 1px solid  #205BA8;
}
.absd-highlight {
    background: #F2DD48;
    color: #000;
    padding: 2px 4px;
    font-weight: 700;
}
@media (max-width:575px) {
	.absd-search-item img {
		width: 120px;
		height: auto;
	}
	.absd-search-item {
		gap: 20px;
	}
	.absd-search-content h3 {
		margin: 0 0 6px;
		font-size: 20px;
	}
	.absd-search-content p {
		font-size: 15px;
    	line-height: 25px;
	}
	.absd-read-more {
		font-size: 15px;
	}
	#absd-live-search {
		height: 50px;
		padding-left: 55px;
	}
	.absd-search-container {
		width: 93%;
	}
	.absd-search-item:first-child {
		margin-top: 30px;
	}
}
@media (max-width: 425px) {
    .absd-search-item img {
        width: 80px;
    }
	div#absd-search-results {
		gap: 25px;
	}
	.absd-search-content h3 {
		margin: 0 0 3px;
		font-size: 18px;
	}
	.absd-search-content p {
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 12px;
	}
	.absd-read-more {
		font-size: 14px;
		padding: 9px 20px;
	}
}