.pop-message {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
  padding: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
  max-width: 500px;
}

.pop-message .pop-head {
  font-size: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 30px;
}

.pop-message .pop-body p {
  position: relative;
  width: unset !important;
}

.pop-message .pop-body p .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pop-message .pop-body p .close > img {
  width: 25px;
}

.pop-message .pop-body p img {
  width: 100%;
}

.pop-message .click {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
}

.pop-message .click input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #efb25a;
  background-color: #0c0c0b;
}

.pop-message .click input[type=checkbox]:checked {
  background-image: url(../images/check_on.png);
}

.pop-message .click label {
  font-size: 18px;
  color: #fff;
  font-family: 'yindigo-360';
  font-weight: bold;
}

.pop-message:after {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: -200%;
  left: -200%;
  right: -200%;
  bottom: -200%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: -1;
}

@media (max-width: 390px) {
  .pop-message .close {
    z-index: 9999 !important;
    right: 20px !important;
  }
  .pop-message .pop-body p {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 419px) {
  .pop-message {
    -webkit-transform: unset;
            transform: unset;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: unset;
  }
  .pop-message .pop-body {
    width: 100%;
  }
  .pop-message .pop-body p img {
    width: 100%;
  }
}

@media screen and (min-width: 420px) and (max-width: 1200px) {
  .pop-message {
    -webkit-transform: unset;
            transform: unset;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: unset;
  }
  .pop-message .pop-body {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pop-message .pop-body p {
    width: 100%;
    height: 100%;
  }
  .pop-message .pop-body p img {
    width: auto;
    height: 100%;
  }
  .pop-message .click {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=pop.css.map */