.post-meta{
  padding-top: 20px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

#share-btn {
  color: #6C757D;
  font-size: 16px;
  cursor: pointer;
}

#close-btn {
  font-size: 24px;
  cursor: pointer;
}

#copy-link-icon {
  font-size: 24px;
}

img#share-btn{
  width: 24px;
  height: 24px;
}

#share-container{
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

#share-text {
  color: #6C757D;
  font-family: Arial, 'Noto Sans HK';
  font-weight: 400;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: 0.04em;
}

#sharing-modal{
  display:none;
  position: absolute;
  right: -1%;
  top: -10px;
  z-index: 100;
  cursor: initial;
}

#modal-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid #DEE2E6 1px;
  padding-bottom: 17px;
}
  
img#close-btn{
  height: 24px;
  width: 24px;
  cursor: pointer;
}

#modal-header-text{
  font-size: 18px
}

div#sharing-modal{
  background-color:white;
  box-shadow: 0px 4px 8px rgba(16, 24, 32, 0.1);
  border-radius: 16px;
  padding: 16px;
  width: 300px;
}

div#sharing-content{
  padding-top: 16px;
}

div#sharing-content-text{
  font-size: 14px;
}

div#sharing-icons-container{
  margin-top: 5px;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

div.sharing-icon-container{
  height: 46px;
  width: 46px;
  border: 1px solid #DEE2E6;
  border-radius: 4px;
  display:flex;
  align-items: center;
  justify-content: center;
}

img.sharing-icon{
  width: 24px;
  height: 24px;
}
  
#copy-link-text{
  margin-top: 16px;
  font-size: 14px;
}

div#copy-link-btn-container{
  margin-top: 5px;
  background-color: #E50020;
  border-radius: 4px;
  width: 122px;
  height: 40px;
  color: white;
}

#copy-link-btn{
  height: 100%;
  width: 100%;
  background-color: transparent;
  font-size: 16px;
}

#copy-link-btn > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sharing-icon{
  cursor: pointer;
}

@media screen and (min-width: 991px){
  .post-meta{
    align-items: center;
    padding-bottom: 20px;
  }
}