.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(31, 37, 39, 0.2);
  display: none;
  z-index: 9;
}
.cookie-modal.show {
  display: block;
}
.cookie-modal .model-content-body {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #F0F8FE;
}
.cookie-modal .model-content-body .content_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}
@media (min-width: 768px) {
  .cookie-modal .model-content-body .content_wrap {
    flex-direction: row;
  }
}
.cookie-modal .model-content-body .content_wrap .content-holder {
  max-width: 636px;
}
.cookie-modal .model-content-body .content_wrap .content-holder p a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.external-link-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(31, 37, 39, 0.2);
  display: none;
  flex-direction: column;
  justify-content: center;
}
.external-link-modal.show {
  display: flex;
}
.external-link-modal .model-content-body {
  border-radius: 8px;
  background: #FAFAFA;
  padding: 24px 16px;
  max-width: 499px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
}
@media (min-width: 576px) {
  .external-link-modal .model-content-body {
    padding: 24px 40px;
  }
}
.external-link-modal .model-content-body .close-btn-holder {
  cursor: pointer;
}
.external-link-modal .model-content-body .close-btn-holder img {
  width: 30px;
  cursor: pointer;
}
