/* The following CSS is only for the special ORC dropdown / select menus */

/* 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-dropdown-U, .orc-dropdown-G, .orc-dropdown-T{
	position: relative;
}

.orc-dropdown-Tem, .orc-dropdown-shapes{
	position: relative;
	max-width: 200px;
	height: 30px;
}

.orc-dropdown-U label, .orc-dropdown-T label, .orc-dropdown-G label {
	display: block;
	text-align: center;
	/*margin: 0.1em;*/
}


.orc-dropdown-U select, .orc-dropdown-G select, .orc-dropdown-T select{
	appearance: none;
	padding: 0.75rem;
	width: 8rem;
	border: none;
	font-size: 1.5rem;
	color: white;
	background-color: #7f3035;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	margin: .2rem 0 0.2rem 0;
}

.orc-dropdown-Tem select, .orc-dropdown-shapes select{
	appearance: none;
	width: 100%;
	height: 30px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
	background-color: #7f3035;
	color: white;
	-webkit-appearance: none;
	font-size: 1.2rem;
	appearance: none;
	outline: none;
}

.orc-dropdown-U::after, .orc-dropdown-G::after{
	content: "\21A7";
	position: absolute;
	top: 74px;
	right: 26px;
	color: white;
	height: 51px;
	width: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	font-size: 28px;
}

.orc-dropdown-Tem::after, .orc-dropdown-shapes::after{
	content: "\21A7";
	position: absolute;
	top: 0;
	right: 0;
	height: 30px;
	width: 30px;
	color: white;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	pointer-events: none;
}

	@media screen and (max-width: 1280px) {
		.orc-dropdown-U::after, .orc-dropdown-G::after {
			top: 59px;
			right: 0;
		}
	}
	@media screen and (max-width: 1013px) {
		.orc-dropdown-U::after, .orc-dropdown-G::after {
			top: 60px;
			right: 0;
		}
	}

	@media screen and (max-width: 980px) {
		.orc-dropdown-U::after, .orc-dropdown-G::after {
			top: 75px;
			height: 51px;
			right: 0;
		}
	}		
	
	@media screen and (max-width: 736px) {
		.orc-dropdown-U::after, .orc-dropdown-G::after {
			top: 41px;
			right: 0;
		}
	}

.orc-dropdown-U:hover::after,.orc-dropdown-G:hover::after,.orc-dropdown-T:hover::after,.orc-dropdown-Tem:hover::after, .orc-dropdown-shapes:hover::after{
	color: rgba(255, 255, 255, 0.6);
	background-color: rgba(255, 255, 255, 0.2);
}

