.currencyCon span#currencySymbol {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 5px;
}

.currencyCon .input-wrapper {
	width: 100%;
	font-size: 24px;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 12px;
	height: 70px;
	position: relative;
	cursor: pointer;
}

.currencyCon .converter-box {
	background: white;
	border-radius: 20px;
	padding: 30px;
	max-width: 1200px;
	width: 100%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.currencyCon .tabs {
	display: flex;
	justify-content: space-around;
	border: 1px solid #ccc;
	border-radius: 40px;
	overflow: hidden;
	margin-bottom: 30px;
}

.currencyCon .tab {
	flex: 1;
	text-align: center;
	padding: 10px 0;
	background: #fff;
	color: #333;
	font-weight: 600;
	cursor: pointer;
}

.currencyCon .tab.active {
	background: #2F3C57;
	color: white;
}

.currencyCon .form-row {
	display: grid;
	gap: 10px;
	align-items: flex-start;
	grid-template-columns: 66% 1fr;
}

.currencyCon .amount-input {
	flex: 1;
}

.currencyCon .currency-select,
.currencyCon .to-currency {
	flex: 2;
	position: relative;
}

.currencyCon .input-label {
	position: absolute;
	top: 10px;
	left: 22px;
	font-size: 13px;
	color: #666;
	pointer-events: none;
}

.currencyCon .input-field {
	width: 100%;
	border: unset;
}

.currencyCon input:focus {
	outline: none !important;
	box-shadow: none !important;
	border: none !important;
}

.currencyCon .swap-icon {
	width: 40px;
	height: 40px;
	background: #f0f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 10px;
	cursor: pointer;
	position: absolute;
	left: 42%;
	transform: translateX(50%);
	z-index: 1;
	top: 15px;
}

.currencyCon .swap-icon::before {
	content: "⇄";
	font-size: 20px;
	color: #333;
}

.currencyCon .dropdown-list {
	position: absolute;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 10px;
	overflow: auto;
	opacity: 0 !important;
	transform: translateY(-10px) !important;
	transition: opacity 0.25s ease, transform 0.25s ease;
	display: none; 
	z-index:2;
}

.currencyCon .currency-select.active .dropdown-list,
.currencyCon .to-currency.active .dropdown-list {
	max-height: 300px;
	display: block; 
	opacity: 1 !important;
	transform: translateY(0);
	top: 90px;
}

.currencyCon .currency-select.active .dropdown-item {
	display: flex;
	align-items: center;
	padding: 10px;
	cursor: pointer;
	color: #000 !important;
}

.currencyCon .to-currency.active .dropdown-item {
	color: #000 !important;
	padding: 10px !important;
}

.currencyCon .dropdown-item:hover {
	background: #f5f5f5;
}

.currencyCon .convert-button {
	margin-top: 20px;
	/*width: 100%;*/
	padding: 15px;
	font-size: 18px;
	background: #0070F3;
	color: white;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-weight: bold;
	border:1px solid #0070F3;
	transition:0.3s ease-in-out;
}
.currencyCon .convert-button:hover {
    color: #0070F3;
    background: #fff;
    border-color: #0070F3;
}

.currencyCon .info-text {
	text-align: center;
	margin-top: 10px;
	font-size: 13px;
	color: #666;
}

.currencyCon .dropdown-item[hidden] {
	display: none;
}

.currencyCon .close-button {
	position: absolute;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #888;
	border: none;
	cursor: pointer;
	display: none;
}

.currencyCon .currency-select.active .close-button,
.currencyCon .to-currency.active .close-button {
	display: block;
}

.currencyCon .currency-main-div {
	display: flex;
	width: 100%;
	gap: 10px;
	position: relative;
}


.currencyCon .to-currency label.input-label {
	padding-left: 5px;
}

.currencyCon span#currencySymbol input {
	font-size: 24px;
	font-weight: 800;
}


div#fromCurrency input, .to-currency input {
    font-size: 18px;
    font-weight: 600;
}

button.close-button {
    background: #040404;
    border: 1px solid #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #fff !important;
    font-weight: 700;
}

.input-field::placeholder {
  color: #888;              
  font-size: 14px;          
  letter-spacing: 0.5px;    
  opacity: 1; 
  font-weight:500;
}

.currency-main-div .input-wrapper {
    padding: 30px 20px 20px 20px !important;
    display: flex;
    align-items: center;
}
.to-currency .input-wrapper{
    padding-left:26px !important;
}

div#reslDiv img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}
div#reslDiv {
    align-items: center;
    gap: 15px;
}