
.cookie-modal {
  position: fixed;
  bottom: 40%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 9999;
  
}


.cookie-box {
  background: #fff;
padding: 2rem 2rem 0;
  border-radius: 10px;
  color: #222;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  max-width: 800px;
}
.cookie-option {
    display: flex;
    gap: 1rem;
    justify-content: start;
    align-items: center;
}

.animate-slide-up {
  transform: translateY(100%);
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.2s;
}



.cookie-link {
  margin-top: 10px;
  font-size: 0.9rem;
}

.cookie-link a {
  text-decoration: underline;
}

.hidden {
  display: none;
}

.cookie-settings-btn {
  position: fixed;
  bottom: 50px;
  left: -150px;
  /*transform: rotate(-90deg);*/
  background: #222;
  color: white;
padding: 4px 10px;

  z-index: 9999;
  cursor: pointer;
  transition: left 0.3s;
  border: none;
}

.cookie-settings-btn:hover {
  left: -5px;
}

.cookie-desc {
  display: block;
  font-size: 0.85rem;
  color: #555;
  margin-top: 4px;
}

.form-switch .form-check-input {
  width: 3em;
  height: 1.5em;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-label {
  flex: 1;
}
.cookie-desc {
  font-size: 0.85rem;
  color: #555;
margin-left: 0.5em;
flex: 6;
}
.cookie-desc p {
margin-bottom: 0;
line-height: 1.3rem;
}
@media (max-width: 992px) {
.cookie-modal {
  bottom: 0;
  position: relative;
}
}
@media (max-width: 600px) {
.cookie-modal {
  bottom: 0;
  position: relative;
}
.cookie-actions {
  display: grid;
}
}