
#share_modal {
	z-index: 1000;
	position: fixed;
	opacity: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	backdrop-filter: saturate(180%) blur(10px);
	-webkit-transition: opacity .2s linear;
	   -moz-transition: opacity .2s linear;
	    -ms-transition: opacity .2s linear;
	     -o-transition: opacity .2s linear;
		transition: opacity .2s linear;
	background-color: rgba(0,0,0,.7);
}

#share_modal.closed {
	opacity: 0;
	pointer-events: none;
	-webkit-user-select: none; /* Safari */
	 -khtml-user-select: none; /* Konqueror HTML */
	   -moz-user-select: none; /* Firefox */
	    -ms-user-select: none; /* Internet Explorer/Edge */
	        user-select: none; /* supported by Chrome and Opera */
}

#share_modal-content {
	background-color: #FFFFFF;
	position: absolute;
	top: 10%;
	left: 50%;
	padding: 30px;
	max-height: 80%;
	border-radius: 10px;
	overflow: auto;
	transform: translate(0,0);
	-webkit-transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	   -moz-transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	    -ms-transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	     -o-transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#share_modal.closed #share_modal-content {
	transform: translate(0,40px);
}

@media (max-width: 767px) {
	#share_modal-content {
		margin: 0 0 0 -40%;
		width: 80%;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	#share_modal-content {
		margin: 0 0 0 -25%;
		width: 50%;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#share_modal-content {
		margin: 0 0 0 -20%;
		width: 40%;
	}
}

@media (min-width: 1200px) {
	#share_modal-content {
		margin: 0 0 0 -15%;
		width: 30%;
	}
}

#close_share_modal {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	text-align: center;
	right: 0;
	overflow: hidden;
	cursor: pointer;
	z-index: 2;
	color: #ED1E79;
	margin: 0;
	padding: 5px 0 0 0;
	line-height: 26px;
	font-size: 30px;
}

#share_modal-content {
}

#share_modal .XS {
	font-family: 'Lato', Helvetica, Arial, sans-serif;
}

#share_modal P {
	margin: 0;
	padding: 0;
}

#share_description {
	font-size: 16px;
	line-height: 20px;
}

#share_url {
	padding: 20px 0 10px 0;
	margin: 10px 0;
	color: #333333;
	border: none;
	border-bottom: 1px solid #17A6CA;
	width: 100%;
	display: block;
	font-size: 18px;
	cursor: pointer;
	border-radius: none;
}

#clipboard_confirmation {
	margin: 0;
	padding: 5px 7px;
	text-align: center;
	display: none;
	background-color: green;
	color: #FFFFFF;
	text-shadow: none;
	font-weight: bold;
}

#share_modal UL {
	list-style-type: none;
	margin: 0;
	padding: 10px 0 0 0;
}

#share_modal LI {
	margin: 10px 0 0 0;
	padding: 0;
	display: block;
	font-size: 20px;
	white-space: nowrap;
	vertical-align: middle;
	line-height: 32px;
}

#share_modal LI A {
	color: #17A6CA;
	text-decoration: none;
}

#share_modal IMG {
	width: 32px;
	height: 32px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 0 0;
	transform: scale(.8);
	transition: transform .2s ease-out;
}

#share_modal LI:hover IMG {
	transform: scale(1);
}


