#QueuePopUp { position: absolute; left: 10%; top: 7.5%; width: 80%; height: 80%; margin: auto; z-index: 100; background-color: var(--second-background-color); border-radius: 10px; overflow: hidden; } #QueuePopUp #QueuePopUpHeader { position: absolute; top: 0; left: 0; height: 40px; width: 100%; background-color: var(--primary-color); color: var(--accent-color); } #QueuePopUp #closeSearch { position: absolute; top: 0; right: 0; height: 100%; } #QueuePopUp #QueuePopUpBody { position: absolute; top: 40px; left: 0; width: 100%; height: calc(100% - 40px); display: flex; } #QueuePopUp #QueuePopUpBody > * { width: 50%; padding: 20px; } #QueuePopUp #QueuePopUpBody h1 { padding: 0; margin: 0 0 5px 0; } #QueuePopUp #QueuePopUpBody > *:first-child { border-right: 1px solid var(--primary-color); } #QueuePopUp #QueuePopUpBody .JobQueue { display: flex; flex-direction: column; } .QueueJob { position: relative; height: 200px; } .QueueJob img{ height: 100%; } .QueueJob { }