.wrapper {
  position: fixed;
  left: 50%;
  bottom: -250px;
  transform: translateX(-50%);
  width: 80%;
  margin: 0 auto;
  background: #054a51;
  border-radius: 5px;
  border: 1px solid #555;
  transition: bottom 0.3s ease;
}

@media screen and (max-width:767px) {
	.wrapper {
    width: 90%;
    padding: 15px 15px;
    font-size: .8em;
    color: #fff;
    bottom:auto;
  }
  .wrapper h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
  }
  .wrapper div p {
    padding: 10px 10px;
    font-family: 'Open Sans', sans-serif;
    text-align: justify;
    font-size: 1.1em;
    color: #fff;
  }
  .wrapper div p a {
    color: #fff;
    text-decoration: underline;
  }
  .wrapper .buttons {
    width: 80%;
    margin: 0 auto;
  }
  .wrapper .buttons .button {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #ffc52f;
    color: #000;
    padding: 15px;
    font-size: 1.1em;
  }
}
@media screen and (min-width:767px) and (max-width:1099px) {
	.wrapper {
    width: 100%;
    padding: 40px 15px;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    z-index: 100;
  }
  .wrapper .data {
    width: 60%;
    padding-left: 2em;
  }
  .wrapper h1 {
    font-size: 1.5em;
  }
  .wrapper div p {
    padding: 10px 0 0 0;
    font-family: 'Open Sans', sans-serif;
    text-align: justify;
    font-size: .75em;
    color: #fff;
  }
  .wrapper div p a {
    color: #fff;
    text-decoration: underline;
  }
  .wrapper .buttons {
    width: 30%;
    margin: 0 auto;
  }
  .buttons .button {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #ffc52f;
    color: #000;
    padding: 15px;
    font-size: .9em;
  }
}
@media screen and (min-width:1110px) {
	.wrapper {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrapper .data {
    width: 700px;
    padding-right: 20px;
  }
  .wrapper h1 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 10px;
  }
  .wrapper div p {
    padding: 10px 0 0 0;
    font-family: 'Open Sans', sans-serif;
    text-align: justify;
    font-size: 1em;
    color: rgba(255,255,255,.7);
    line-height: 24px;
    padding-bottom: 10px;
  }
  .wrapper div p a {
    color: #fff;
    text-decoration: underline;
  }
  .wrapper .buttons {
    width: 320px;
    margin: 0;
    margin-left: 100px;
  }
  .buttons .button {
    width: 70%;
    font-size: 1em;
    padding: 15px 30px;
    background-color: #ffc52f;
    color: #000;
  }
}

.wrapper.show {
  bottom: 0;
}
.wrapper .data {
  margin-top: 0;
}
.data p a:hover {
  text-decoration: underline;
}
.buttons .button {
  border: none;
  /*color: #fff;*/
  /*padding: 8px 0;*/
  border-radius: 4px;
  /*background: #006f80;*/
  cursor: pointer;
  /*width: calc(100% / 2 - 10px);*/
  /*width: 100%;*/
  transition: all 0.2s ease;
}
/*.buttons #acceptBtn:hover {
  background-color: aqua;
}*/
