.btnEmbed {
  cursor:pointer;
}
.modal-window {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.25);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*opacity: 0;*/
	display:none;
  /*pointer-events: none;*/
  transition: all 0.3s;
}
#close-model {
  position:absolute;
  right:-1em;
  top:-1em;
  display:block;
  color:white;
  background:red;
  padding:1em;
  border-radius:2em;
}
.modal-window > div {
 width: 600px;
 position: absolute;
 z-index:10000;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 padding: 2em;
 border:solid 1px grey;
 background: white;
}
.modal-close {
  color: #aaa;
  line-height: 50px;
  font-size: 80%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
}
.social-sharing-buttons__popup_embed{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  background-color: black;
  color: white;
  font-size: small;
  padding: 4px;
  border-radius: 3px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all .5s ease;
}

.social-sharing-buttons__popup_embed.visible {
  opacity: 1;
  height: auto;
  overflow: unset;
}

.social-sharing-buttons__popup_embed:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid black;
}

