/* PC_MAIN DEDICATED FILE */
/* Split from former 30_components.css for maintenance safety */

/* =========================================================
   Policy Modal (PC)
   ========================================================= */

.policy-modal{
  position: fixed;
  inset: 0;
  z-index: 7000;

  display: none;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.6);
}

.policy-modal.active{
  display: flex;
}

.policy-modal-content{
  width: min(880px, calc(var(--pcvw, 1vw) * 92));
  background: #fff;
  border-radius: 14px;
  overflow: hidden;

  animation: policyModalFadeUp .25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.policy-modal-header{
  background: #767676;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 4px 22px;
}

.policy-modal-header h3{
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.policy-close{
  border: 0;
  background: transparent;
  color: #fff;

  width: 40px;
  height: 40px;
  padding: 0;

  font-size: 42px;
  font-weight: 400;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-2px);

  cursor: pointer;
}

.policy-modal-body{
  padding: 22px;
  max-height: min(70vh, 640px);
  overflow: auto;

  font-size: 14px;
  line-height: 1.7;
  color: #111;
}

.policy-modal-body h4{
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
}

.policy-modal-body p{
  margin: 0 0 12px;
}

.policy-modal-body ul,
.policy-modal-body ol{
  margin: 0 0 14px 18px;
  padding: 0;
}

.policy-modal-body hr{
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.10);
  margin: 16px 0;
}

@keyframes policyModalFadeUp{
  from{
    transform: translateY(15px);
    opacity: 0;
  }
  to{
    transform: translateY(0);
    opacity: 1;
  }
}

