::-webkit-scrollbar {
  width: 0px;
}

h2 {
  font-size: 1.8rem;
  margin: 20px 0 40px 0;
}

p {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100px;
  margin-bottom: 10%;
}

.warn-bg-icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.warn-bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo {
  position: absolute;
  top: 8%;
  left: 15%;
  right: 15%;
}

.warn-content {
  position: absolute;
  top: 25%;
  left: 20%;
  right: 20%;
  padding: 20px 0 30px 0;
  text-align: center;
  color: #fff;
}

#btn-ok {
  padding: 20px 30px;
  width: 180px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: #ec585e;
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
}

#btn-ok:hover {
  background: #d33c43;
}

@media (max-width: 767px) {
  h2 {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .logo {
    top: 10%;
  }

  .warn-content {
    top: 20%;
    left: 19%;
    right: 19%;
  }

  #btn-ok {
    margin-top: 25%;
  }
}

