#poster_choose_kol {
  width: 1200px;
  height: 326px;
  border-radius: 12px;
  background-image: url("/static/img/landing/community/poster_choose_kol_lg_en.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#poster_choose_kol:lang(zh) {
  height: 306px;
  background-image: url("/static/img/landing/community/poster_choose_kol_lg_zh.png");
}

#poster_coming_soon {
  width: 1200px;
  height: 284px;
  background-image: url("/static/img/landing/community/poster_coming_soon_lg_en.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;

  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}

#poster_coming_soon:lang(zh) {
  background-image: url("/static/img/landing/community/poster_coming_soon_lg_zh.png");
}

#box_communities {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 24px;
}

.community_card {
  display: flex;
  justify-content: space-between;
  gap: 72px;
  padding-bottom: 40px;
  border-bottom: 1px var(--color-greyLight) solid;
}

.community_card:last-child {
  border-bottom: 0px;
}

.community_card .box_left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community_card .box_right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community_card .card_title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.community_card .kol_icon {
  height: 40px;
  border-radius: 50px;
}

.community_card .community_name {
  font-size: 18px;
}

.community_card .community_languages {
  height: 28px;
  line-height: 28px;
  padding: 0px 8px;
  background-color: var(--color-greyLight);
  font-size: 12px;
  color: var(--color-greyMedium);
  border-radius: 40px;
  white-space: nowrap;
}

.community_card .community_url {
  height: 28px;
  display: flex;
  gap: 4px;
  width: max-content;
  align-items: center;
  border-radius: 40px;
  border: 1px var(--color-greyLight) solid;
  font-size: 12px;
  color: var(--color-greyMedium);
  text-decoration: none;
  padding: 0px 8px;
  white-space: nowrap;
}

.community_card .community_description {
  font-size: 14px;
}

.community_card button {
  font-size: 14px;
  width: 154px;
  height: 44px;
  white-space: nowrap;
}

.community_card button.btn_left,
.community_card a.btn_left {
  display: none;
}

.community_card button.btn_right,
.community_card a.btn_right {
  display: flex;
}

#modal_update_referral .modal-content {
  width: 350px;
  padding: 32px;
}

#modal_update_referral .modal-header {
  padding: 0px;
  border: 0px;
}

#modal_update_referral .modal-body {
  padding: 32px 0px;
  border: 0px;
}

#modal_update_referral .modal-footer {
  padding: 0px;
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#modal_update_referral .modal-footer button {
  width: 135px;
  height: 40px;
  font-size: 14px;
}

#modal_update_referral .modal-footer button.btn_cancel {
  color: var(--color-greyMedium);
  border: 1px var(--color-greyLight) solid;
  border-radius: 10px;
  background-color: transparent;
}

#modal_update_referral .modal-footer button.btn_cancel:hover {
  background-color: var(--color-greyLight);
}

@media (max-width: 1300px) {
  #poster_choose_kol {
    width: 588px;
    height: 208px;
    background-image: url("/static/img/landing/community/poster_choose_kol_md_en.png");
  }

  #poster_choose_kol:lang(zh) {
    height: 186px;
    background-image: url("/static/img/landing/community/poster_choose_kol_md_zh.png");
  }

  #poster_coming_soon {
    width: 588px;
    height: 340px;
    background-image: url("/static/img/landing/community/poster_coming_soon_md_en.png");
  }

  #poster_coming_soon:lang(zh) {
    background-image: url("/static/img/landing/community/poster_coming_soon_md_zh.png");
  }

  .community_card {
    gap: 40px;
  }

  .community_card button.btn_left,
  .community_card a.btn_left {
    display: flex;
  }

  .community_card button.btn_right,
  .community_card a.btn_right {
    display: none;
  }
}

@media (max-width: 768px) {
  #poster_choose_kol {
    width: 350px;
    height: 292px;
    background-image: url("/static/img/landing/community/poster_choose_kol_sm_en.png");
  }

  #poster_choose_kol:lang(zh) {
    height: 292px;
    background-image: url("/static/img/landing/community/poster_choose_kol_sm_zh.png");
  }

  #poster_coming_soon {
    width: 350px;
    height: 340px;
    background-image: url("/static/img/landing/community/poster_coming_soon_sm_en.png");
  }

  #poster_coming_soon:lang(zh) {
    background-image: url("/static/img/landing/community/poster_coming_soon_sm_zh.png");
  }

  .community_card {
    gap: 24px;
  }

  .community_card .community_name {
    font-size: 16px;
  }
}
