.drpmnu {
	position: relative;
	display: inline-block;
}

.drpmnu select {
	position: relative;
	appearance: none;
	max-width: 100%;
	background: #2c2c2c;
	padding: 15px 30px;
	border-radius: 100px;
	border: 1px #2c2c2c solid; color: #fff;
	font-family: "source-sans-pro", sans-serif;
	font-weight: 300;font-style: italic;
	font-size: 1rem;
}
 
.drpmnu::before,
.drpmnu::after {
  --size: 0.35rem;
  content: "";
  position: absolute;
  right: 1rem;
  pointer-events: none;
}

.drpmnu::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid #93271e;
  top: 40%;
}

.drpmnu::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid #93271e;
  top: 50%;
}

@media screen and (max-width: 1140px) {
	
	.drpmnu select {
		position: relative;
		appearance: none;
		max-width: 100%;
		background: #2c2c2c;
		padding: 15px 30px;
		border-radius: 100px;
		border: 1px #2c2c2c solid;
		color: #fff;
		font-family: "source-sans-pro", sans-serif;
		font-weight: 300;
		font-style: italic;
		font-size: 1rem;
		overflow: hidden;
		appearance: none;
		text-indent: -900px;
		width: 62px;
		aspect-ratio: 1 / 1;
	}

}