@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.kd-map-wrapper {
  background-color: #f5f5f5;
  padding: 20px 0 20px;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #234462;
}

.fw-7 {
  font-weight: 700;
}

.fw-8 {
  font-weight: 800;
}

.dengue-hotspot-wrapper {
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
}

.item-list-wrapper {
  margin-right: 25px;
  width: 100%
}
@media screen and (min-width: 900px) {
  .item-list-wrapper {
    margin-right: 25px;
    width: 400px;
  }
}

.search-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 5px 14px;
  border-radius: 8px;
  box-shadow: 0 3px 3px #d1d1d1;
}

.search-container input {
  border: none;
  outline: none;
  width: 100%;
}

.search-container input::-webkit-calendar-picker-indicator {
  display: none !important;
}

.search-container img {
  width: 30px;
  height: 30px;
}

.item-list {
  background-color: #fff;
  margin-top: 20px;
  height: 473px;
  overflow-x: hidden;
  overflow-y: scroll;
  box-shadow: 0 3px 8px #d1d1d1;
  min-width: 400px;
}
@media (max-width: 400px) {
  .item-list{
    min-width: 336px;
  }
  .search-container {
    top: 4%;
  }
}
.info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cases {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.arrow-icon-container {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.collapse-container {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.copy-container {
  padding-top: 10px;
  display: flex;
  font-size: 13px;
}

.copy-container input {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  border-right: none;
  padding: 6px 10px;
  width: calc(100% - 5rem);
  max-width: 336px;
  background-color: #d5d5d5;
  border: unset;
  font-weight: 600;
}

.copy-container button {
  padding: 6px 16px;
  margin-left: -25px;
  border-radius: 16px;
  background: #6ad4b6;
  font-weight: 600;
  background: linear-gradient(90deg, #6ad4b6, #2ba8ab 79%, #0d93a6);
  color: #fff;
  border: unset;
}

.link-container {
  width: 100%;
}

.social-media-container {
  width: 60%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.social-media-container svg {
  cursor: pointer;
}

table thead tr th {
  border-bottom: 1px solid #e0e0e0;
}

table thead tr th:nth-child(1) {
  text-align: left;
  padding-top: 10px;
  padding-left: 12px;
  padding-bottom: 10px;
}

table thead tr th:nth-child(2) {
  text-align: right;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
}

table tbody tr td {
  border-bottom: 1px solid #e0e0e0;
}

table tbody tr td:nth-child(1) {
  text-align: left;
  padding: 15px 0 15px 12px;
}

table tbody tr td:nth-child(2) {
  text-align: right;
  padding: 15px 12px 15px 0;
}

.location-name,
.cases p {
  font-weight: 700;
}

.mobile-description {
  text-align: center;
  margin: 8% 0 10%;
}

.mobile-description h3 {
  font-weight: 800;
}

.mobile-description p {
  font-size: 12px;
}

@media screen and (max-width: 900px) {
  .dengue-hotspot-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .item-list-wrapper {
    margin-right: unset;
    margin: 4% 0;
    width: 100%;
  }

  .item-list {
    height: 310px;
    margin-bottom: 24px;
    min-width: 336px;
  }
}

@media screen and (max-width: 600px) {
  .search-container input {
    border: none;
    outline: none;
    width: 100%;
    padding: 11px 14px;
    border-radius: 4px;
  }
}

.google-map {
  width: 100%;
  height: 644px;
  pointer-events: auto;
}

.google-map-wrapper {
  width: 100vw;
}

.custom-marker {
  background-color: #8b2e2e;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 4px #0006;
  position: relative;
  transform: translateY(-50%);
  transition: opacity 0.3s ease-in-out;
}

.custom-marker:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #8b2e2e;
}

@media screen and (max-width: 900px) {
  .google-map-wrapper,
  .google-map {
    width: 100%;
  }
}

.button-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 16px 16px 0% 0%;
}

.show-btn-mobile {
  display: none !important;
}

@media screen and (max-width: 900px) {
  .button-wrapper {
    justify-content: center !important;
    margin-right: 0;
  }

  .share-btn,
  .cd-btn {
    height: 56px;
  }

  .show-btn-desktop {
    display: none !important;
  }

  .show-btn-mobile {
    display: flex !important;
  }
}

@media screen and (max-width: 320px) {
  .share-btn,
  .cd-btn {
    font-size: 12px;
  }
}

.direction-container {
  width: 25%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.clinic-info p,
.clinic-info a {
  margin-bottom: 5px;
}

.clinic-info a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.clinic-info .address {
  font-size: 12px;
  margin-top: -8px;
}

.clinic-info p {
  font-size: 16px;
}

.clinic-info a p {
  font-size: 14px;
  margin-left: 20px;
}

.case-danger {
  color: #d60000;
}

.case-warning {
  color: #f4b44f;
}

.case-notice {
  color: #70c3ac;
}

.text-case {
  color: #8e8e8e;
  font-size: 9px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: block;
}

.list-header {
  color: #053858;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.location-name {
  color: #053858;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.case-status {
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.map-header {
  padding: 20px;
}

.map-header h1 {
  color: #3D9291;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.map-header .bookmark-block {
  display: flex;
  gap: 10px;
  max-width: 485px;
  margin-top: 20px;
  background: #FDBC00;
  padding: 5px 5px 5px 26px;
  position: relative;
  left: 5px;
  border-radius: 0 0 15px 15px;
}
.map-header .bookmark-block img {
  position: absolute;
  width: 40px;
  left: -18px;
  top: -6px;
}
.map-header .bookmark-block .text-wrapper {
  flex: 1;
}
.item-state .collapse-container {
  max-height: 0px;
  margin-top: 0px;
}

.item-state.open .collapse-container {
  max-height: 514px;
  margin-top: 3px;
}
.item-state.open .arrow-icon-container {
  transform: rotate(180deg) !important;
}

.text-share {
  color: #053858;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 4px;
}

.item-state .link-container {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.item-state .link-container input {
  border-radius: 15px;
  background: #e6e6e6;
  color: #053858;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: 32px;
}

/* Message */
.toast-message {
  position: fixed;
  top: 40px;
  right: 20px;
  background: #4caf50;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}
.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

#dengue-cases-frame {
  font-size: 12px;
  color: #000;
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #ffffff;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: 1px solid #ddd;
  font-family: 'Helvetica', Arial, sans-serif;
  line-height: 1.5;
  text-align: left;
}

#legend {
  position: absolute;
  bottom: 22px;
  right: 12px;
  z-index: 1000;
  border: 1px solid #ddd;
  text-align: left;
}

.case-label {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.7);
  padding: 2px 5px;
  border-radius: 50%;
  white-space: nowrap;
}

#dengue-cases-frame {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: fit-content;
}

#dengue-cases-frame .card-left {
  margin-right: 16px;
}

#dengue-cases-frame .title {
  color: #23506c;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 2px;
}

#dengue-cases-frame .subtitle {
  color: #9c9c9c;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#dengue-cases-frame .divider {
  width: 1px;
  background: #ddd;
  height: 40px;
  margin: 0 16px;
}

#dengue-cases-frame .card-right {
  text-align: center;
}

#dengue-cases-frame .number {
  color: #d60000;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

#dengue-cases-frame .desc {
  color: #8e8e8e;
  text-align: center;
  font-size: 7px;
  font-style: normal;
  font-weight: 300;
  line-height: 5px;
}

#dengue-cases-frame .info-icon {
  margin-left: 8px;
}

#legend {
  width: 300px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
  min-height: 18px;
}

.outbreak-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.circle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  margin-right: 12px;
}

.circle-red {
  border: 2px solid #e53935;
  color: #e53935;
}

.circle-yellow {
  border: 2px solid #fbc02d;
  color: #fbc02d;
}

.circle-green {
  border: 2px solid #43a047;
  color: #43a047;
}

.outbreak-text .title {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}

.outbreak-text p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

.title.red {
  color: #e53935;
}
.title.yellow {
  color: #fbc02d;
}
.title.green {
  color: #43a047;
}

.outbreak-content {
  margin-top: 12px;
}

.outbreak-item:last-child {
  margin-bottom: 0;
}

.button-toggle img {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 8px;
  left: 8px;
  cursor: pointer;
  transform: rotate(180deg);
}

#legend.outbreak-collapse {
  width: max-content;
  padding: 8px;
}

#legend.outbreak-collapse .button-toggle img {
  position: static;
  transform: rotate(0);
}

#legend.outbreak-collapse .outbreak-content {
  display: none;
}

.outbreak-title {
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  display: none;
}

#legend.outbreak-collapse .outbreak-title {
  display: inline-block;
}

.clinics-link {
  text-align: left;
  margin-top: 10px;
}

.clinics-link a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: #163758;
  padding: 11px 14px;
  display: block;
  width: max-content;
  border-radius: 8px;
}

.clinics-link a:focus,
.clinics-link a:hover {
  color: #fff !important;
}

@media screen and (max-width: 600px) {
  #legend {
    width: 236px;
    bottom: 80px;
    left: 15px;
  }
}

.autocomplete-state {
  padding-top: 0 !important;
}

.autocomplete-state .ui-menu-item {
  padding: 6px 4px !important;
}

.autocomplete-state .ui-menu-item-wrapper {
  border: none;
}

.autocomplete-state .ui-menu-item-wrapper.ui-state-active {
  background: linear-gradient(182deg, #6ad4b6, #2ba8ab 79%, #0d93a6);
  color: white;
  border: none;
}

#empty-data td {
  text-align: center;
}

.kd-map-wrapper .dengue_cases {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 20px 32px;
  background: #ffff;
  margin: 20px 0 0 0;
}
.kd-map-wrapper .dengue_cases .total,
.kd-map-wrapper .dengue_cases .title_date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.kd-map-wrapper .dengue_cases .title_date .title {
  font-size: 20px;
  font-weight: 700;
}

.kd-map-wrapper .dengue_cases .title_date .date,
.kd-map-wrapper .dengue_cases .total .total_num_desc {
  font-size: 14px;
  font-weight: 500;
  color: #9c9c9c;
}

.kd-map-wrapper .dengue_cases .total .total_num {
  font-size: 35px;
  font-weight: 600;
  color: #d60000;
}

.kd-map-wrapper .accordion * {
  pointer-events: none;
  text-transform: capitalize;
}

.kd-map-wrapper .parent-accordion {
  font-size: 18px !important;
  font-weight: 800;
}

.kd-map-wrapper .total_spot,
.kd-map-wrapper .total_AOA {
  color: #db1f1f;
}

.kd-map-wrapper .accordion {
  background-color: #ffffff;
  color: #053858;
  cursor: pointer;
  padding: 16px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.kd-map-wrapper .active,
.kd-map-wrapper .accordion:hover {
  background-color: #ffffff;
}

.kd-map-wrapper .accordion:after {
  content: '\002B';
  color: #4eb9b7;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.kd-map-wrapper .active:after {
  content: '\2212';
}

.kd-map-wrapper .accordion.nested {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.kd-map-wrapper .accordion.nested:after {
  content: unset;
}

.kd-map-wrapper .nested.active:after {
  content: unset;
}

.kd-map-wrapper .accordion .icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.kd-map-wrapper .accordion.active .icon {
  transform: rotate(180deg);
}
.kd-map-wrapper .copy-wrapper {
  display: flex;
  justify-content: space-between;
}
.kd-map-wrapper .panel {
  padding: 0 0;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  color: #053858;
  transition: max-height 0.2s ease-out;
  border: 0;
  margin-bottom: 0;
}
.kd-map-wrapper .panel ul li {
  padding: 0 16px 16px;
  border-bottom: 1px solid #d5d5d5;
  font-size: 14px;
}
.kd-map-wrapper .AOA-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #d5d5d5;
  cursor: pointer;
  gap: 5px;
}
.kd-map-wrapper .AOA-item strong {
  flex: 1;
  max-width: 70%;
}
.kd-map-wrapper .information-wraper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  background-color: #ffffff;
  padding: 28px;
  margin-top: 24px;
  margin-left: 20px;
  margin-right: 20px;
}
.kd-map-wrapper .dengue-outbreak-wrapper-desc-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 90.33%;
  flex-wrap: wrap;
  border-right: 1px solid #70707024;
  padding-right: 3rem;
  gap: 30px;
}
.kd-map-wrapper .dengue-hotspot-wrapper-desc,
.kd-map-wrapper .dengue-outbreak-wrapper-desc {
  flex: calc(50% - 15px);
  display: flex;
  align-items: flex-start;
}
.kd-map-wrapper .dengue-hotspot-wrapper-desc img,
.kd-map-wrapper .dengue-outbreak-wrapper-desc img {
  margin-right: 20px;
  height: 60px;
}

.kd-map-wrapper .link-wrapper {
  width: 16%;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 3%;
}
.kd-map-wrapper .cd-btn {
  text-align: center;
  border-radius: 10px;
  padding: 4px 12px;
  height: 42px;
  color: #fff !important;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  background: #163758;  
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kd-map-wrapper .share-btn {
  border-radius: 10px;
  padding: 0 25px;
  height: 42px;
  outline: none;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #78C6AE;
  color: #fff !important;
  border: 1px solid #78C6AE;
  cursor: pointer;
  margin-bottom: 20px;
}
.kd-map-wrapper .hotspot-item {
  cursor: pointer;
}
.faq-section {
  margin-top: 24px;
  background-color: #ffffff;
}
.faq-section .faq-content {
  padding: 30px 15px;
  max-width: 1076px;
  margin-left: auto;
  margin-right: auto;
}
.faq-section h2 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #23506c;
  margin-bottom: 25px;
}

.faq-section .faq-item {
  margin-bottom: 25px;
}

.faq-section .faq-item h3 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #515b61;
  margin-bottom: 5px;
}

.faq-section .faq-item p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #515b61;
}

.notice-section {
  background-color: #ffffff;
}

.notice-section .notice-content {
  padding: 0 15px;
  max-width: 1076px;
  margin-left: auto;
  margin-right: auto;
}

.notice-section {
  font-family: Poppins, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #515b61;
}
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait){
  .kd-map-wrapper .link-wrapper {
    width: 29%;
    padding-right: 0px;
  }
}
@media screen and (max-width: 900px) {
  .kd-map-wrapper .information-wraper {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 30px;
    margin-top: 0;
  }
  .kd-map-wrapper .dengue-outbreak-wrapper-desc
  .kd-map-wrapper .dengue-hotspot-wrapper-desc,
  .kd-map-wrapper .dengue-hotspot-wrapper-desc {
    width: 100%;
  }
  .kd-map-wrapper .dengue-outbreak-wrapper-desc-wrapper {
    padding-bottom: 20px;
    border-bottom: 1px solid #70707024;
    margin-bottom: 20px;
    border-right: 0;
  }
  .kd-map-wrapper .link-wrapper {
    width: 100%;
    padding-right: 25px;
  }

  .kd-map-wrapper .dengue_cases {
    margin-top: 0;
  }
  .faq-section {
    margin-top: 24px;
  }
  .kd-map-wrapper .dengue_cases .title_date .date,
  .kd-map-wrapper .dengue_cases .total .total_num_desc {
    font-size: 12px;
  }
  .kd-map-wrapper .dengue_cases .total .total_num {
    font-size: 28px;
  }
  .kd-map-wrapper .dengue_cases {
    padding: 20px 15px;
  }
}
.map-notice {
  padding: 4rem 0 0;
  margin-top: 15px;
  font-family: "OpenSans-Light", sans-serif;
}
.map-faq {
  font-family: 'Poppins', sans-serif;
  padding: 2rem 2rem 2rem;
  word-break: break-word;
}
.map-faq strong{
  color: #3D9291;
}
.map-faq .faq-header {
  color: #3D9291;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.map-faq p {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .map-notice,
  .map-faq {
    margin: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .kd-map-wrapper {
    position: relative;
  }
  .search-container {
    position: absolute;
    width: 80%;
    top: 7%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    box-shadow: 0 3px 3px #d1d1d1;
  }
  .kd-map-wrapper .dengue-hotspot-wrapper-desc img,
  .kd-map-wrapper .dengue-outbreak-wrapper-desc img {
    height: 50px;
  }
  .kd-map-wrapper .dengue-hotspot-wrapper-desc,
  .kd-map-wrapper .dengue-outbreak-wrapper-desc {
    flex: calc(100% - 15px);
  }
  .kd-map-wrapper .information-wraper {
    text-align: left;
    font-size: 13px;
  }
  .dengue-hotspot-wrapper {
    padding: 0;
  }
}

.info_icon.abs {
  position: absolute;
  right: 9px;        
  top: 20%;
  transform: translateY(-50%); 
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FCBC00;
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  cursor:pointer;
}
.dengue_cases.abs {
  position: relative; 
  padding: 12px 48px 12px 18px; 
}
.title, .dengue-outbreak-wrapper-desc strong, .dengue-hotspot-wrapper-desc strong{
   color: #24516C;
}
.popup {
    display: none;
    position: absolute;
    background: #FEBB00;
    color: #24516C;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
    min-width: 280px;
    max-width: 100%;
    border-radius: 5px;
    top: -116px;
    right: 0;
    font-size: 12px;
}
.popup.show {
  display: block;
}
.popup .close {
  float: right;
  cursor: pointer;
  font-weight: bold;
  color: #24516C;
  opacity: unset;
  text-shadow: none;
}
.popup .content {
  padding-left: 7px;
  padding-right: 25px;
}
.mt-3{
  margin-top: 30px;
}
.reference{
  color: #053858;
  font-weight: bold;
}
a {
  color: #3D9291 !important;
  text-decoration: underline !important;
}