/* card_modal */
#card_modal {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 200;
}
.modal_bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: saturate(180%) blur(5px);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
}
#card_modal .card_modal_wrap {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  min-width: 300px;
  height: 85%;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 50%);
}
#card_modal .card_close_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--primary-color);
}
#card_modal .card_close_btn i {
  font-size: 1em;
  color: var(--primary-color);
}
#card_modal img {
  display: block;
  width: 100%;
  user-select: all !important;
}

#card_modal .brand_tit {
  font-size: 1.4em;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
#card_modal .brand_tit span {
  color: #424242;
}
#card_modal .img_wrap {
  width: 100%;
  height: 85%;
  overflow: scroll;
}

@media all and (max-width: 1023px) {
  #card_modal .card_modal_wrap {
    width: 70%;
    height: 65%;
    padding: 20px;
  }
}

.card_link_div button {
  margin: 20px auto 0;
  border: 3px #3697d7 solid;
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 10px;
  color: #3697d7bf;
}
