/* The following CSS is only for the special ORC user inputs */

/* It is good practice to "reset" any possible styles that may have been inherited from another CSS file. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.orc-input, .orc-input-2  {
	position: relative;
	/*margin: 0.5em;
	/*top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);*/
}
.orc-input label, .orc-input-2 label {
	display: block;
	text-align: center;
	/*margin: 0.1em;*/
}

.orc-input input, .orc-input-2 input {
	display: inline-block;
	background-color: #7f3035;
	color: #ffffff;
	text-align: center;
	padding: 12px;
	width: 250px;
	border: none;
	font-size: 1.5rem;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	margin: .2rem 0 .2rem 0;
}

.orc-input--elevation::before,
.orc-input--custom-gamma.is-visible::before {
	content: url("images/chevron-down-solid.svg");
	position: absolute;
	top: 74px;
	right: 26px;
	height: 51px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	text-align: center;
	font-size: 28px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.5);
	background-color: rgba(255, 255, 255, 0.1);
	pointer-events: none;
}

@media screen and (max-width: 1280px) {
.orc-input--elevation::before,
	.orc-input--custom-gamma.is-visible::before {
		top: 59px;
		right: 0;
	}
}

@media screen and (max-width: 1013px) {
.orc-input--elevation::before,
	.orc-input--custom-gamma.is-visible::before {
		top: 60px;
		right: 0;
	}
}

@media screen and (max-width: 980px) {
.orc-input--elevation::before,
	.orc-input--custom-gamma.is-visible::before {
		top: 75px;
		right: 0;
		height: 51px;
	}
}

@media screen and (max-width: 736px) {
.orc-input--elevation::before,
	.orc-input--custom-gamma.is-visible::before {
		top: 41px;
		right: 0;
	}
}


.orc-input--elevation:hover::before,
.orc-input--custom-gamma.is-visible:hover::before {
	color: rgba(255, 255, 255, 0.6);
	background-color: rgba(255, 255, 255, 0.2);
}

.orc-input input option {
	padding: 30px;
	right: -20;
}