

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    text-align: center;
}

#progressbar .active {
    color: #000000;
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 20%;
    float: left;
    position: relative;
}

/*Icons in the ProgressBar*/
#progressbar #account:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f023";
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007";
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\e445";
}

#progressbar #done:before {
    font-family: fontawesome;
    content: "\f00c";
}

#progressbar #confirm:before {
    font-family: fontawesome;
    content: "\f530";
}

/*ProgressBar before any progress*/
/*ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    background: skyblue;
}


/*Color number of the step and the connector before it*/
#progressbar li.done:before, #progressbar li.done:after {
    background: rgb(195, 245, 183);
}

.is-hidden{display:none !important;}

.nss-form-wrap{max-width:980px;margin:2rem auto;padding:0 1rem;}
.nss-card{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:14px;box-shadow:0 6px 18px rgba(0,0,0,.06);overflow:hidden;margin-bottom:1rem;}
.nss-card__hd{padding:1rem 1.25rem;border-bottom:1px solid rgba(0,0,0,.06);background:linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0));}
.nss-card__hd h2{margin:0;font-size:1.1rem;}
.nss-card__bd{padding:1.25rem;}
.nss-grid{display:grid;gap:1rem;}
.nss-grid--2{grid-template-columns:repeat(2, minmax(0,1fr));}
.nss-grid--3{grid-template-columns:repeat(3, minmax(0,1fr));}
.nss-field label{display:block;font-weight:600;margin:0 0 .35rem;}
.nss-field input[type="text"],
.nss-field input[type="email"],
.nss-field input[type="tel"],
.nss-field input[type="date"],
.nss-field textarea,
.nss-field select{
  width:100%;padding:.65rem .75rem;border:1px solid rgba(0,0,0,.18);
  border-radius:10px;outline:none;
}
.nss-field textarea{min-height:90px;resize:vertical;}
.nss-help{font-size:.9rem;opacity:.75;margin-top:.35rem;}
.nss-divider{height:1px;background:rgba(0,0,0,.06);margin:1rem 0;}
.nss-inline{display:flex;flex-wrap:wrap;gap:.75rem;align-items:center;}
.nss-choice{display:flex;gap:.5rem;align-items:flex-start;padding:.6rem .75rem;border:1px solid rgba(0,0,0,.12);border-radius:12px;background:rgba(0,0,0,.015);}
.nss-choice input{margin-top:.2rem;}
.nss-actions{display:flex;gap:.75rem;justify-content:flex-end;margin-top:1rem;}
.nss-btn{appearance:none;border:0;border-radius:12px;padding:.8rem 1rem;font-weight:700;cursor:pointer;}
.nss-btn--primary{background:#0b5; color:#fff;}
.nss-btn--ghost{background:rgba(0,0,0,.06); color:#111;}
.nss-btn--danger{background:rgba(200,0,0,.10); color:#700;}
.nss-note{font-size:.95rem;opacity:.85;line-height:1.4;}

.boat-item{border:1px solid rgba(0,0,0,.10);border-radius:12px;padding:1rem;background:rgba(0,0,0,.01);}
.boat-item__top{display:flex;align-items:center;justify-content:space-between;gap:.75rem;margin-bottom:.75rem;}
.boat-item__title{font-weight:800;}
.boat-item__remove{font-weight:800;}
.boat-empty{opacity:.85;font-size:.95rem;}

@media (max-width: 820px){
  .nss-grid--2,.nss-grid--3{grid-template-columns:1fr;}
  .nss-actions{justify-content:stretch;}
  .nss-btn{width:100%;}
  .boat-item__top{flex-direction:column;align-items:flex-start;}
}