@charset "utf-8";
.items {
justify-content: space-between;
display: grid;
grid-template-columns: repeat(auto-fit, 180px);
margin: 0 .35rem;
}
.item {
background-color: none;
margin: 0;
width: 180px;
height: 275px;
color: burlywood;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
opacity: .85;
}
hr.lijn {
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left, rgba(0,0,255,0), rgba(0,0,255,0.2), rgba(0,0,255,0));
background-image:-moz-linear-gradient(left, rgba(0,0,255,0), rgba(0,0,255,0.2), rgba(0,0,255,0));
background-image: -ms-linear-gradient(left, rgba(0,0,255,0), rgba(0,0,255,0.2), rgba(0,0,255,0));
background-image:-o-linear-gradient(left, rgba(0,0,255,0), rgba(0,0,255,0.2), rgba(0,0,255,0));
}
.pdf-modal {
display: none;
position: fixed;
z-index: 9999;
left: 0; top: 0; width: 100%; height: 100%;
background-color: rgba(0,0,0,0.7);
}
.pdf-modal-content {
background-color: wheat;
margin: 5% auto;
padding: 1px 6px 5px 5px;
width: 80%;
max-width: 600px;
border-radius: 10px;
font-family: sans-serif;
}
.pdf-modal-header {
display: flex;
justify-content: space-between;
border-bottom: 1px solid #eee;
margin-bottom: 15px;
}
#pdfSearchResults {
max-height: 400px;
overflow-y: auto;
}
.pdf-result-item {
padding: 10px;
border-bottom: 1px dashed #ccc;
}
.pdf-result-item a { color: #007bff; text-decoration: none; font-weight: bold; }
.close-pdf-modal { cursor: pointer; font-size: 24px; }
.responsive {
width: 100%;
height: auto;
}