.lx-container {
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  max-width: 100%; }
  @media screen and (min-width: 1800px) {
    .lx-container {
      max-width: 1440px; } }

.lx-share--sticky {
  display: none;
  position: absolute;
  top: unset;
  right: unset;
  padding: 20px;
  min-width: 280px;
  width: fit-content;
  height: fit-content;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
  z-index: 10; }
  .lx-share--sticky::after {
    content: '';
    height: 15px;
    width: 15px;
    position: absolute;
    background-color: #FFFFFF;
    top: -8px;
    right: 35px;
    border-top: rgba(0, 0, 0, 0.1) solid 1px;
    border-left: rgba(0, 0, 0, 0.1) solid 1px;
    transform: rotate(45deg); }
  .lx-share--sticky.active {
    display: block; }
  .lx-share--sticky.float::after {
    top: auto;
    bottom: -8px;
    border-top: 0;
    border-left: 0;
    border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
    border-right: rgba(0, 0, 0, 0.1) solid 1px; }
.lx-share--popup {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
  transition: all .5s ease; }
  .lx-share--popup.active {
    visibility: visible;
    opacity: 1;
    z-index: 1000000110; }
    .lx-share--popup.active .lx-share__wrapper {
      bottom: -2px; }
.lx-share__wrapper {
  position: fixed;
  top: unset;
  left: 0;
  right: 0;
  bottom: -100%;
  background: #FFFFFF;
  border-radius: 8px 8px 0 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0px -4px 7px;
  box-sizing: border-box;
  overflow-y: scroll;
  z-index: -1;
  transition: all 1s ease;
  padding: 10px 20px; }
  @media screen and (min-width: 1024px) {
    .lx-share__wrapper {
      top: 50%;
      left: 50%;
      max-width: 560px;
      height: fit-content;
      border-radius: 8px;
      transform: translate(-50%, -50%); } }
.lx-share__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px; }
.lx-share__title {
  color: #000;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 0; }
  .lx-share__title.text-large {
    font-size: 20px;
    margin-top: 5px; }
.lx-share__close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent;
  border: none;
  padding: 0;
  line-height: 0;
  width: fit-content;
  height: fit-content; }
.lx-share__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; }
  .lx-share__grid .item {
    display: flex;
    align-items: center;
    justify-content: center; }
.lx-share__list .item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5; }
  .lx-share__list .item:first-child {
    padding-top: 0; }
  .lx-share__list .item:last-child {
    border-bottom: unset; }
  .lx-share__list .item__icon {
    width: 35px;
    height: 35px;
    border: 1px solid #E5E5E5;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .lx-share__list .item__icon i {
      font-size: 18px;
      color: var(--color-text); }
  .lx-share__list .item__text span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: var(--color-text); }
.lx-share__btn {
  width: 100%;
  height: auto;
  background: transparent;
  border: 1px solid #6B6B6A;
  border-radius: 50px;
  padding: 4px 15px 4px 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 6px; }
  .lx-share__btn .icon {
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .lx-share__btn .icon i {
      font-size: 16px;
      color: #000000; }
  .lx-share__btn .text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; }
.lx-share__link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 2px 10px;
  border-radius: 50px;
  border: 1px solid #CECECE;
  background: #F2F2F2;
  user-select: none;
  /* Prevent text selection */
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */ }
  .lx-share__link span {
    display: block;
    width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    user-select: none;
    /* Prevent text selection */
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    color: #000000;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; }
  .lx-share__link button {
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    margin-left: 5px;
    color: #FFFFFF;
    white-space: nowrap;
    border: 1px solid #CECECE;
    border-radius: 50px;
    background-color: #2E3442;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; }
    .lx-share__link button i {
      font-size: 16px;
      color: #FFFFFF; }
.lx-share.bottom .lx-share__content {
  top: auto;
  bottom: 65px; }
  .lx-share.bottom .lx-share__content::after {
    top: auto;
    bottom: -8px;
    border-top: 0;
    border-left: 0;
    border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
    border-right: rgba(0, 0, 0, 0.1) solid 1px; }

/*# sourceMappingURL=longform.css.map */
