.modal-shares{
  position: fixed;
  left: 50%;
  background: #262626;
  padding: 25px;
  border-radius: 15px;
  top: 10%;
  max-width: 380px;
  width: 100%;
  opacity: 0;
  z-index: 99;
  pointer-events: none;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  transform: translate(-50%, -50%) scale(1.2);
  transition: top 0s 0.2s ease-in-out,
              opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;
}

.modal-shares.show{
  top: 50%;
  left: 50%;
  opacity: 1;
  pointer-events: auto;
  transform:translate(-50%, -50%) scale(1);
  transition: top 0s 0s ease-in-out,
              opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;

}

.modal-shares :is(header, .icons-shares, .field-shares){
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-shares header{
  padding-bottom: 15px;
  border-bottom: 1px solid #ebedf9;
}

.modal-shares header span{
  font-size: 21px;
  font-weight: 600;
}

.modal-shares header .close-shares, .icons-shares a{
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.modal-shares header .close-shares{
  color: #878787;
  font-size: 17px;
  background: #f3f3f3;
  height: 33px;
  width: 33px;
  cursor: pointer;
}

.modal-shares header .close-shares:hover{
  background: #ebedf9;
}

.modal-shares .content-shares{
  margin: 20px 0;
}

.modal-shares .icons-shares{
  margin: 15px 0 20px 0;
}

.content-shares p{
  font-size: 16px;
}

.content-shares .icons-shares a{
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid transparent;
}

.icons-shares a i{
  transition: transform 0.3s ease-in-out;
}

.icons-shares a:nth-child(1){
  color: #1877F2;
  border-color: #b7d4fb;
}

.icons-shares a:nth-child(1):hover{
  background: #1877F2;
}

.icons-shares a:nth-child(2){
  color: #46C1F6;
  border-color: #b6e7fc;
}

.icons-shares a:nth-child(2):hover{
  background: #000000;
}

.icons-shares a:nth-child(3){
  color: #e1306c;
  border-color: #f5bccf;
}

.icons-shares a:nth-child(3):hover{
  background: #25d366;
}

.icons-shares a:nth-child(4){
  color: #25D366;
  border-color: #bef4d2;
}

.icons-shares a:nth-child(4):hover{
  background: #25D366;
}

.icons-shares a:nth-child(5){
  color: #0088cc;
  border-color: #b3e6ff;
}

.icons-shares a:nth-child(5):hover{
  background: #0088cc;
}

.icons-shares a:hover{
  color: #fff;
  border-color: transparent;
}

.icons-shares a:hover i{
  transform: scale(1.2);
}

.content-shares .field-shares{
  margin: 12px 0 -5px 0;
  height: 45px;
  border-radius: 4px;
  padding: 0 5px;
  border: 1px solid #757171;
}

.field-shares.active{
  border-color: #7d2ae8;
}

.field-shares i{
  width: 50px;
  font-size: 18px;
  text-align: center;
}

.field-shares.active i{
  color: #7d2ae8;
}

.field-shares input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
}

.field-shares button{
  color: #fff;
  padding: 5px 18px;
  background: #7d2ae8;
}

.field-shares button:hover{
  background: #8d39fa;
}

.button-shares{
  outline: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 4px;
  border: 2px solid transparent;
  margin-left:5px;
  transition: background 0.1s linear, border-color 0.1s linear, color 0.1s linear;
}

.locked-shares {
  overflow: hidden;
}

