#snackbar {
  visibility: hidden;
  width: 100%;
  color: var(--pdpa-footer-color);
  text-align: center;
  padding: 13px 0;
  position: fixed;
  font-weight:normal;
  font-size:14px;
  z-index:0;
  bottom: 0px;
  background-color: var(--pdpa-footer-bg);
}

#snackbar ul {
  margin:0 15px;
  padding: 2px 0;
  display:inline-block;
}

#snackbar ul li {
  list-style: none;
  position: relative;
  display: inline-block;
  padding:0;
  margin:0 10px 0 5px;

  padding-bottom:1px;
  background: linear-gradient(#666,#666) center bottom;
  background-size: 0% 2px;
  background-repeat:no-repeat;
  transition: all 0.45s;
}

#snackbar ul li:hover {
  background-size: 100% 2px;
}

#snackbar ul li a {
    color:var(--pdpa-privacy-color);
    display:inline-block;
    text-decoration: none;
}

#snackbar ul li:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0px;
  height: 2px;
  background: var(--ms-color);
  transition: all 0.45s;
}

#snackbar ul li:hover:after {
  width: 100%;
  left: 0;
}

#snackbar ul li a:hover {
  color:var(--pdpa-privacy-hover);
}

#snackbar .control{
  display: inline-block;
}
#snackbar .control .btn{
  margin: auto 10px;
  display:inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#snackbar .btn.accept{
    color: var(--pdpa-btn-color);
    background-color:var(--pdpa-btn-bg);
    border-color: var(--pdpa-btn-border);
}
#snackbar .btn.accept:hover{
    background-color: var(--pdpa-btn-bg_hover);
    border-color: var(--pdpa-btn-bg_hover_border);
}
#snackbar .btn.close{
  width:24px;
  height:24px;
  background-color: transparent;
  background-image: var(--pdpa-path-svg);
  background-repeat: no-repeat;
  transition: all .25s ease-out;
}
#snackbar .btn.close:hover{
  transform: scale(1.25);
  transition: all .25s ease-out;
}

#snackbar.show {
  visibility: visible;
  animation-name: snackbar_show;
  animation-duration: .25s;
  z-index: 1000;
}
@keyframes snackbar_show {
  from {bottom: -30px;}
  to {bottom: 0px;}
}

#snackbar.hide{
  ottom: -100px;
  animation-name: snackbar_hide;
  animation-duration: .5s;
  opacity:0;
}
@keyframes snackbar_hide {
  from {
    opacity:1;
    visibility: visible;
    bottom: 0px;
  }
  to {
    bottom: -100px;
    opacity:0;
  }
}

@media (max-width: 480px) {
  #snackbar .control{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #snackbar .control .btn{
    margin:15px 15px 5px 15px;
  }
}