#liskion-simple-cookie-banner {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #011224;
  padding: 10px;
  color: white;
  z-index: 9999;
}


.lscb-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 15px;
}

.lscb-title-container {
  display: block;
}

.lscb-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.lscb-text {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.lscb-buttons {
  display: flex;
  gap: 10px;
}

.lscb-button {
  display: inline-block;
  background: none;
  border-radius: 4px;
  border: 2px solid white;
  color: white;
  padding: 4px 26px;
  font-weight: bold !important;
  align-self: center;
}

.lscb-button:hover {
  background: rgb(44 149 227 / 35%);
  transition: background-color 500ms linear;
}

@media (max-width: 768px) {
  .lscb-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}