#pdc-anuncio-rodape {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 0;
}

.anuncio-rodape-content {
  position: relative;
  padding: 2px;
  display: flex;
  justify-content: center;
  max-width: 100%;
}

.anuncio-rodape-content img {
  max-width: 100%;
  max-height: 150px;
}

.anuncio-rodape-content .actions {
  position: absolute;
  right: -14px;
  top: -14px;
}

.anuncio-fechar {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 0;
  padding: 0;
  padding-top: 2px;
  height: 24px;
  width: 24px;
  border: 2px solid black;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.anuncio-fechar:hover {
  border-color: inherit;
}

.btn-close {
  display: block;
  position: absolute;
  width: 32px;
  height: 26px;
  margin: 0;
  top: -26px;
  right: 0;
  padding: 0 10px;
  cursor: pointer;
  background: #fff;
  border-radius: 4px 4px 0 0;
  box-shadow: -3px -3px 4px rgb(0 0 0 / 10%);
}

.btn-close:after,
.btn-close:before {
  background-color: #000;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 12px;
  transform: rotate(45deg);
  width: 12px;
}

.btn-close:after {
  transform: rotate(-45deg);
}