.siphon-consent-wrap{
    background: rgba(128,128,128,0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999;
}
.siphon-consent{
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 365px;
  background: #fff;
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 7px 14px 5px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 999999;
  /* animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-name: slideInLeft; */
}
.siphon-content h6{
  margin: 0;
  font-size: 18px;
}
.siphon-content p{
  font-size: 16px;
  margin: 20px 0;
}
.siphon-content a.s-tbn{
  display: inline-block;
  text-decoration: none;
  padding: 8px 35px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  border: none;
  border-radius: 5px;
  border-radius: 5px;
  margin: 0 2px;
  color: #fff;
}
.siphon-content .siphon-accept{
  background: #0cb90c;
}
.siphon-content .siphon-reject{
  background: #ee2f2f;
}

/*Responsive*/
@media( max-width: 400px ){
  .siphon-consent{
    width: 80%;
    max-width: 95%;
    left: 50%;
    top: 50%;
    bottom: unset;
    transform: translate(-50%, -50%);
  }
}
/*Animation if needed*/
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}