.query {
	width: max-content;
	margin-left: 50%;
	margin-right: 0px;
	transform: translateX(-50%);
}

.screenDetailPanel {
	vertical-align: top;
    width:  430px;
	display: inline-block;
}

.screenDetailPanel hr {
	color: rgb(255, 255, 255);
	margin-bottom: 33px;
}

.screenDetailPanel h1 {
    font-size: 2rem;
    margin-bottom: 15px;
	font-family: "Century Gothic Bold";
}

.screenDetailPanel h2 {
    font-size: 1.35rem;
    margin-bottom: 5px;
	font-family: "Century Gothic";
}

.filter {
	margin-bottom: 30px;
}

input[type="number"]:focus {
    outline: #569cb9 solid 1px!important;
    box-shadow: 0px 0px 5px #569cb9!important;
}

input[type="number"] {
	-webkit-appearance: textfield;
	   -moz-appearance: textfield;
			appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
	-webkit-appearance: none;
}

.filter input[type="number"] {
	border: 1px solid rgb(187, 187, 187);
	font-family: "Century Gothic Bold";
	color:#565656;
	font-size: 1.1rem;
	text-align: center;
    width: 60px;
    height: 40px;
}

.filter input[type="number"][invalid] {
	outline: none !important;
	border: 2px solid rgb(194, 74, 74);
	box-shadow: 0px 0px 10px rgb(194, 74, 74);
}

.filter h3 {
	display: inline-block;
    width: min-content;
    margin: 0px;
    font-family: "Century Gothic";
    color: #373737;
    margin: 15px 20px 15px 20px;
}



.filter input[type="checkbox"] {
    transform: translateY(-200%);
}

/* custom dropdown appearance */
select {
  	/* Reset */
	
  	appearance: none;
  	border: 0;
  	outline: 0;
  	font: inherit;
  	/* Personalize */
  	width:  430px;
  	height: 2.5em;
  	padding: 0 1em 0 1em;
  	background: url(../img/downward_caret.png)
	no-repeat right 0.8em center / 1.4em,
    linear-gradient(to left, var(--glass-icon) 3em, var(--glass) 3em);
  	color: rgb(0, 0, 0);
  	border-radius: 0.25em;
  	border: 1px solid rgb(187, 187, 187);
  	cursor: pointer;
  	font-family: "Century Gothic";
  	/* <option> colors */
 	option {
		color: inherit;
		background-color: var(--option);
	}
	/* Remove focus outline */
	&:focus {
		outline: none;
	}
	/* Remove IE arrow */
	&::-ms-expand {
		display: none;
	}
}

.pitchFilter,.resFilter {
	display: inline-block;
	width: fit-content;
	margin-bottom: 30px;
}

.resFilter {
	float: right;
}

.inlineDrop {
	display: inline-block;
	width: fit-content;
}

.dropRight {
	float: right;
}

.filter div {
	display: inline-block;
	position: relative;
	width: max-content;
	height: max-content;
}

.filter div p {
	position: absolute;
	bottom: -5px;
	margin: 0px;
	width: 100%;
	text-align: center;
	transform: translateY(100%);
}

.filter .measurementDiv {
	float: right;
	width: 200px;
}

.measurementSelect {
	width: 100%;
	margin-top: 7px;
}

.screenDetailPanel input[type=button] {
    position: absolute;
    left: 50%;
	bottom: -100px;
    transform: translate(-50%, 100%);
    padding: 12px 30px 12px 30px;
    border: none;
    color:#569cb9;
    background-color: white;
    box-shadow: #979797 0px 1px 4px;
    font-size: 0.9rem;
    font-family: "Century Gothic Bold";
    cursor:pointer;
}