/* Code By Webdevtrick ( https://webdevtrick.com ) */
.currency {
	display: flex;
	align-items: center;
	/*justify-content: space-between;*/
	background-color: #ffffff;
	padding: 10px;
	height: 70px;
	border-radius: 8px;
	width: 100%;
	text-align: center;
}
.currency select {
	border: 0;
	padding-right: 10px;
	font-size: 40px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
	line-height: 46px;
	font-weight: 700;
	width:80px;
}
.currency input {
	border: 0;
	background: transparent;
	font-size: 32px;
	text-align: right;
	-moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
	width:350px;
}
.currency input.texto {
	border: 0;
	background: transparent;
	font-size: 14px;
	text-align: left;
	-moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
	width:40px;
}
.currency input.textolargo {
	border: 0;
	background: transparent;
	font-size: 14px;
	text-align: left;
	-moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
	width:80px;
	color: #000000;
}
.middle {
	color: #ee0493;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.middle button {
	background-color: #ee0493;
	border: 2px solid #ecf0f1;
	border-radius: 50%;
	cursor: pointer;
	color: #ffffff;
	font-size: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	width: 70px;
	transform: rotate(90deg);
	margin-top: -15px;
	margin-bottom: -15px;
}
.middle button:hover {
	transform: rotate(180deg);
}
.middle .rate {
	background-color: #fff;
	border: 2px solid #ecf0f1;
	border-radius: 50px;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	padding: 0 10px;
	margin: 10px 15px 10px 25px;
}
select:focus, input:focus, button:focus {
	outline: 0;
}

@media(max-width:1300px) {
 .currency input {
    width:200px;
 }
}

@media(max-width:1100px) {
 .currency input {
    width:140px;
 }
}

@media(max-width:479px) {
 .currency input {
    width:140px;
	font-size:28px;
 }
 .middle .rate {
    font-size:14px;
 }
}