@charset "utf-8";
/* CSS Document */

/* Cookie Consent Banner */
#mma-cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999999;
  background: #ffffff;
  color: #222;
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
  border-radius: 12px;
  padding: 20px;
  max-width: 700px;
  margin: 0 auto 0 0;
  font-family: Arial, sans-serif;
  transform: translateY(140%);
  opacity: 0;
  transition: all .35s ease;
}

#mma-cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

#mma-cookie-banner h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

#mma-cookie-banner p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.5;
}

#mma-cookie-banner p a {
	color:#246175;
}

#mma-cookie-banner p a:hover {
	text-decoration: none;
}

.mma-cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mma-cookie-buttons button {
  border: 0;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size:16px;
  transition:background .2s ease, color .2s ease;
}

#mma-accept-cookies {
  background: #1f6feb;
  color: #fff;
}

#mma-reject-cookies {
  background: #eeeeee;
  color: #222;
}

#mma-cookie-settings {
  background: transparent;
  color: #1f6feb;
  text-decoration: underline;
}
#mma-save-preferences {
	background:#246175;
	color:#fff;
}
#mma-save-preferences:hover {
	background:#999;
}

#mma-cookie-preferences {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ddd;
}

#mma-cookie-preferences.show {
  display: block;
}

.mma-cookie-option {
  margin-bottom: 10px;
  font-size: 14px;
}

@media (max-width: 600px) {
  #mma-cookie-banner {
	left: 10px;
	right: 10px;
	bottom: 10px;
	padding: 16px;
  }

  .mma-cookie-buttons button {
	width: 100%;
  }
}
#mma-cookie-settings-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999998;

  display: none;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;

  background: #1f6feb;
  color: #fff;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;
  cursor: pointer;

  box-shadow: 0 4px 15px rgba(0,0,0,.25);
}

#mma-cookie-settings-float.show {
  display: flex;
  transition:background .3s;
}

#mma-cookie-settings-float:hover {
  background: #1557c0;
}

#mma-cookie-settings-float i {
  font-size: 16px;
}
