.popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.popup .popup-content {
  position: relative;
  background-color: white;
  padding: 40px 24px 24px 24px;
  border-radius: 5px;
  max-width: 90vw;
  font-size: 16px;
}
.popup .close {
  height: 30px;
  width: 30px;
  min-width: auto;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.popup .close:hover {
  background-color: rgba(140, 140, 140, 0.1019607843);
}
.popup #previewImage {
  position: relative;
  margin-top: 10px;
  max-width: 100%;
  width: 658px;
}
.popup #previewImage .back {
  max-width: 100%;
}
.popup #previewImage .overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.popup .postContent {
  outline: none;
  max-width: 658px;
}
.popup .postContent a.link {
  color: #0a66c2;
  font-weight: 600;
  text-decoration: none;
}
.popup .postContent a.link:hover {
  text-decoration: underline;
}
.popup .postBottom {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(140, 140, 140, 0.2);
}
.popup .postBottom .postBottomRight {
  display: flex;
  justify-content: flex-end;
}
.popup .postBottom button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #1a82cc;
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
.popup .postBottom button:hover {
  color: #fff;
  background-color: #1a92cc;
  filter: unset;
}
.popup.disable .postBottom {
  display: none;
}
.popup.disable .postContent {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.popup:not(.disable) .linkedInProf .left {
  align-items: unset;
}
.popup:not(.disable) .linkedInProf .date {
  display: none;
}

.linkedInProf {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.linkedInProf .left {
  display: flex;
  gap: 10px;
  font-size: 13px;
  align-items: center;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
}
.linkedInProf .left .user {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.linkedInProf .left .name {
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.9019607843);
  font-weight: 600;
}
.linkedInProf .left .company {
  font-size: 12px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.6);
}
.linkedInProf .left .date {
  font-size: 12px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 2px;
}
.linkedInProf .right img {
  width: 16px;
}

:root {
  --swal2-confirm-button-background-color: #1a82cc;
}/*# sourceMappingURL=popup.css.map */