/*==================================================
    INSURANCE CHECKER
==================================================*/
.insurance-checker  {
	
	max-width: 1000px;
	margin: 60px auto;
	padding: 55px 60px 15px;
	background: #0F294D;
	border-radius: 8px;
	overflow: visible !important;
}
.insurance-checker .flex{display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;}
/*==================================================
    HEADER
==================================================*/
.insurance-header {
	flex: 1;
	text-align: left;
}

body.index .insurance-checker h2 {
	font-size: 45px
}

.insurance-header .eyebrow {
	display: block;
	margin-bottom: 10px;
	color: #73E6DE;
	text-transform: uppercase;
	/*! letter-spacing: .12em; */
	font-size: 24px;
	font-weight: 700;
}

/* .insurance-header h2 {
    margin: 0 0 18px;

    max-width: 560px;

    color: #fff;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
} */
.insurance-header p {
	margin: 0;
	color: rgba(255, 255, 255, .85);
	font-size: 18px;
	line-height: 1.6;
}

/*==================================================
    SEARCH
==================================================*/
.insurance-search {
	width: 520px;
	flex-shrink: 0;
}

.search-wrapper {
	position: relative;
}

.search-wrapper input {
	width: 100%;
	height: 66px;
	padding: 0 80px 0 22px;
	border: none;
	border-radius: 6px;
	font-size: 17px;
	font-family: inherit;
	outline: none;
	box-sizing: border-box;
	transition: .25s;
}

.search-wrapper input::placeholder {
	color: #8D98A8;
}

.search-wrapper input:focus {
	box-shadow: 0 0 0 4px rgba(115, 230, 222, .25);
}

/*==================================================
    BUTTON
==================================================*/
.search-wrapper button {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: #73E6DE;
	color: #0F294D;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .25s;
}

.search-wrapper button:hover {
	background: #5ED9D0;
	transform: translateX(3px);
}

.search-wrapper button svg {
	width: 20px;
	height: 20px;
}

/*==================================================
    DROPDOWN
==================================================*/
.insurance-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
	display: none;
	max-height: 280px;
	overflow-y: auto;
	z-index: 999;
}

.insurance-dropdown li {
	padding: 16px 20px;
	cursor: pointer;
	transition: .2s;
	border-bottom: 1px solid #f1f1f1;
}

.insurance-dropdown li:last-child {
	border-bottom: none;
}

.insurance-dropdown li:hover,
.insurance-dropdown li.active {
	background: #F2FBFA;
}

/*==================================================
    RESULT
==================================================*/
.insurance-result {
	margin-top: 30px;
}

.result-card {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	padding: 28px;
	background: #fff;
	border-radius: 8px;
	animation: fadeUp .3s ease;
}

/*==================================================
    SUCCESS
==================================================*/
.result-card.success {
	border-left: 6px solid #4BC46A;
}

.result-card.success .result-icon {
	background: #4BC46A;
}

/*==================================================
    WARNING
==================================================*/
.result-card.warning {
	border-left: 6px solid #F2B640;
}

.result-card.warning .result-icon {
	background: #F2B640;
}

/*==================================================
    ICON
==================================================*/
.result-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 26px;
	font-weight: bold;
}

/*==================================================
    CONTENT
==================================================*/
.result-content {
	flex: 1;
}

.result-content h3 {
	margin: 0 0 12px;
	color: #0F294D;
	font-size: 28px;
}

.result-content p {
	margin: 0 0 16px;
	color: #5E6471;
	line-height: 1.7;
}

.result-content strong {
	color: #0F294D;
}

.result-content .btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 14px 28px;
	margin-top: 10px;
	border-radius: 999px;
	background: #73E6DE;
	color: #0F294D;
	font-weight: 700;
	text-decoration: none;
	transition: .25s;
}

.result-content .btn:hover {
	background: #5ED9D0;
}

/*==================================================
    SCROLLBAR
==================================================*/
.insurance-dropdown::-webkit-scrollbar {
	width: 8px;
}

.insurance-dropdown::-webkit-scrollbar-thumb {
	background: #d5d5d5;
	border-radius: 10px;
}

.insurance-dropdown::-webkit-scrollbar-track {
	background: #fff;
}

/*==================================================
    ANIMATION
==================================================*/
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*==================================================
    MOBILE
==================================================*/
@media (max-width:900px) {
	.insurance-checker .flex {
		flex-direction: column;
		gap: 35px;
		padding: 40px 25px;
		text-align: center;
	}

	.insurance-header {
		text-align: center;
	}

	.insurance-header h2 {
		max-width: none;
	}

	.insurance-search {
		width: 100%;
	}

	.result-card {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.result-content {
		text-align: center;
	}
}
@media (max-width: 600px) {
    .insurance-checker .flex {padding-inline0;padding: 0;}
    .insurance-checker{padding: 40px 20px;}
}
