@charset "utf-8";
/* CSS Document */

/* =========================================================
   DIVER ON TOUR – COOKIE BANNER CSS
   Datei: /assets/css/cookie-banner.css
   Für Consent-Banner / Datenschutzhinweis unten
========================================================= */

.dot-cookie-banner{
  position:fixed;
  left:20px;
  right:20px;
  bottom:20px;
  z-index:9999;
  max-width:1180px;
  margin:0 auto;
  background:#ffffff;
  color:#333333;
  border:1px solid #d9e7ef;
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
  padding:20px;
  box-sizing:border-box;
}

.dot-cookie-banner[hidden]{
  display:none !important;
}

.dot-cookie-banner__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}

.dot-cookie-banner__content{
  flex:1 1 auto;
  min-width:0;
}

.dot-cookie-banner__title{
  margin:0 0 8px;
  color:#0e3a5a;
  font-size:18px;
  font-weight:700;
  line-height:1.3;
}

.dot-cookie-banner__text{
  margin:0;
  color:#35556b;
  font-size:15px;
  line-height:1.7;
}

.dot-cookie-banner__text a{
  color:#006494;
  text-decoration:none;
  font-weight:600;
}

.dot-cookie-banner__text a:hover,
.dot-cookie-banner__text a:focus{
  color:#0e3a5a;
  text-decoration:underline;
}

.dot-cookie-banner__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  flex:0 0 auto;
}

.dot-cookie-banner__btn{
  appearance:none;
  border:1px solid transparent;
  border-radius:999px;
  padding:12px 18px;
  min-height:46px;
  font-size:15px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  text-decoration:none;
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.dot-cookie-banner__btn:hover,
.dot-cookie-banner__btn:focus{
  transform:translateY(-1px);
}

.dot-cookie-banner__btn--accept{
  background:#0e3a5a;
  color:#ffffff;
  box-shadow:0 10px 24px rgba(14,58,90,0.20);
}

.dot-cookie-banner__btn--accept:hover,
.dot-cookie-banner__btn--accept:focus{
  background:#072133;
  color:#ffffff;
}

.dot-cookie-banner__btn--decline{
  background:#f4f8fb;
  color:#0e3a5a;
  border-color:#d9e7ef;
}

.dot-cookie-banner__btn--decline:hover,
.dot-cookie-banner__btn--decline:focus{
  background:#eaf2f8;
  color:#0e3a5a;
  border-color:#bfd4e3;
}

.dot-cookie-banner__btn--settings{
  background:#ffffff;
  color:#0e3a5a;
  border-color:#0e3a5a;
}

.dot-cookie-banner__btn--settings:hover,
.dot-cookie-banner__btn--settings:focus{
  background:#0e3a5a;
  color:#ffffff;
}

.dot-cookie-banner__close{
  appearance:none;
  position:absolute;
  top:10px;
  right:10px;
  width:38px;
  height:38px;
  border:0;
  border-radius:10px;
  background:transparent;
  color:#35556b;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  transition:background .2s ease, color .2s ease;
}

.dot-cookie-banner__close:hover,
.dot-cookie-banner__close:focus{
  background:#eef6fb;
  color:#0e3a5a;
}

@media (max-width:900px){
  .dot-cookie-banner{
    left:16px;
    right:16px;
    bottom:16px;
    padding:18px;
  }

  .dot-cookie-banner__inner{
    flex-direction:column;
  }

  .dot-cookie-banner__actions{
    width:100%;
  }
}

@media (max-width:600px){
  .dot-cookie-banner{
    left:12px;
    right:12px;
    bottom:12px;
    padding:16px;
    border-radius:14px;
  }

  .dot-cookie-banner__title{
    font-size:17px;
    padding-right:34px;
  }

  .dot-cookie-banner__text{
    font-size:14px;
    line-height:1.6;
  }

  .dot-cookie-banner__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .dot-cookie-banner__btn{
    width:100%;
    text-align:center;
  }
}