hr {
  width: 100%;
  color: #C4C4C4;
}
.font-white {
  color: white;
}
.popup-font-label {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  padding-left: 12px;
}
.popup-image-label {
  width: 32px;
  height: 32px;
}
.popup-container-label {
  display: flex;
  flex-direction: row;
  flex-grow: 0;
}
.popup-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
}
.popup-description {
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
}
.popup-button-detail {
  color: #0061E3;
  text-align: center;
  width: 70%;
  height: 42px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
}
.popup-container {
  display: flex;
  flex-direction: row;
}
.item-container-wording {
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: 50%;
}
.item-container-image {
  padding: 10px;
  height:380px;
  width: 50%;
}
.popup-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.popup-icon-label {
  flex: 1;
  display: flex;
}

@media (max-width: 769px) {
  .popup-container {
    display: flex;
    flex-direction: column-reverse;
  }
  .popup-container-label {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
  }
  .item-container-wording {
    padding: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .item-container-image {
    padding: 10px;
    height:220px;
    width: 100%;
  }
  .popup-font-label {
    margin-bottom: 0px;
  }
  .popup-icon-label {
    flex: 1;
    display: flex;
    padding-top: 12px;
  }
}