body.hcp {
	overflow: hidden;
}

.hcp-confirmation {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	pointer-events: none;
	opacity: 1;
}

.hcp-confirmation > * {
	pointer-events: auto;
}

.hcp-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.25);
}

.hcp-inner {
	border-width: 1px;
	border-style: solid;
	border-color: #204d74;
	padding: 60px 70px 60px 70px;
	background-color: white;
	width: 790px;
	max-width: 90vw;
	max-height: 90vh;
	overflow: auto;
	position: relative;
	z-index: 1;	
}

h2.hcp-heading {
	
}

.hcp-text {
	
}

.hcp-confirmation .btn {
	min-width: 140px;
	font-weight: 400;
	border: #0063be 2px solid;
	transition: all 0.5s;
}

.hcp-confirmation .btn:hover {
	border-color: #003862;
	background-color: #003862;
}

.hcp-confirmation .hcp-confirm {
	margin-right: 40px;
}

.hcp-confirmation h4.hcp-heading {

}

.hcp-confirmation .hcp-deny {
	background-color: transparent;
	color: #0063be !important;
}

.hcp-confirmation .hcp-deny:hover {
	background-color: #003862;
	color: #fff !important;
}

.hcp-confirmation #q1, .hcp-confirmation #q2  {
	position: relative;
}

.hcp-confirmation #q1.disabled .btn {
	border-color: #777;
	color: #777 !important;
	background-color: transparent;
}

.hcp-confirmation #q1.disabled::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.7);
}

.hcp-confirmation #q2.disabled, .hcp-confirmation #q3.disabled {
	display: none;
}

.hcp-confirmation #q2 label, .hcp-confirmation #q3 label {
	display: block;
	margin: 20px 0 10px;
}

.especialidad {
	box-sizing: border-box;
	display: grid;
	grid-template-areas: "select";
	align-items: center;
	position: relative;
	min-width: 30ch;
	max-width: 40ch;
	border: 2px solid #003862;
	border-radius: 0;
	padding: 0;
	font-size: 1.25rem;
	cursor: pointer;
	line-height: 1.1;
	background-color: #003862;
	background-image: linear-gradient(to top, #003862, #003862 33%);
}

.hcp-confirmation #progress {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.7);
	cursor: default;
	z-index: 2;
}
.hcp-confirmation #progress.disabled {
	display: none;
}

.especialidad::after {
	box-sizing: border-box;
	grid-area: select;
	/*content: "";*/
	content: "\e114";
	font-family: "Glyphicons Halflings";
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	justify-self: end;
	width: 0.8em;
	height: 0.5em;
	margin-right: 12px;
	color: #fff;
	/*background-color: #003862;
	-webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
	clip-path: polygon(100% 0%, 0 0%, 50% 100%);*/
}

.especialidad select {
	appearance: none;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0;
	width: 100%;
	font-family: inherit;
	font-size: inherit;
	cursor: inherit;
	line-height: inherit;
	z-index: 1;
	outline: none;

	box-sizing: border-box;
	grid-area: select;
	
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	padding: 12px 1em 12px 12px;
	line-height: 1.42857143;
	color: #fff;
}

.especialidad select option {
	color: #003862;
}


@media (max-width:600px) {
	.hcp-inner {
		padding: 20px 20px 20px 20px;
		/*text-align: center;*/
	}
}

