/**
 * Comic Concepts WooCommerce — Frontend Styles
 *
 * Share modal, loading icons, and close button styles.
 *
 * @package CC_WooCommerce
 * @since   1.0.0
 */

/* ==========================================================================
   Share Product Modal
   ========================================================================== */

#rd-share-modal-cont {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba( 0, 0, 0, 0.8 );
	z-index: 10;
	display: none;
}

#rd-share-modal {
	max-width: 500px;
	background-color: #fff;
	padding: 20px;
	margin: 15% auto 0 auto;
	position: relative;
}

#rd_modal_share label {
	display: block;
	margin: 0 0 10px 0;
}

#rd_modal_share label strong {
	display: block;
}

#rd_modal_share label input {
	width: 100%;
	margin: 5px 0 10px 0;
	color: #000;
}

.rd_modal_share_error {
	color: red;
	font-size: 12px;
	display: none;
}

.rd_modal_share_success {
	color: green;
	font-size: 12px;
	display: none;
}

/* ==========================================================================
   Shared UI elements
   ========================================================================== */

.rd-loading-icon {
	margin: 0 0 0 10px;
}

.rd-close {
	color: red;
	padding: 10px;
	text-decoration: underline;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media only screen and ( max-width: 560px ) {
	#rd-share-modal {
		margin: 20% 10px 0 10px;
	}
}
