/* BFT_COOKIE_CONSENT_FINAL_20260922 */

:root{
  --bftc-bg:#fff;
  --bftc-text:#111;
  --bftc-muted:#686868;
  --bftc-line:#dedede;
  --bftc-soft:#f6f6f6;
  --bftc-shadow:0 22px 70px rgba(0,0,0,.18);
}

#bft-cookie-banner,
#bft-cookie-overlay{
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--bftc-text);
}

#bft-cookie-banner{
  position:fixed;
  z-index:2147482000;
  left:18px;
  right:18px;
  bottom:18px;
  width:min(1120px,calc(100vw - 36px));
  margin:0 auto;
  box-sizing:border-box;
  background:var(--bftc-bg);
  border:1px solid var(--bftc-line);
  border-radius:22px;
  box-shadow:var(--bftc-shadow);
  padding:22px 24px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:28px;
}

.bft-cookie-eyebrow{
  margin:0 0 5px;
  font-size:11px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#555;
}

.bft-cookie-title{
  margin:0 0 7px;
  font-size:20px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:-.02em;
  color:#111;
}

.bft-cookie-text{
  margin:0;
  max-width:760px;
  font-size:13px;
  line-height:1.65;
  color:#555;
}

.bft-cookie-text a,
#bft-cookie-modal a{
  color:#111;
  text-decoration:underline;
  text-underline-offset:2px;
}

.bft-cookie-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:9px;
}

.bft-cookie-btn{
  appearance:none;
  border:1px solid #111;
  border-radius:999px;
  min-height:44px;
  padding:0 17px;
  background:#fff;
  color:#111;
  font:inherit;
  font-size:13px;
  font-weight:750;
  cursor:pointer;
  transition:transform .15s ease,background .15s ease,color .15s ease,box-shadow .15s ease;
}

.bft-cookie-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(0,0,0,.09);
}

.bft-cookie-btn-primary{
  background:#111;
  color:#fff;
}

.bft-cookie-btn-primary:hover{
  background:#000;
}

#bft-cookie-overlay{
  position:fixed;
  z-index:2147483000;
  inset:0;
  background:rgba(0,0,0,.38);
  backdrop-filter:blur(4px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  box-sizing:border-box;
}

#bft-cookie-overlay.is-open{
  display:flex;
}

#bft-cookie-modal{
  width:min(620px,100%);
  max-height:min(760px,calc(100dvh - 36px));
  overflow:auto;
  box-sizing:border-box;
  background:#fff;
  border:1px solid #dcdcdc;
  border-radius:24px;
  box-shadow:0 26px 90px rgba(0,0,0,.26);
}

.bft-cookie-modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  padding:24px 24px 19px;
  border-bottom:1px solid #e6e6e6;
}

.bft-cookie-modal-head h2{
  margin:0 0 7px;
  color:#111;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.025em;
}

.bft-cookie-modal-head p{
  margin:0;
  color:#666;
  font-size:13px;
  line-height:1.55;
}

.bft-cookie-x{
  appearance:none;
  width:38px;
  height:38px;
  flex:0 0 38px;
  border:1px solid #ddd;
  border-radius:50%;
  background:#fff;
  color:#111;
  font:400 25px/1 Arial,sans-serif;
  cursor:pointer;
}

.bft-cookie-modal-body{
  padding:6px 24px 4px;
}

.bft-cookie-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:22px;
  padding:18px 0;
  border-bottom:1px solid #ededed;
}

.bft-cookie-row:last-child{
  border-bottom:0;
}

.bft-cookie-row h3{
  margin:0 0 6px;
  color:#111;
  font-size:15px;
  line-height:1.3;
}

.bft-cookie-row p{
  margin:0;
  color:#686868;
  font-size:12.5px;
  line-height:1.55;
}

.bft-cookie-lock{
  display:inline-block;
  margin-left:6px;
  padding:3px 7px;
  border-radius:999px;
  background:#f2f2f2;
  color:#666;
  font-size:10px;
  font-weight:700;
  vertical-align:1px;
}

.bft-cookie-switch{
  appearance:none;
  position:relative;
  width:50px;
  height:28px;
  flex:0 0 50px;
  border:0;
  border-radius:999px;
  background:#d6d6d6;
  cursor:pointer;
  transition:background .18s ease;
}

.bft-cookie-switch::after{
  content:"";
  position:absolute;
  top:3px;
  left:3px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 2px 7px rgba(0,0,0,.2);
  transition:transform .18s ease;
}

.bft-cookie-switch[aria-checked="true"]{
  background:#111;
}

.bft-cookie-switch[aria-checked="true"]::after{
  transform:translateX(22px);
}

.bft-cookie-switch:disabled{
  opacity:.55;
  cursor:not-allowed;
}

.bft-cookie-modal-actions{
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:9px;
  padding:18px 24px 24px;
  border-top:1px solid #e6e6e6;
}

.bft-cookie-footer-settings{
  appearance:none;
  display:inline;
  margin:0;
  padding:0;
  border:0;
  background:none;
  color:inherit;
  font:inherit;
  cursor:pointer;
  text-align:left;
  opacity:.88;
}

.bft-cookie-footer-settings:hover{
  opacity:1;
  text-decoration:underline;
  text-underline-offset:3px;
}

@media(max-width:820px){
  #bft-cookie-banner{
    left:10px;
    right:10px;
    bottom:10px;
    width:calc(100vw - 20px);
    grid-template-columns:1fr;
    gap:16px;
    padding:19px;
    border-radius:18px;
  }

  .bft-cookie-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
  }

  .bft-cookie-btn{
    width:100%;
    padding-left:12px;
    padding-right:12px;
  }

  .bft-cookie-btn-config{
    grid-column:1/-1;
  }
}

@media(max-width:520px){
  .bft-cookie-title{
    font-size:18px;
  }

  .bft-cookie-text{
    font-size:12.5px;
  }

  .bft-cookie-actions{
    grid-template-columns:1fr;
  }

  .bft-cookie-btn-config{
    grid-column:auto;
  }

  .bft-cookie-modal-head,
  .bft-cookie-modal-body,
  .bft-cookie-modal-actions{
    padding-left:18px;
    padding-right:18px;
  }

  .bft-cookie-row{
    gap:14px;
  }
}

@media(prefers-reduced-motion:reduce){
  .bft-cookie-btn,
  .bft-cookie-switch,
  .bft-cookie-switch::after{
    transition:none;
  }
}

/* BFT_COOKIE_CLOSE_ICON_FINAL_START */

.bft-cookie-x{
    appearance:none !important;
    width:40px !important;
    height:40px !important;
    flex:0 0 40px !important;

    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:0 !important;
    border:0 !important;
    border-radius:10px !important;

    background:transparent !important;
    color:#111 !important;

    cursor:pointer !important;
    transition:
        background .18s ease,
        transform .18s ease !important;
}

.bft-cookie-x:hover{
    background:#f2f2f2 !important;
}

.bft-cookie-x:active{
    transform:scale(.94) !important;
}

.bft-cookie-x .bft-close-icon{
    display:block !important;
    width:19px !important;
    height:19px !important;

    fill:none !important;
    stroke:currentColor !important;
    stroke-width:2.2 !important;
    stroke-linecap:round !important;
    stroke-linejoin:round !important;
}

.bft-cookie-x:focus-visible{
    outline:2px solid #111 !important;
    outline-offset:2px !important;
}

/* BFT_COOKIE_CLOSE_ICON_FINAL_END */
