.announcement {
  margin: 0 auto 40px;
  max-width: 600px;
  padding: 0;
  text-align: center;
}
.announcement_btn {
  background-color: transparent;
  border: none;
  color: #0083cd;
  font-size: 14px;
  padding: 0 14px;
  position: relative;
  pointer-events: auto;
  cursor: pointer;
  &::before {
    color: #0083cd;
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 2px solid #0083cd;
    border-right: 2px solid #0083cd;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
  }
  &::after {
    color: #0083cd;
    content: '';
    position: absolute;
    width: 70%;
    height: 7px;
    border-bottom: 1px solid #0083cd;
    right: 0;
    left: 0;
    bottom: -8px;
    margin: auto;
  }
}
.announcementModal {
  border: none;
  display: none;
  /* background-color: transparent; */
  background-color: rgba(0, 0, 0, .8);
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
.announcementModal[open] {
  display: block;
}
.announcementModal:-internal-dialog-in-top-layer::backdrop {
  /* background-color: rgba(0, 0, 0, .8); */
  background-color: transparent;
}
.announcementModal_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.announcementModal_contents {
  background-color: #fff;
  max-width: 700px;
  position: relative;
  width: 90%;
}
.announcementModal_contents_inner {
  padding: 40px 0;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.announcementModal_close {
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 70px;
  font-weight: 400;
  pointer-events: auto;
  position: absolute;
  inset: -47px -36px auto auto;
  display: block;
  align-items: flex-start;
  line-height: .6em;
  outline: 0;
}
.announcementModal_table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 90%;
}
.announcementModal_table.personal {
  margin: 50px auto 0;
}
.announcementModal_table_head,
.finished_plans_head {
  color: #333;
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 4%;
  line-height: 1.4em;
  text-align: center;
}
.announcementModal_table_head span {
  font-size: .74em;
}
.finished_plans_head span {
  font-size: .74em;
}
.announcementModal_table tbody th {
  font-size: 20px;
  padding: 6px 0;
  vertical-align: middle;
  text-align: center;
}
.announcementModal_table tbody td {
  font-size: 16px;
  padding: 8px 0;
  vertical-align: middle;
}
.announcementModal_table tbody > tr:nth-of-type(1) > th:not(:last-of-type) {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
.announcementModal_table tbody > tr:nth-of-type(1) > th:last-of-type {
  background-color: #174e6b;
  color: #fff;
  font-weight: bold;
}
.announcementModal_table tbody > tr:nth-of-type(1) > th:not(:first-of-type):not(:last-of-type) {
  border-left: 1px solid #333;
}
.announcementModal_table tbody > tr:not(:first-of-type) > td:not(:last-of-type) {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  text-align: center;
}
.announcementModal_table tbody > tr:not(:first-of-type) > td:last-of-type {
  background-color: rgb(112 203 255 / .3);
  border-bottom: 1px solid #333;
  font-weight: bold;
  text-align: center;
}
.announcementModal_table tbody > tr:last-of-type > td {
  border-bottom: none !important;
}
.finished_plans {
  padding: 50px 0 0;
}
.finished_plans_lists {
  margin: 0 auto;
  width: 90%;
}
.finished_plans_list {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
  list-style-type: disc;
  list-style-position: inside;
}
.announcementModal_caption {
  color: #000;
  font-size: 14px;
  margin: 40px auto 0;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .announcementModal_table_head,
  .finished_plans_head {
    font-size: 18px;
  }
  .announcementModal_table tbody th {
    font-size: 12px;
  }
  .announcementModal_table tbody td {
    font-size: 12px;
  }
  .announcementModal_close {
    inset: -47px -6px auto auto;
  }
  .finished_plans_list {
    font-size: 14px;
    margin: 0 0 6px;
  }
  .announcementModal_caption {
    font-size: 12px;
    margin: 30px auto 0;
  }
}
