/*
*   share.CSS
***************************************************************************** */
.button-share {
	 position: relative;
	 width: 5em;
	 height: 1.4em;
}

.button-share_input { display: none; }

.button-share_input:checked ~ .button-share_toggle .button-share_icon {
	 transition: 0s;
	 width: 0;
	 height: 0;
	 color: #639eff;
}
.button-share_input:checked ~ .button-share_toggle .button-share_icon::before {
	 transform: rotate(-45deg);
}
 .button-share_input:checked ~ .button-share_toggle .button-share_icon::after { transform: rotate(45deg); }

 .button-share_input:checked ~ .button-share_options {
	 width: 8.8em;
	 height: 13em;
	 border-radius: 0.3125em;
}
 .button-share_input:checked ~ .button-share_options::before, .button-share_input:checked ~ .button-share_options li {
	 transition: 0.3s 0.15s;
	 opacity: 1;
	 transform: translateY(0);
     background-color: #E6E6E6;
}
 .button-share_toggle, .button-share_options {
	 position: absolute;
	 right: 0;
	 width: inherit;
	 height: inherit;
	 border-radius: 25%;
	 background-color: rgb(245,230,205);
}

 .button-share_input:checked ~ .button-share_options {
	padding: 1.75em 1.2em;
	background-color: #E6E6E6;
}

 .button-share_toggle {
	 cursor: pointer;
	 z-index: 1;
	 display: flex;
	 justify-content: center;
	 align-items: center;
     font-size: 14px;
     font-weight: 500;
     padding-top: 6px;
	 color: #232323;
}

 .button-share_options {
	 list-style: none;
	 margin: 0;
	 padding: 1em 1.25em;
	 box-sizing: border-box;
	 overflow: hidden;
	 color: #353535;
	 transition: 0.2s;
	 box-shadow: 0 0.125em 0.125em rgba(0, 0, 0, 0.3);
}
 .button-share_options::before {
	 display: block;
	 font-weight: 700;
}
 .button-share_options li {
	 font-size: 1em;
	 color: #363636;
}
.button-share_options li:hover:not(:last-child) {
    color: rgb(38, 118, 82);
    font-size: 18px;
}
 .button-share_options li:not(:last-child) {  margin-bottom: 0.5em; }

 .button-share_options::before, .button-share_options li {
	 opacity: 0;
	 transform: translateY(0.625em);
	 transition: 0s;
}

.button-share_options button { cursor: pointer; }

.button-share_options #copy-clipboard {
	color: rgb(38, 118, 82);
	background-color: transparent;
    border: 0px;
    font-size: 0.9575em;
}

.button-share_options #copy-clipboard:hover { cursor: pointer; }

.button-share_options .sms-disclaimer {
	font-size: 13px;
	color: #353535;
	margin: 3px -10px 0;
}
.button-share_options .sms-disclaimer:hover { font-size: 13px; }

/* Facebook Share styling */
.button-share_options .fb-share-button iframe { color: rgb(38, 118, 82) !important; }
.button-share_options .fb-share-button iframe:hover { font-size: 18px !important; }


/* ========================================================================== */
/* Media Breakpoints */
/* ========================================================================== */
@media screen and (max-width: 992px), (max-device-width: 992px) {
	.button-share_input:checked ~ .button-share_options {
	   	 width: 10em;
	   	 height: 14.5em;
	}

	.button-share_input:checked ~ .button-share_options::before, .button-share_input:checked ~ .button-share_options li { height: 24px; }

	.button-share_options .sms-disclaimer { height: auto; }
}
