#root {
	min-height: 400px;
	--inline-width: 320px;
	--inline-width-wider: 400px;
}

@media (max-width: 991px) {
	#root {
		--inline-width-wider: calc(100vw - 50px);
	}

	.zui-root {
		--viewport-margin-horizontal: 26px;
	}
}

.app {
	margin: 0 auto;
	color: var(--color-primary-black);
	fill: var(--color-primary-black);
	stroke: var(--color-primary-black);
}

.app h1 {
	margin: 30px 0;
	width: 100%;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px; /* 133.333% */
	padding: 0;
	color: var(--color-primary-black);
}

.app-header {
	display: flex;
	margin-top: 1em;
	align-items: flex-start;
	gap: 1em;

	justify-content: space-between;
}

.app-header-msg {
	text-align: right;
	margin: 0 !important;
}

@media (max-width: 500px) {
	.app-header-msg {
		text-align: left;
	}
}

.app-header h2 {
	margin: 0;
	padding: 0;
	width: auto;
	font-size: var(--font-em-18);
	font-weight: bold;
	line-height: 1.5;
	flex-grow: 1;

	white-space: pre-wrap;
}

.app-header a {
	direction: rtl;
}

.app-header > span {
	border-left: 1px solid;
	height: 2em;
}

@media (max-width: 500px) {
	.app-header {
		flex-direction: column;
	}

	.app-header > span {
		display: none;
	}
}

.app-content {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 17px;
	padding-right: 17px;
	padding-bottom: 30px;
}

.app-page-action {
	margin-top: 30px;
	/*width: var(--inline-width);*/
	display: flex;
	flex-direction: column;
	align-items: center;
}

.app-page-action .zui-button {
	width: 200px;
}

.app-page-action .zui-button + .zui-button {
	margin-top: 0.75em;
}

@media (max-width: 991px) {
	.app-content {
		width: auto;
		padding-bottom: 40px;
	}

	.app-page-action {
		margin-top: 40px;
	}

	.app-page-action .zui-button {
		width: 100%;
	}
}

.app-page-remark {
	margin-top: 20px;
}

.app-page-remark a {
	color: var(--color-prudential-red) !important;
	text-decoration-line: none;
}

.app-page-remark,
.app-page-remark a {
	font-size: 12px !important;
}

.zui-button {
	background-color: var(--color-lightgray);
	color: var(--color-darkgray);
}

.app-tooltip {
	display: inline-block;
	position: relative;
	margin-inline-start: 0.5em;
}

.app-tooltip-flyout {
	display: none;
	position: absolute;
	padding: 0.5em 1em;
	max-width: 300px !important;
	width: max-content;
	border-radius: var(--control-border-radius);
	background-color: var(--color-primary-black);
	color: white;
	font-size: 0.75rem;
	font-weight: 600;
	white-space: normal;
	z-index: 1;
}

.app-tooltip:hover > .app-tooltip-flyout {
	display: block;
}

.app-tooltip-flyout-triangle {
	position: absolute;
	bottom: 100%;
	border-left: 0.6em solid transparent;
	border-right: 0.6em solid transparent;
	border-bottom: 0.75em solid var(--color-primary-black);
}

.app-tooltip-flyout[position-anchor~="bottom"] > .app-tooltip-flyout-triangle {
	top: 100%;
	bottom: auto;
	border-top: 0.75em solid var(--color-primary-black);
	border-bottom: none;
}

#app-image-box {
	position: relative;
	float: right;
	top: 0;
	width: 40%;
}

#app-image-box .grey-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% + 30px);
	height: calc(50% + 30px);
	background: var(--color-blue-gray);
}

#app-image-box .image-bg {
	position: relative;
	float: right;
	top: 30px;
	width: 100%;
}

#app-image-box .image-bg img {
	width: 100%;
	height: auto;
	display: block;
	content: url("../../images/doctorSearch/network-selection/doctor-network-bg.png");
}

@media (max-width: 991px) {
	#app-image-box {
		float: none;
		overflow: hidden;
		width: 100%;
	}

	#app-image-box .grey-bg {
		width: 50%;
		height: 50px;
	}

	#app-image-box .image-bg {
		top: 35px;
		width: 100%;
		height: auto;
	}
}

@media (min-width: 992px) {
	#app-image-box {
		margin-bottom: 50px;
	}
}

/***********************************************
 * Home
 ***********************************************/
@media (min-width: 992px) {
	#app-home-content {
		width: 48%;
	}
}

#app-home-description {
	margin: 0 auto 30px auto;
}

#app-home-description p {
	margin: 0;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}

#app-home-description b {
	color: var(--color-success);
}

#app-home-description a {
	color: var(--color-prudential-red);
	text-decoration-line: none;
}

#app-home-form p {
	margin: 0;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; /* 157.143% */
}

@media (max-width: 991px) {
	.app h1 {
		margin: 40px 0;
	}

	#app-home h1 {
		margin-bottom: 20px;
	}

	#app-home-description {
		margin-bottom: 40px;
	}
}

/***********************************************
 * Route to mypru
 ***********************************************/
.app-content iframe {
	min-height: 950px;
	height: 100%;
	width: 100%;
	border: none;
}

.input-wrapper .mt-form__iconbtn {
	padding-bottom: 15px !important;
}

.text-secondary-gray {
	color: var(--secondary-prudential-gray, #68737a) !important;
}

.moon-icon-Eye-Off:before {
	content: "\e930";
}

.form-group.form-group--lg .input-wrapper .mt-form .form-control ~ label {
	line-height: 28px !important;
	top: 20px;
}

#corporate-input .input-wrapper .input-tips:nth-child(2) {
	margin-top: 10px;
}

.mt-form__iconbtn {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.moon-icon-Eye-Off:before {
	content: "\e930";
}
.moon-icon-Eye:before {
	content: "\e931";
}
.moon-icon-Eye:before {
	content: "\e931";
}
