.entry-content > div.panel-wrapper {
	max-width: 2400px;
	width: 100%;
}

.panel-wrapper .column {
	scroll-margin-top: 178px;
}

.panel-wrapper div.row:nth-child(even) .column:nth-child(1),
.panel-wrapper div.row:nth-child(odd) .column:nth-child(2) {
	background: #8a808b;
}

.panel-wrapper div.row:nth-child(even) .column:nth-child(2),
.panel-wrapper div.row:nth-child(odd) .column:nth-child(1) {
	background: #8a808b;
}

/* Spinners */
@keyframes panel-spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.panel-wrapper .column div.loader {
	display: flex;
	flex-grow: 1;
	flex-shrink: 0;
	justify-content: center;
}

.panel-wrapper img {
	border: 5px solid #8a808b;
	margin-top: -140px;
	position: relative;
	z-index: 2;
}

.panel-wrapper img.zoomImg {
	border: 20px solid #8a808b !important;
	margin: -20px !important;
	z-index: 2;
}

.panel-wrapper div.column.selected img {
	border: 5px solid #da1010;
	/*cursor: zoom-in;*/
}

.panel-wrapper div.column.selected img.zoomImg {
	border: 20px solid #da1010 !important;
}

.panel-wrapper div.loader span {
	animation-duration: 1.5s !important;
	animation-iteration-count: infinite;
	animation-name: panel-spinner;
	animation-timing-function: linear;
	border: 10px solid rgba(255, 255, 255, 0.5);
	border-left: 10px solid #fff;
	border-radius: 50%;
	border-right: 10px solid #fff;
	height: 100px;
	margin: 20px;
	position: relative;
	width: 100px;
	z-index: 1;
}

#wpadminbar,
#wpadminbar ul li {
	z-index: 99990;
}

/* Mobile first layout - when the screen is larger than 640px wide, have two columns next to each other */
@media only screen and (min-width: 641px) {

	.panel-wrapper .row {
		display: flex;
	}
}

@media only screen and (min-width: 801px) {

	.panel-wrapper .column {
		scroll-margin-top: 138px;
	}
}