.hcp-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(41, 49, 51, 0.4);
  display: none;
  flex-direction: column;
  justify-content: center;
  z-index: 15;
}
.hcp-modal.show {
  display: flex;
}
.hcp-modal .model-content-body {
  border-radius: 0 32px;
  background: #fff;
  padding: 32px;
  max-width: 630px;
  width: calc(100% - 36px);
  margin: 0 auto;
}
.hcp-modal .model-content-body .btn-container {
  margin-top: 30px;
  display: flex;
  gap: 24px;
}
.hcp-modal .model-content-body .btn-container .btn {
  text-align: center;
  font-size: clamp(0.875rem, 2.43vw, 1.25rem);
  line-height: 1.2;
}
.hcp-modal .model-content-body .btn-container .btn-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 4px;
  border: 1px solid #E1E1E1;
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  padding: 16px;
}
.hcp-modal .model-content-body .btn-container .btn-content__icon {
  width: 45px;
  height: 45px;
  margin: 0 auto;
}
.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;
  z-index: 10;
}
.external-link-modal.show {
  display: flex;
}
.external-link-modal .model-content-body {
  background: #fff;
  padding: 24px;
  max-width: 630px;
  border-radius: 0 32px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
}
@media (min-width: 576px) {
  .external-link-modal .model-content-body {
    padding: 32px;
  }
}
.external-link-modal .model-content-body .action-btns {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr auto;
}
.external-link-modal .model-content-body .action-btns > a {
  max-width: max-content;
}
.external-link-modal .model-content-body .fw-bold {
  font-weight: 700;
}
.vimeo-popup-model {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  flex-direction: column;
  justify-content: center;
  z-index: 20;
  background: rgba(40, 51, 69, 0.5);
  display: none;
}
.vimeo-popup-model.show {
  display: flex;
}
.vimeo-popup-model .outer-container {
  max-height: 100%;
  padding: 45px 0;
  overflow-y: auto;
}
.vimeo-popup-model .outer-container .model-container {
  position: relative;
  padding: 16px;
  border-radius: 8px;
  background: #FFF;
  max-width: 740px;
  margin: 0 auto;
}
.vimeo-popup-model .outer-container .model-container .close-btn {
  position: absolute;
  width: 25px;
  z-index: 2;
  top: 24px;
  right: 24px;
}
.u-fw-600 {
  font-weight: 600;
}
