@charset "UTF-8";

[data-icon]:before {
  font-family: "nectar" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "nectar" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-social-twitter:before {
  content: "\62";
  padding-top: 8px;
}


@keyframes twtfade {
    0%   { @include opacity(0);   }
  100% { @include opacity(100); }
}
@-webkit-keyframes twtfade {
    0%   { @include opacity(0);   }
  100% { @include opacity(100); }
}

/* button body */
.twtshare {
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-left: -35px;
    background: #1dcaff;
    color: #FFF;
    width: 70px;
    height: 35px;
    display: block;
    -webkit-animation-name: twtfade;
    animation-name: twtfade;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    cursor: pointer;
    text-decoration: none;
}

/* button bottom arrow */
.twtshare:after {
    margin-top: -8px;
    margin-left: -7px;
    left: 50%;
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 7.5px 0 7.5px;
    border-color: #1dcaff transparent transparent transparent;
    -moz-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    -ms-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

/* button icon */
.twtshare:before {
    display: block;
    width: 70px;
    height: 35px;
    line-height: 39px;
    font-size: 18px;
    text-align: center;
}