/*********************************************** 
  needShareButton
  - Version 1.0.0
  - Copyright 2015 Dzmitry Vasileuski
  - Licensed under MIT (http://opensource.org/licenses/MIT)

/* Share button
***********************************************/
.need-share-button {
  position: relative;
  display: inline-block;
  float: right;
}

.need-share-button_dropdown {
  position: absolute;
  z-index: 10;

  visibility: hidden;
  overflow: hidden;

  height: 40px;
  width: 200px;

  -webkit-transition: .3s;
          transition: .3s;
  -webkit-transform: scale(.1);
      -ms-transform: scale(.1);
          transform: scale(.1);
  text-align: center;

  opacity: 0;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}
.need-share-button-opened .need-share-button_dropdown {
  visibility: visible;

  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);

  opacity: 1;
}
.need-share-button_dropdown-box-horizontal {
  -webkit-border-radius: 0;
          border-radius: 0;
}
.need-share-button_dropdown-box-horizontal {
	width: 200px;
	white-space: nowrap;
}

.need-share-button_link {

	margin: 0px;
	padding: 0px;
	display: inline-block; 
	width: 40px;
	cursor: pointer;
	text-align: center;
}
.need-share-button_link:after {
  font: normal normal normal 20px/1 'social-icons';
  text-align: center;
  text-transform: none;
  speak: none;
}
.need-share-button_link:hover {
  -webkit-transition: .3s;
          transition: .3s;

  opacity: .7;
}

.need-share-button_link-box {
	padding: 		0;
	margin: 		0;
	line-height:	0;
}

/* Dropdown position
***********************************************/

.need-share-button_dropdown-middle-left {
  top: -20px;
  left:	-110px;
  margin-right: 10px;
}


/* Default theme
***********************************************/
.need-share-button-default .need-share-button_button {
  height: 20px;
  display: inline-block;
  margin: 12px 12px 0px 0px;

  line-height: 24px;
  font-weight: 400;
  color: #333;

  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  
}
.need-share-button-default .need-share-button_dropdown {
  position: absolute;

  background-color: #fff;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .5);
          box-shadow: 0 0 2px rgba(0, 0, 0, .5);
}
/* Network buttons
***********************************************/
