I have a flex-row of elements (e.g. two lines with flex-wrapped). When I click one of those elements a popup (green box) should be opened directly under this element (that's why I need an absolute positioning) and those popups should all have the same width (independent of which element is clicked).
The problem is since this absolute positioned div starts just under the clicked element, the starting point of this popup also varies on the x-axis. But I want all the popups start at the same point horizontally.
https://jsfiddle.net/h8f73Lpm/24/
This is what I currently have:

This is what I want to achieve, when I click on an element in the first row:

.. and when i click on an element on the second row:

This is a simplified version of my situation. Since we also have to consider the responsiveness the actual number of rows and elements vary. I would prefer a css-only solution.
.flexlist {
display: flex;
flex-wrap: wrap;
max-width: 700px;
}
.entry {
position: relative;
min-width: 96px;
height: 100px;
border: 1px solid red;
margin: 1px;
}
.selected {
background: red;
}
.absolute {
position: absolute;
left: 0;
top: 100%;
width: 300px;
background: green;
z-index: 1;
height: 80px;
}
<div class="flexlist">
<div class="entry"></div>
<div class="entry"></div>
<div class="entry selected">
<div class="absolute"></div>
</div>
<div class="entry"></div>
<div class="entry"></div>
<div class="entry"></div>
<div class="entry"></div>
<div class="entry"></div>
<div class="entry"></div>
<div class="entry"></div>
<div class="entry"></div>
<div class="entry"></div>
<div class="entry"></div>
<div class="entry"></div>
</div>