
/*--------------------international telephone input Css Here   --------------------- */

.phone-input {
	position: relative;
	margin-bottom: 20px;
}

.phone-wrapper {
	display: flex;
	align-items: center;
	border-radius: 12px;
	width: 100%;
	cursor: pointer;
	position: relative;
	padding-left: 16px;
	background-color: #FFFFFF;
	border: 1.5px solid #96979F33;
}

.selected-flag {
	display: flex;
	align-items: center;
	gap: 10px;
}

.selected-flag img {
	width: 30px;
	height: 20px;
}

.country-list {
	display: none;
	position: absolute;
	top: 72%;
	left: 0;
	width: 100%;
	background: white;
	list-style: none;
	padding: 5px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	z-index: 1050;
	padding-top: 20px;
	height: 234px;
	overflow-y: scroll;
}

.country-list li {
	display: flex;
	align-items: center;
	padding: 5px 10px;
	cursor: pointer;
}
.phone-input-field {
	border: 0 !important;
	padding-left: 8px !important;
}
.country-list li img {
	width: 30px;
	height: 20px;
	margin-right: 8px;
}

.country-list li:hover {
	background: #f0f0f0;
}

input[type="tel"] {
	flex-grow: 1;
	border: none;
	outline: none;
	font-size: 16px;
	margin-left: 10px;
}

/*--------------------international telephone input Css Here   --------------------- */