.evorm-cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  color: #1f2933;
  font-family: Arial, sans-serif;
}

.evorm-cookie-consent__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 22px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.evorm-cookie-consent__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.evorm-cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.evorm-cookie-consent__button {
  min-width: 100px;
  padding: 10px 16px;
  border: 1px solid #1f2933;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.evorm-cookie-consent__button--reject {
  color: #1f2933;
  background: #fff;
}

.evorm-cookie-consent__button--accept {
  color: #fff;
  background: #1f2933;
}

@media (max-width: 700px) {
  .evorm-cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .evorm-cookie-consent__content {
    display: block;
    padding: 16px;
  }

  .evorm-cookie-consent__actions {
    justify-content: flex-end;
    margin-top: 14px;
  }
}
