


.hcp-modal {
	position: fixed;
	z-index: 5000;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: none;
}

.hcp-modal.show {
	display: block;
}

.hcp-modal .inner {
	position: relative;
	width 100%;
	height: 100%;
}

.hcp-modal .inner .modal {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	
	
	background-image: var( --modal-image-d );
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	
	border-radius: 6px;
	overflow: hidden;
}

.hcp-modal .inner .copy {
	position: relative;
	width: 843px;
	height: 283px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.hcp-modal .inner .copy::after {
	content: "";
	width: 18px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: #DC582B;
	background: linear-gradient(180deg,rgba(220, 88, 43, 1) 0%, rgba(65, 182, 230, 1) 100%);
}

.hcp-modal .inner .copy::before {
	content: "";
	width: 223px;
	height: 48px;
	position: absolute;
	left: 30px;
	bottom: 27px;
	background-image: var( --logo-image );
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.hcp-modal .inner .copy .message, .hcp-modal .inner .copy .message p {
	color: #fff;
	font-weight: 300;
}

.hcp-modal .inner .copy .links {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 40px;
	
}

.hcp-modal .inner .copy .links a {
	background-color: #DC582A;
  	color: #fff;
  	min-width: 0px;
  	min-height: 0px;
  	margin-left: 20px;
  	margin-right: 20px;
}

.hcp-modal .inner .copy .links a#enter-patient {
	background-color: #41B6E6;
}

@media (max-width: 991px) {
	.hcp-modal .inner .modal {
		background-image: var( --modal-image-m );
		
	}
	
	.hcp-modal .inner .copy {
		width: 336px;
		height: 283px;
	}
	
	.hcp-modal .inner .copy::after {
		width: 10px;
	}
	
	.hcp-modal .inner .copy::before {
		width: 168px;
		height: 36px;
		left: 50%;
		bottom: 23px;
		transform: translate(-50%, 0%);
	}
	
	.hcp-modal .inner .copy .message {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.hcp-modal .inner .copy .message, .hcp-modal .inner .copy .message p {
		text-align: center;
	}
	
	.hcp-modal .inner .copy .links {
		flex-direction: column;
		margin-top: 20px;
	}
	
	.hcp-modal .inner .copy .links a {
		margin-left: 0px;
		margin-right: 0px;
		margin-bottom: 10px;
		min-width: 176px;
	}

}