.wsssb {

}
.wsssb__dark {
  color: white;
}
.wsssb__light {
  color: black;
}
.wsssb__icon {
  width: 100%;
  max-width: 30px;
  height: auto;
}
.wsssb__buttons-container--inline {

}
.wsssb__buttons-container--inline .wsssb__icon {
  max-width: 1rem;
}
.wsssb__buttons-container--floating {
  position: fixed;
  top: 50%;
  right: 0;

  width: 48px;
  height: 48px;

  transform: translateY(-50%);
  text-align: center;

  background: red;

  line-height: 48px;
}
.wsssb__share-btn.wsssb__light {
  color: black;
  border: 2px solid #eee;
  background-color: #eee;
}
.wsssb__share-btn.wsssb__dark {
  color: white;
  border: 2px solid #000;
  background-color: #000;
}
.wsssb__share-btn {
  position: relative;

  width: 50px;
  height: 50px;
  padding: 0;

  transition: width 0.4s;

  color: #fff;
  border: 2px solid #eee;
  border-radius: 50px;
  background-color: #eee;
}
.wsssb__share-btn:hover {
  width: 180px;

  transition: width 0.4s;
}

.wsssb__share-btn img {
  transition: opacity 0.2s;

  opacity: 1;
}

.wsssb__share-btn:hover img {
  transition: opacity 0.2s;

  opacity: 0;
}

.wsssb__share-btn .button-text {
  position: absolute;
  left: 0;

  width: 100%;

  transition: opacity .2s;

  opacity: 0;
  color: inherit;
}

.wsssb__share-btn:hover .button-text {
  transition: opacity 0.5s;

  opacity: 1;
}

.wsssb__dialog-title {
  margin: 0;
}


html.-wsssb-share-options-visible {
  overflow-y: hidden!important;
}
html.-wsssb-share-options-visible body:before{
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  content: "";

  background-color: rgba(0,0,0,0.6);
}
.wsssb__share-option {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  height: auto;
  padding: 8px;

  cursor: pointer;
  transition: opacity .25s ease-in-out;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  text-transform: capitalize;

  color: white;
  border-radius: 4px;
  background-color: #eee;
}
.wsssb__share-option:hover {
  color: white;
}
.wsssb__share-option--inactive {
  opacity: 0.25;
}
#wsssbShareFacebook {
  background-color: #4267B2;
}
#wsssbShareTwitter {
  background-color: #1DA1F2;
}
#wsssbShareLinkedIn {
  background-color: #0072b1;
}
#wsssbShareEmail {
  background-color: #DB4437;
}
.copy-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  height: auto;
  padding: 8px;

  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  text-transform: capitalize;

  color: white;
  border-radius: 4px;
  background-color: #a9a9a9;
}
.wsssb__share-options {
  position: fixed;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}
.wsssb__share-options {
  z-index: -1;

  display: none;

  width: 95%;
  max-width: 500px;
  padding: 20px;

  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,.15);
}

.wsssb__share-options.is-open {
  z-index: 99999;

  display: block;
}

.wsssb__header {
  display: flex;
  justify-content: space-between;

  margin-bottom: 20px;
}

.wsssb__targets {
  display: grid;

  margin-bottom: 20px;

  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.wsssb__close-button {
  padding: 0;

  border: none;
  background-color: transparent;
}

.wsssb__close-button svg {
  margin-right: 0;
}

.wsssb__link {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px;

  border-radius: 4px;
  background-color: #eee;
}

.wsssb__share-url {
  overflow: hidden;

  margin-right: 15px;

  white-space: nowrap;
  text-overflow: ellipsis;
}
