#psitems-canvas {
    overflow: auto;
    width: 100%;
	height:380px;
}

div[id*=glscsp-] {
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100%;
	border: solid 1px #ccc;
    height: auto;
    display: flex;
}

#left-canvas {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    overflow: hidden;
    width: 30%;
    color: var(--orac-red);
    display: flex;
    flex-direction: column;
}
#right-canvas {
    width: 70%;
}
#map-canvas { 
    width: 100%;
    height: 100%;
}

#searchinput {
    background-color: var(--orac-yellow);
    color: var(--orac-dark-red);
    width: 100%;
    border-left: 0;
    border-right: 0;
    z-index: 1;
    padding: 10px 5px;
    border: 0;
    font-size: 15px;
}
#searchinput.default {
    color: var(--orac-red);
    font-style: italic;
}
.psOver {
    background-color: var(--orac-red);
	color: white;
}
.psSelected {
    font-weight: bold;
}

@media all and (max-width: 767px) {
	div[id*=glscsp-] {
	    flex-direction: column;
	}
	
	#left-canvas, #right-canvas {
	    width: 100%;
	}
	
	#psitems-canvas, #right-canvas {
	    height: 200px;
	}
}