#privacy-pop-up {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00a2c7;
  margin: 20px auto;
  padding: 25px;
  text-align: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,.5);
  border-radius: 5px;
  width: calc(100vw - 80px);

}
#privacy-pop-up .wrap-content {
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}
#privacy-pop-up .content {
  float: left;
  width: 90%;
  flex: 0 0 90%;
  box-sizing: border-box;
  margin: auto 0;
  text-align: center;
  padding-right: 20px;
}
#privacy-pop-up .content p {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
}
#privacy-pop-up .content a {
  text-decoration: underline;
  color: #000;
  transition: .4s;
  box-sizing: border-box;
}
#privacy-pop-up .content a:hover {
  color: #000;
  transition: .4s;
}
#exit-popup {
  float: right;
  width: 10%;
  flex: 0 0 10%;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  background-color: #111;
  margin: auto 0;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  padding: 5px;
  line-height: normal;
  transition: .4s;
}
#exit-popup:hover {
  color: #fff;
  background-color: #000;
  transition: .4s;
}
@media only screen and (max-width: 768px) {
  #privacy-pop-up .content p br {
    display: none;
  }
  #privacy-pop-up .content {
    width: 100%;
    flex: 0 0 100%;
    padding-right: 0;
  }
  #exit-popup {
    width: 100%;
    flex: 0 0 100%;
    margin: 20px auto 0 auto;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
  #privacy-pop-up .content {
    width: 85%;
    flex: 0 0 85%;
  }
  #exit-popup {
    width: 15%;
    flex: 0 0 15%;
  }
}

