/* =========================
   WIZYTY BOOKING (v2) — FULL
   UX/UI improved
   ========================= */

.wizyty-wrap.wizyty-v2{
  /* Accent color must stay */
  --navy: #356389;
  --navy-2: #223954;

  --text: #111827;
  --muted: rgba(17, 24, 39, .65);

  --bg: rgba(255,255,255,.72);

  /* tiles */
  --tile: rgba(255,255,255,.18);
  --tile-soft: rgba(255,255,255,.06);
  --tile-inner: rgba(47,79,115,.12);
/*rgba(255,255,255,.35);*/

  --line: rgba(17,24,39,.08);
  --stroke: rgba(34,57,84,.18);

  --radius-tile: 5px;
  --radius-pill: 100px;

  font-family: inherit;
  color: var(--text);
  background: var(--bg);
}

/* Reset only inside widget */
.wizyty-wrap.wizyty-v2 *{
  box-sizing: border-box;
}

.wizyty-wrap.wizyty-v2 button{
  font-family: inherit;
}

/* =========================
   Layout (no right gap)
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-shell{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 18px;

  display: grid;
  grid-template-columns: 340px 1fr; /* LEFT + MAIN */
  gap: 24px;
  align-items: start;
}

@media (max-width: 1100px){
  .wizyty-wrap.wizyty-v2 .wizyty-shell{
    grid-template-columns: 1fr;
  }
}

/* STEP AREA */
.wizyty-wrap.wizyty-v2 .wizyty-steparea{
  width: 100%;
}

/* =========================
   Tabs row above tile
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-tabs-top{
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  align-items: center;
}

.wizyty-wrap.wizyty-v2 .wizyty-step{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(34,57,84,.10);
  background: rgba(255,255,255,.35);

  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  user-select: none;
  color: rgba(17,24,39,.55);
}

.wizyty-wrap.wizyty-v2 .wizyty-step-active{
  background: #fff;
  border-color: rgba(34,57,84,.12);
  color: var(--navy-2);
}

.wizyty-wrap.wizyty-v2 h3 {
    letter-spacing:-0.2px!important;
    font-size:18px!important;
}

/* =========================
   LEFT panel (quiet)
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-left{
  background: var(--tile-soft);
  border-radius: var(--radius-tile);
  border: none;
  box-shadow: none;
  padding: 18px;
}

.wizyty-wrap.wizyty-v2 .wizyty-left-top{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px; 
}

.wizyty-wrap.wizyty-v2 .wizyty-avatar{
  width: 72px;
  height: 72px;
  border-radius: var(--radius-pill);
  background: #223954;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #ffffff;
}

.wizyty-wrap.wizyty-v2 .wizyty-left-owner{
  font-size: 12px;
  color: rgba(17,24,39,.55);
  font-weight: 700;
}

.wizyty-wrap.wizyty-v2 .wizyty-left-title{
  font-size: 18px;
  font-weight: 900;
}

.wizyty-wrap.wizyty-v2 .wizyty-summary-box{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.wizyty-wrap.wizyty-v2 .wizyty-srow{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 4px 0;
  border-radius: 0;
  background: transparent;
  font-size: 16px;
}

.wizyty-wrap.wizyty-v2 .wizyty-srow span:first-child{
  width: 22px;
  text-align: center;
}

/* =========================
   STEP 1: Single tile (calendar + times)
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-term-tile{
  width: 100%;
  background: var(--tile);
  border-radius: var(--radius-tile);
  border: none;
  box-shadow: none;

  display: grid;
  grid-template-columns: 1fr 1px 360px; /* calendar | line | times */
  overflow: hidden;
}

.wizyty-wrap.wizyty-v2 .wizyty-vline{
  background: var(--line);
}

@media (max-width: 980px){
  .wizyty-wrap.wizyty-v2 .wizyty-term-tile{
    grid-template-columns: 1fr;
  }
  .wizyty-wrap.wizyty-v2 .wizyty-vline{
    display: none;
  }
}

/* inner padding */
.wizyty-wrap.wizyty-v2 .wizyty-term-tile .wizyty-center,
.wizyty-wrap.wizyty-v2 .wizyty-term-tile .wizyty-right{
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 18px;
}

/* =========================
   Calendar header
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

@media (max-width: 980px){
  .wizyty-wrap.wizyty-v2 .wizyty-head{
    flex-direction: column;
    align-items: flex-start;
  }
}

.wizyty-wrap.wizyty-v2 .wizyty-h-title{
  font-size: 18px;
  font-weight: 900;
}

.wizyty-wrap.wizyty-v2 .wizyty-monthbar{
  display: flex;
  gap: 10px;
  align-items: center;
}

.wizyty-wrap.wizyty-v2 .wizyty-month{
  font-weight: 900;
  font-size: 14px;
  text-transform: lowercase;
}

/* month arrows */
.wizyty-wrap.wizyty-v2 .wizyty-nav{
  border: 1px solid rgba(34,57,84,.10);
  background: rgba(255,255,255,.35);
  border-radius: var(--radius-pill);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .12s ease, transform .06s ease;
}

.wizyty-wrap.wizyty-v2 .wizyty-nav:hover{
  background: rgba(47,79,115,.3);
}

.wizyty-wrap.wizyty-v2 .wizyty-nav:active{
  transform: scale(.98);
}

/* =========================
   Calendar grid
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-grid{
  margin-top: 10px;
}

.wizyty-wrap.wizyty-v2 .wizyty-dows{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 10px;

  color: rgba(17,24,39,.55);
  font-weight: 800;
  font-size: 12px;
}

.wizyty-wrap.wizyty-v2 .wizyty-dow{
  text-align: center;
}

.wizyty-wrap.wizyty-v2 .wizyty-days{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

/* day buttons */
.wizyty-wrap.wizyty-v2 .wizyty-day{
  appearance: none;
  border: none;
  background: var(--tile-inner);

  height: 44px;
  border-radius: var(--radius-pill)!important;
  cursor: pointer;

  font-weight: 800;
  color: rgba(34,57,84,.80);
  transition: transform .06s ease, background .12s ease, color .12s ease;
}

.wizyty-wrap.wizyty-v2 .wizyty-day:hover{
  background: rgba(47,79,115,.2);
}

.wizyty-wrap.wizyty-v2 .wizyty-day:active{
  transform: scale(.98);
}

.wizyty-day.wizyty-day--empty {
    opacity: 0;
}

.wizyty-wrap.wizyty-v2 .wizyty-day.is-muted{
  background: transparent;
  cursor: default;
  border: none;
  box-shadow: none;
}

.wizyty-wrap.wizyty-v2 .wizyty-day.is-disabled{
  opacity: .35;
  cursor: not-allowed;
}

.wizyty-wrap.wizyty-v2 .wizyty-day.is-active{
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

/* =========================
   Right: times list
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-right-head{
  margin-bottom: 10px;
}

.wizyty-wrap.wizyty-v2 .wizyty-right-date{
  font-weight: 900;
}

.wizyty-wrap.wizyty-v2 .wizyty-times-list{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.wizyty-wrap.wizyty-v2 .wizyty-time{
  width: 100%;
  height: 44px;

  border: none;
  border-radius: var(--radius-pill);
  background: var(--tile-inner);
  cursor: pointer;

  font-weight: 800;
  color: rgba(34,57,84,.85);
  transition: transform .06s ease, background .12s ease, color .12s ease;
}

.wizyty-wrap.wizyty-v2 .wizyty-time:hover{
  background: rgba(47,79,115,.3);
}

.wizyty-wrap.wizyty-v2 .wizyty-time:active{
  transform: scale(.99);
}

.wizyty-wrap.wizyty-v2 .wizyty-time.is-selected{
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

/* footer under times */
.wizyty-wrap.wizyty-v2 .wizyty-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
}

.wizyty-wrap.wizyty-v2 .wizyty-selected{
  font-size: 12px;
  color: rgba(17,24,39,.55);
  font-weight: 700;
}

/* =========================
   Buttons
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-btn{
  border: none;
  border-radius: var(--radius-pill)!important;
  height: 44px;
  padding: 0 24px;
  font-weight: 400;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease, opacity .12s ease;
}

.wizyty-right-date {
    margin-top: 5px;
}

.wizyty-wrap.wizyty-v2 .wizyty-primary{
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 18px rgba(47,79,115,.35);
}

.wizyty-wrap.wizyty-v2 .wizyty-primary:hover{
  background: #2a4869;
}

.wizyty-wrap.wizyty-v2 .wizyty-primary:not([disabled]):hover{
  transform: translateY(-1px);
}

.wizyty-wrap.wizyty-v2 .wizyty-secondary{
  background: rgba(47,79,115,.1);
  color: rgba(34,57,84,.90);
}

.wizyty-wrap.wizyty-v2 .wizyty-secondary:hover{
  background: rgba(47,79,115,.2);
}

.wizyty-wrap.wizyty-v2 .wizyty-btn:disabled{
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
}

/* =========================
   STEP 2: Form view
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-right-wide{
  background: var(--tile);
  border-radius: var(--radius-tile);
  padding: 18px;
  max-width: 760px;
  margin: 0 auto;
  border: none;
}

.wizyty-wrap.wizyty-v2 .wizyty-right-wide h3{
  margin: 6px 0 12px;
  font-size: 18px;
  font-weight: 900;
}

.wizyty-wrap.wizyty-v2 .wizyty-form{
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.wizyty-wrap.wizyty-v2 .wizyty-form label{
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: rgba(34,57,84,.88);
  font-size: 13px;
}

.wizyty-wrap.wizyty-v2 .wizyty-in{
  height: 44px;
  border-radius: var(--radius-pill);
  padding: 0 14px;
  background: rgba(255,255,255,.45);
  color: var(--text);
  outline: none;
  border:1px solid rgba(0,0,0,.45)!important;
}

.wizyty-wrap.wizyty-v2 textarea.wizyty-in{
  height: auto;
  min-height: 90px;
  padding: 12px 14px;
  border-radius: 18px;
}

.wizyty-wrap.wizyty-v2 .wizyty-in:focus{
  background: rgba(255,255,255,.55);
}

/* result/info box */
.wizyty-wrap.wizyty-v2 .wizyty-result{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-tile);
  background: rgba(255,255,255,.45);
  color: rgba(34,57,84,.90);
  font-weight: 800;
}

/* =========================
   Minor helpers (optional)
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-stepview{
  width: 100%;
}

/* make sure headings don't look too light in themes */
.wizyty-wrap.wizyty-v2 h1,
.wizyty-wrap.wizyty-v2 h2,
.wizyty-wrap.wizyty-v2 h3{
  font-family: inherit;
}


/* =========================
   FORM STYLE LIKE CF7 (site)
   ========================= */

.wizyty-wrap.wizyty-v2 .wizyty-right-wide,
.wizyty-wrap.wizyty-v2 .wizyty-form{
  font-family: inherit;
}

.wizyty-wrap.wizyty-v2 .wizyty-form label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,.75);
  gap: 8px;
}

/* input/select/textarea look */
.wizyty-wrap.wizyty-v2 .wizyty-in{
  width: 100%;
  height: 52px;
  border-radius: 4px;               /* jak na screenie */
  border: 2px solid rgba(0,0,0,0);  /* „niewidoczna” ramka */
  background: rgba(255,255,255,.5);      /* to samo w computed */
  padding: 0 16px;

  color: rgba(0,0,0,.78);
  font-size: 16px;
  font-weight: 500;
  outline: none;

  transition: background .12s ease, border-color .12s ease;
}

/* textarea */
.wizyty-wrap.wizyty-v2 textarea.wizyty-in{
  height: auto;
  min-height: 140px;
  padding: 14px 16px;
  border-radius: 4px;
  resize: vertical;
}

/* focus like "clean" forms */
.wizyty-wrap.wizyty-v2 .wizyty-in:focus{
  background: rgba(0,0,0,.06);
  border-color: rgba(47,79,115,.55); /* akcent (navy) */
}

label span {
    color:#222!important;
}

/* placeholder */
.wizyty-wrap.wizyty-v2 .wizyty-in::placeholder{
  color: rgba(0,0,0,.35);
}

/* make form container visually consistent */
.wizyty-wrap.wizyty-v2 .wizyty-right-wide{
  background: rgba(255,255,255,.10);
  border-radius: 5px;
}

/* keep buttons pill (as you wanted) but align spacing with form */
.wizyty-wrap.wizyty-v2 .wizyty-actions{
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.wizyty-wrap.wizyty-v2 .wizyty-actions .wizyty-btn{
  height: 52px;
  padding: 0 18px;
}

.wizyty-avatar{
  border-radius:999px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:22px;
  color:#fff;
  flex-shrink:0;
}

.wizyty-avatar-img img{
  border-radius:999px;    
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}



/* Consent checkboxes */
.wizyty-wrap.wizyty-v2 .wizyty-consents{
  display:grid;
  gap:14px;
  margin-top:6px;
}
.wizyty-wrap.wizyty-v2 .wizyty-consent{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:10px;
  align-items:start;
  cursor:pointer;
  font-size:15px;
  line-height:1.45;
  color:rgba(17,24,39,.86);
}
.wizyty-wrap.wizyty-v2 .wizyty-consent-check{
  width:18px !important;
  height:18px !important;
  min-width:18px;
  margin:2px 0 0 0;
  accent-color: var(--navy);
  appearance:auto;
  display:block;
}
.wizyty-wrap.wizyty-v2 .wizyty-consent span{
  display:block;
}
.wizyty-wrap.wizyty-v2 .wizyty-consent strong{
  color:#b42318;
  margin-right:4px;
}
.wizyty-wrap.wizyty-v2 .wizyty-consent a{
  color:var(--navy-2);
  text-decoration:underline;
}


/* ===== ZGODY / CHECKBOXY ===== */

.wizyty-consents {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.wizyty-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  color: #2f3b4f;
}

.wizyty-consent input[type="checkbox"],
.wizyty-consent-check {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 2px 0 0;
  border: 1.5px solid rgba(47, 59, 79, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.75);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
  outline: none;
}

.wizyty-consent input[type="checkbox"]::before,
.wizyty-consent-check::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 0.15s ease;
  margin-top: -1px;
}

.wizyty-consent input[type="checkbox"]:checked,
.wizyty-consent-check:checked {
  background: #355d8c;
  border-color: #355d8c;
}

.wizyty-consent input[type="checkbox"]:checked::before,
.wizyty-consent-check:checked::before {
  transform: rotate(-45deg) scale(1);
}

.wizyty-consent input[type="checkbox"]:hover,
.wizyty-consent-check:hover {
  border-color: #355d8c;
  background: rgba(255, 255, 255, 0.95);
}

.wizyty-consent input[type="checkbox"]:focus-visible,
.wizyty-consent-check:focus-visible {
  border-color: #355d8c;
  box-shadow: 0 0 0 3px rgba(53, 93, 140, 0.16);
}

.wizyty-consent-text,
.wizyty-consent span {
  display: block;
  padding-top: 0;
}

.wizyty-consent strong,
.wizyty-consent .required {
  color: #355d8c;
  font-weight: 700;
}

.wizyty-consent a {
  color: #355d8c;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.wizyty-consent a:hover {
  color: #243f61;
  opacity: 0.9;
}

.wizyty-consent a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(53, 93, 140, 0.16);
  border-radius: 4px;
}

/* trochę lepsze ustawienie sekcji przycisków pod zgodami */
.wizyty-stepview-2 .wizyty-footer {
  margin-top: 22px;
}

/* mobile */
@media (max-width: 767px) {
  .wizyty-consent {
    gap: 10px;
    font-size: 15px;
  }

  .wizyty-consent input[type="checkbox"],
  .wizyty-consent-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}

/* ===== FIX: zgody nie mogą ucinać się z lewej ===== */

.wizyty-consents {
  padding-left: 0 !important;
  margin-left: 0 !important;
  overflow: visible !important;
}

.wizyty-consent {
  padding-left: 0 !important;
  margin-left: 0 !important;
  overflow: visible !important;
}

.wizyty-consent input[type="checkbox"],
.wizyty-consent-check {
  margin-left: 0 !important;
  flex: 0 0 20px;
  position: relative;
  left: 0;
}

.wizyty-stepview-2,
.wizyty-form,
.wizyty-right-wide,
.wizyty-right {
  overflow: visible !important;
}

/* gdyby label miał zbyt ciasną siatkę */
.wizyty-consent-text,
.wizyty-consent span {
  min-width: 0;
}

/* mobile safety */
@media (max-width: 767px) {
  .wizyty-consents {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  .wizyty-consent {
    gap: 10px;
  }
}

/* ===== HARD RESET checkboxów zgód ===== */

.wizyty-consents {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 0 !important;
  overflow: visible !important;
}

.wizyty-consent {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  color: #2f3b4f;
}

.wizyty-consent input[type="checkbox"],
.wizyty-consent-check {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  box-sizing: border-box !important;
  display: inline-block !important;
  position: static !important;
  transform: none !important;
  translate: none !important;
  scale: 1 !important;
  float: none !important;

  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;

  border: 1px solid rgba(47, 59, 79, 0.35) !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: none !important;
  outline: none !important;
  vertical-align: top !important;
  flex: 0 0 20px !important;
}

.wizyty-consent input[type="checkbox"]::before,
.wizyty-consent-check::before {
  content: "" !important;
  display: block !important;
  width: 10px !important;
  height: 6px !important;
  margin: 4px 0 0 1px !important;
  border-left: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
  transform: rotate(-45deg) scale(0) !important;
  transform-origin: center !important;
  transition: transform 0.15s ease !important;
  box-sizing: border-box !important;
}

.wizyty-consent input[type="checkbox"]:checked,
.wizyty-consent-check:checked {
  background: #243f61 !important;
  border-color: #243f61 !important;
}

.wizyty-consent input[type="checkbox"]:checked::before,
.wizyty-consent-check:checked::before {
  transform: rotate(-45deg) scale(1) !important;
}

.wizyty-consent input[type="checkbox"]:hover,
.wizyty-consent-check:hover {
  border-color: #355d8c !important;
}

.wizyty-consent span,
.wizyty-consent-text {
  display: block !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.wizyty-consent a {
  color: #355d8c;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.wizyty-consent a:hover {
  color: #243f61;
  opacity: 0.9;
}

/* rodzice formularza nie mogą ucinać */
.wizyty-stepview-2,
.wizyty-stepview-2 .wizyty-right,
.wizyty-stepview-2 .wizyty-right-wide,
.wizyty-stepview-2 .wizyty-form {
  overflow: visible !important;
}

/* =========================
   SUCCESS VIEW (project style)
   ========================= */

.wizyty-success-wrap{
  display:flex;
  justify-content:center;
  padding:64px 20px 80px;
}

.wizyty-success-card2{
  width:100%;
  max-width:980px;
  text-align:center;
}

.wizyty-success-card2__icon{
  width:96px;
  height:96px;
  margin:0 auto 28px;
  border-radius:999px;
  background:#6f8f7a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.wizyty-success-card2__icon svg{
  width:40px;
  height:40px;
  display:block;
}

.wizyty-success-card2__title{
  margin:0 0 10px;
  font-family:inherit;
  font-size:34px;
  font-weight:800;
  line-height:1.15;
  color:#425d7a;
}

.wizyty-success-card2__lead{
  margin:0 0 36px;
  font-size:16px;
  line-height:1.5;
  color:rgba(66,93,122,.78);
}

.wizyty-success-card2__panel{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(47,79,115,.08);
  border-radius:18px;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
  text-align:left;
  padding:34px 40px;
}

.wizyty-success-card2__panel-title{
  margin:0 0 28px;
  font-family:inherit;
  font-size:22px;
  font-weight:800;
  color:#425d7a;
}

.wizyty-success-card2__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px 48px;
}

.wizyty-success-card2__item{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:16px;
  align-items:start;
}

.wizyty-success-card2__item-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  background:#eef1f3;
  color:#425d7a;
  display:flex;
  align-items:center;
  justify-content:center;
}

.wizyty-success-card2__item-icon svg{
  width:24px;
  height:24px;
  display:block;
}

.wizyty-success-card2__label{
  margin:0 0 4px;
  font-size:14px;
  line-height:1.4;
  color:#90a0ad;
  font-weight:500;
}

.wizyty-success-card2__value{
  font-size:18px;
  line-height:1.4;
  color:#425d7a;
  font-weight:600;
}

.wizyty-success-card2__meta{
  color:#425d7a;
  opacity:.85;
  font-weight:500;
}

.wizyty-success-card2__note{
  margin-top:26px;
  background:rgba(111,143,122,.12);
  border:1px solid rgba(111,143,122,.18);
  border-radius:14px;
  padding:22px 28px;
  text-align:center;
  font-size:16px;
  line-height:1.5;
  color:#425d7a;
}

@media (max-width: 900px){
  .wizyty-success-card2__grid{
    grid-template-columns:1fr;
    gap:20px;
  }
}

@media (max-width: 640px){
  .wizyty-success-wrap{
    padding:36px 16px 48px;
  }

  .wizyty-success-card2__icon{
    width:82px;
    height:82px;
    margin-bottom:22px;
  }

  .wizyty-success-card2__title{
    font-size:28px;
  }

  .wizyty-success-card2__lead{
    font-size:15px;
    margin-bottom:28px;
  }

  .wizyty-success-card2__panel{
    padding:24px 20px;
  }

  .wizyty-success-card2__panel-title{
    font-size:20px;
    margin-bottom:22px;
  }

  .wizyty-success-card2__item{
    grid-template-columns:44px 1fr;
    gap:14px;
  }

  .wizyty-success-card2__item-icon{
    width:44px;
    height:44px;
  }

  .wizyty-success-card2__value{
    font-size:16px;
  }

  .wizyty-success-card2__note{
    padding:18px 16px;
    font-size:15px;
  }
}


/* ===== SUCCESS ICONS FIX ===== */

.wizyty-success-icon,
.wizyty-success-card2__icon,
.wizyty-success-card2__item-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex: 0 0 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.wizyty-success-icon svg,
.wizyty-success-card2__icon svg,
.wizyty-success-card2__item-icon svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex: none !important;
  aspect-ratio: 1 / 1 !important;
}

.wizyty-success-icon svg *,
.wizyty-success-card2__icon svg *,
.wizyty-success-card2__item-icon svg * {
  vector-effect: non-scaling-stroke;
}

.wizyty-success-icon svg,
.wizyty-success-card2__icon svg,
.wizyty-success-card2__item-icon svg {
  width: 20px !important;
  height: 20px !important;
  view-box: unset;
  transform: none !important;
}
