.d_myCertificate_share {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
}

.d_myCertificate_shareOverlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.8);
	cursor: pointer;
}

.d_myCertificate_shareContainer {
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border-radius: 3px;
	padding: 25px;
	width: 80%;
	max-width: 540px;
}

.d_myCertificate_shareTitle {
	margin-bottom: 17px;
	color: #111;
	font-size: 18px;
	font-weight: 500;
}

.d_myCertificate_shareLink {
	position: relative;
}

.d_myCertificate_shareInput {
	border-radius: 3px;
	background: hsla(0,0%,97.6%,.95);
	color: #757575;
	font-size: 15px;
	width: 100%;
	padding: 17px 53px 17px 15px;
	display: block;
	border: 1px solid #e1e1e1;
	-webkit-appearance: none;
	appearance: none;
}

.d_myCertificate_shareBtn {
	color: #111;
	font-weight: 600;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	font-size: 14px;
	background: hsla(0,0%,97.6%,.95);
	cursor: pointer;
}

.d_myCertificate_shareIcons {
	margin-top: 20px;
}

.d_myCertificate_shareIcon {
	width: 100%;
	background: #3b5998;
	color: #fefefe;
	padding: 8px 10px;
	border-radius: 3px;
	margin-bottom: 7px;
	display: flex;
	cursor: pointer;
}

.d_myCertificate_shareIcon.linkedin {
	background: #0077b5;
}

.d_myCertificate_shareIcon:hover {
	opacity: 0.9;
}

.d_myCertificate_shareIcon .d_fontAwesomeIcon {
	display: flex;
	align-items: center;
}

.d_myCertificate_shareIcon img {
	width: 16px;
	height: 18px;
	filter: invert(99%) sepia(0%) saturate(2%) hue-rotate(312deg) brightness(106%) contrast(100%);
	margin-right: 7px;
}

.d_myCertificate_shareClose {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}

.d_myCertificate_shareClose .d_fontAwesomeIcon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.d_myCertificate_shareClose img {
	margin: auto;
	width: 26px;
	height: 26px;
}

@media (min-width: 768px) {
	.d_myCertificate_shareContainer {
		padding: 22px 25px;
	}

	.d_myCertificate_shareIcons {
		display: flex;
	}

	.d_myCertificate_shareIcon {
		width: auto;
	}

	.d_myCertificate_shareIcon:not(:last-of-type) {
		margin-right: 10px;
	}
}