#mcb-cookie-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 99999;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  display: none;
  overflow: hidden;
}

/* Barra de progresso no topo */
.mcb-timer {
  height: 4px;
  background: #000;
  width: 100%;
  animation: mcbTimer 60s linear forwards;
}

@keyframes mcbTimer {
  from { width: 100%; }
  to { width: 0; }
}

.mcb-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 20px;
  position: relative;
}

.mcb-message {
  flex: 1 1 220px;
  margin: 0;
  font-size: 13px;
  color: #111;
  line-height: 1.3;
}

.mcb-message a {
  color: #000;
  text-decoration: underline;
}

.mcb-buttons {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

/* Botões */
.mcb-btn {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}

.mcb-btn.mcb-accept {
  background: #000;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mcb-btn.mcb-accept .check {
  font-size: 14px;
  line-height: 1;
}

.mcb-btn.mcb-decline {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}

.mcb-btn.mcb-decline:hover {
  background: rgba(0,0,0,0.06);
}

/* Botão fechar */
.mcb-close {
  position: absolute;
  top: 0px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

/* Em telas grandes, afasta mais o botão fechar */

@media(min-width: 720px) {
  #mcb-cookie-bar {
    left: 24px;
    right: auto;
    bottom: 12px;
    max-width: 720px;
  }
  .mcb-btn {
    min-width: 120px;
  }
	
.mcb-close {
    top: 0px !important;
    right: 12px;
    font-size: 24px;
  }
}
