#pro-cp-dialog-wrapper {
  left: 0;
  bottom: 0;
  width: 100%;
  position: fixed;
  z-index: 2000;
}

#pro-cp-dialog-banner {
  margin: 10px;
  background: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  transition: opacity .2s ease;
  opacity: 1;
  @media (width <= 896px) {
    display: block;
    margin: 0;
  }
  p {
    flex-basis: 72%;
    margin: 10px;
    font-size: calc((14 / 16) * 1rem);
    line-height: 1.8;
    @media (width <= 896px) {
      flex-basis: 96%;
      margin: 0 0 15px 0;
      font-size: calc((12 / 16) * 1rem);
    }
  }
  a {
    text-decoration: underline;
    opacity: 1;
    transition: opacity .3s ease;
    color: var(--main_c);
    &:hover {
      @media(hover:hover) {
        opacity: .7;
      }
    }
  }
}

#pro-cp-dialog-cta {
  flex-basis: 24%;
  margin: 10px;
  background: var(--main_c);
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  @media (width <= 896px) {
    flex-basis: 96%;
    padding: 10px;
    margin: 0;
  }
}
