/* CSS Document */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: none; /* Hidden by default */
  z-index: 9999;
  font-family: sans-serif;
  text-align: center;
}

#cookie-buttons {
  margin-top: 15px;
}

.btn {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

.btn-accept {
  background-color: #007bff;
  color: white;
}

.btn-reject {
  background-color: #6c757d;
  color: white;
}

.btn-settings {
  background-color: transparent;
  color: #007bff;
  text-decoration: underline;
  border: none;
}

/*--------------------------------------------*/
.cookie-settings-trigger {
    position: fixed;   /* Sticks to the window, not the page flow */
    bottom: -4px;      /* Distance from the bottom edge */
	left: 97px;	
    /*right: 20px;       /* Distance from the right edge */
    z-index: 9998;     /* Sits below the main banner (which is usually 9999) */
    
    /* Styling to make it look like a button */
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    border-radius: 4px;
    font-family: sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cookie-settings-trigger:hover {
    background-color: #555;
}