.cookiescan_scope * { box-sizing: border-box; }
.cookiescan_page {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background: #9aa0a6;
  color: #111;
}

/* Backdrop */
.cookiescan_backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
}

/* Modal */
.cookiescan_modal{
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  width: min(92vw, 520px);
  border: 1px solid #111;
  border-radius: 6px;
  padding: 24px;
}

.cookiescan_heading{
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
}

.cookiescan_para{
  font-size: 14px;
  margin: 4px 0 12px;
}

/* Toggle group */
.cookiescan_toggle-group{
  margin-bottom: 14px;
}

.cookiescan_toggle{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
}

.cookiescan_toggle__switch{
  display: inline-block;
  width: 38px;
  height: 20px;
  background: #ccc;
  border-radius: 20px;
  position: relative;
}
.cookiescan_toggle__switch::after{
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.cookiescan_toggle__switch--on{
  background: #79a85f;
}
.cookiescan_toggle__switch--on::after{
  transform: translateX(18px);
}

/* Buttons */
.cookiescan_actions{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookiescan_btn{
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cookiescan_btn--outline-dark{
  background: #fff;
  color: #111;
  border: 1px solid #111;
}
.cookiescan_btn--solid{
  background: #79a85f;
  color: #fff;
  border: 1px solid #79a85f;
  font-weight: 600;
}
