/* CC Popup Once */
.ccpo-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  z-index: 99998;
}

.ccpo-popup{
  position: fixed;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  display: none;
  z-index: 99999;
  overflow: hidden;
}

.ccpo-popup.ccpo-pos-center{
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ccpo-popup.ccpo-pos-bottom_right{
  right: 18px;
  bottom: 18px;
}

.ccpo-popup.ccpo-pos-bottom_left{
  left: 18px;
  bottom: 18px;
}

.ccpo-inner{
  padding: 18px 18px 22px 18px;
}

.ccpo-title{
  font-size: 18px;
  font-weight: 700;
  margin: 0 32px 10px 0;
  line-height: 1.25;
}

.ccpo-content{
  font-size: 14px;
  line-height: 1.5;
}

.ccpo-close{
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 34px;
  cursor: pointer;
  color: #222;
}

.ccpo-close:hover{
  opacity: .75;
}

@media (max-width: 600px){
  .ccpo-popup{
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    top: auto !important;
    transform: none !important;
    max-width: calc(100vw - 20px);
  }
}
