:root {
  --myh-brand: #1b6fb3;
  --myh-brand-dark: #0f4c81;
  --myh-navy: #12232f;
  --myh-red: #e23b2e;
  --myh-red-dark: #b32a20;
  --myh-ink: #1f2a33;
  --myh-muted: #5f6b73;
  --myh-line: #dde3e8;
  --myh-bg: #f4f6f8;
}

/* ─── Hero ─── */
.myh-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #000;
  color: #fff;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem;
}
.myh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.myh-hero-inner {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.myh-hero-inner h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.myh-hero-inner p {
  font-size: 1.15rem;
  margin: 0;
}
@media (max-width: 640px) {
  .myh-hero-inner h1 {
    font-size: 2rem;
  }
  .myh-hero-inner p {
    font-size: 1rem;
  }
}

/* ─── Layout ─── */
.myh-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  background: var(--myh-bg);
}
@media (min-width: 1024px) {
  .myh-main {
    grid-template-columns: 2.2fr 1fr;
    align-items: start;
  }
}
.myh-col-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.myh-col-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ─── Cards ─── */
.myh-card {
  background: #fff;
  border: 1px solid var(--myh-line);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ─── Step headings ─── */
.myh-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.myh-step-num {
  background: var(--myh-navy);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.myh-step-head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--myh-ink);
}

/* ─── Option cards ─── */
.myh-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 820px) {
  .myh-options {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .myh-options {
    grid-template-columns: 1fr;
  }
}

.myh-opt {
  position: relative;
  background: #fff !important;
  border: 1.5px solid var(--myh-line) !important;
  border-radius: 10px;
  padding: 1rem 0.9rem;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    background 0.15s;
  font-family: inherit;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.myh-opt:hover {
  border-color: var(--myh-brand) !important;
}
.myh-opt:focus {
  outline: none !important;
  box-shadow: none;
}

.myh-opt-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #eef4fa;
  color: var(--myh-brand);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.myh-ic-warn {
  background: #fdf3e2;
  color: #c47c0e;
}

.myh-opt-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--myh-ink);
}
.myh-opt-desc {
  font-size: 0.78rem;
  color: var(--myh-muted);
  line-height: 1.35;
}

.myh-opt.myh-opt-active {
  border-color: var(--myh-brand) !important;
  background: #f2f8fd !important;
  box-shadow: 0 0 0 3px rgba(27, 111, 179, 0.14);
}
.myh-opt.myh-opt-danger.myh-opt-active {
  border-color: var(--myh-brand) !important;
}

.myh-tick {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--myh-brand);
  color: #fff;
  font-size: 0.7rem;
  display: none;
  align-items: center;
  justify-content: center;
}
.myh-opt.myh-opt-active .myh-tick {
  display: flex;
}

/* ─── Form wrapper + CF7 step cards ─── */
.myh-form-wrap .myh-form-fields {
  display: block;
}

.myh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
@media (max-width: 640px) {
  .myh-grid {
    grid-template-columns: 1fr;
  }
}
.myh-full {
  grid-column: 1/-1;
}

.myh-field {
  display: flex;
  flex-direction: column;
}
.myh-field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--myh-ink);
}
.myh-req {
  color: var(--myh-red);
}
.myh-field br {
  display: none !important;
}

.myh-input,
.myh-select,
.myh-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--myh-line);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--myh-ink);
  box-sizing: border-box;
}
.myh-input:focus,
.myh-select:focus,
.myh-textarea:focus {
  outline: none;
  border-color: var(--myh-brand);
  box-shadow: 0 0 0 3px rgba(27, 111, 179, 0.12);
}
.myh-textarea {
  min-height: 80px;
  resize: vertical;
}

.myh-note {
  font-size: 0.8rem;
  color: var(--myh-muted);
  margin: 0 0 0.5rem;
}
.myh-helper-link {
  font-size: 0.8rem;
  color: var(--myh-brand);
  text-decoration: underline;
  margin-top: 0.3rem;
  display: inline-block;
}
.myh-tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--myh-brand);
  color: #fff;
  font-size: 0.7rem;
  cursor: help;
  margin-left: 0.2rem;
}

/* ─── Safety alert (Breakdown) ─── */
.myh-safety-alert {
  display: flex;
  gap: 0.6rem;
  background: #fdecea;
  border: 1px solid #f5c2bd;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: var(--myh-red-dark);
  line-height: 1.5;
}
.myh-safety-alert strong {
  color: var(--myh-red-dark);
}
.myh-safety-alert a {
  color: var(--myh-red-dark);
  font-weight: 700;
}

/* ─── Type blocks (show/hide) ─── */
.myh-type-block {
  display: none;
}
.myh-type-block.myh-block-active {
  display: block;
}

/* ─── Consent + submit row ─── */
.myh-consent-row {
  background: #fff;
  border: 1px solid var(--myh-line);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.myh-consent {
  flex: 1;
  min-width: 240px;
  font-size: 0.88rem;
  color: var(--myh-ink);
  line-height: 1.7;
}
.myh-consent a {
  color: var(--myh-brand);
  text-decoration: underline;
}
.myh-consent .wpcf7-list-item {
  margin: 0;
}

.myh-submit-btn {
  background: var(--myh-brand) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.85rem 1.9rem !important;
  border-radius: 8px !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.myh-submit-btn:hover {
  background: var(--myh-brand-dark) !important;
}

/* ─── Sidebar ─── */
.myh-sidebar-card .myh-side-heading {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
  line-height: 1.45;
  color: var(--myh-ink);
}
.myh-side-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.myh-side-steps li {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--myh-line);
}
.myh-side-steps li:first-child {
  border-top: none;
  padding-top: 0;
}
.myh-side-num {
  background: var(--myh-navy);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.myh-side-steps strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  color: var(--myh-ink);
}
.myh-side-steps p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--myh-muted);
  line-height: 1.5;
}

/* Tips card */
.myh-tips-card {
  border-left: 4px solid var(--myh-brand);
  border-radius: 0 12px 12px 0;
}
.myh-tips-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--myh-line);
}
.myh-tips-card h3 i {
  color: var(--myh-brand);
}
.myh-tips-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.myh-tips-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--myh-muted);
  line-height: 1.5;
}
.myh-tips-list li + li {
  margin-top: 0.75rem;
}
.myh-tips-list li i {
  color: var(--myh-brand);
  margin-top: 3px;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.myh-tips-list strong {
  color: var(--myh-brand);
}
.myh-tips-card.myh-hidden {
  display: none;
}

/* Phone CTA card */
.myh-phone-card {
  background: var(--myh-navy);
  color: #fff;
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
}
.myh-phone-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.myh-phone-card p {
  font-size: 0.85rem;
  margin: 0 0 1rem;
  color: #c9d3da;
  line-height: 1.5;
}
.myh-phone-btn {
  display: block;
  background: var(--myh-brand);
  color: #fff !important;
  text-align: center;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.15s;
}
.myh-phone-btn:hover {
  background: var(--myh-brand-dark);
}











/* ══════════════════════════════════════
   FIXES — full width bg, card layout,
   links, sidebar, hide footer form
   ══════════════════════════════════════ */

/* ─── Full-width page background ─── */
.myh-page-bg{
  background:#F4F6F8;
  width:100%;
}
.myh-main{
  background:transparent !important;
}

/* ─── Option cards: force vertical card layout ─── */
.myh-options{
  display:grid !important;
  grid-template-columns:repeat(4,1fr) !important;
  gap:.75rem !important;
}
@media(max-width:900px){
  .myh-options{grid-template-columns:repeat(2,1fr) !important}
}
@media(max-width:480px){
  .myh-options{grid-template-columns:1fr !important}
}

.myh-opt{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  text-align:left !important;
  gap:0 !important;
  min-height:118px;
  padding:1rem .9rem !important;
  line-height:1.35 !important;
}
.myh-opt > span{
  display:block !important;
  width:auto !important;
}
.myh-opt .myh-opt-ic{
  display:inline-flex !important;
  width:32px !important;
  height:32px !important;
  flex:0 0 auto !important;
  margin-bottom:.55rem !important;
}
.myh-opt .myh-opt-title{
  display:block !important;
  font-size:.98rem !important;
  font-weight:700 !important;
  margin-bottom:.2rem !important;
}
.myh-opt .myh-opt-desc{
  display:block !important;
  font-size:.78rem !important;
  font-weight:400 !important;
  color:var(--myh-muted) !important;
}
.myh-opt .myh-tick{
  position:absolute !important;
  top:.6rem !important;
  right:.6rem !important;
  width:20px !important;
  height:20px !important;
  margin:0 !important;
}

/* ─── Links: blue, not white ─── */
.myh-page-bg a:not(.myh-phone-btn):not(.myh-submit-btn):not(.myh-opt){
  color:var(--myh-brand) !important;
  text-decoration:underline !important;
  transition:color .15s;
}
.myh-page-bg a:not(.myh-phone-btn):not(.myh-submit-btn):not(.myh-opt):hover{
  color:var(--myh-brand-dark) !important;
  text-decoration:underline !important;
}
.myh-helper-link,
.myh-consent a{
  color:var(--myh-brand) !important;
  text-decoration:underline !important;
}
.myh-helper-link:hover,
.myh-consent a:hover{
  color:var(--myh-brand-dark) !important;
}
/* Safety alert link stays red */
.myh-safety-alert a{
  color:var(--myh-red-dark) !important;
  font-weight:700 !important;
}
.myh-safety-alert a:hover{
  color:var(--myh-red) !important;
}
/* Phone button text stays white */
.myh-phone-card a.myh-phone-btn{
  color:#fff !important;
  text-decoration:none !important;
}

/* ─── Sidebar responsive ─── */
@media(max-width:1023px){
  .myh-main{
    grid-template-columns:1fr !important;
  }
  .myh-col-right{
    margin-top:.5rem;
  }
}
@media(min-width:1024px){
  .myh-col-right{
    position:sticky;
    top:2rem;
  }
}
.myh-col-right .myh-card,
.myh-col-right .myh-phone-card{
  width:100%;
  box-sizing:border-box;
}

/* ─── Mobile polish ─── */
@media(max-width:640px){
  .myh-main{
    padding:1.25rem .9rem 3rem !important;
  }
  .myh-card,
  .myh-consent-row{
    padding:1.15rem 1.1rem !important;
  }
  .myh-consent-row{
    flex-direction:column;
    align-items:stretch;
     gap:1.1rem;
  }
    .myh-consent{
    line-height:1.65;
  }
  
  .myh-submit-btn{
    width:100% !important;
  }
  .myh-hero{
    min-height:200px !important;
    padding:2rem 1.1rem !important;
  }
  .myh-grid{
    gap:.85rem !important;
  }
}

/* ─── Hide the theme's footer contact form on this page only ─── */
.page-template-page-manage-your-hire-php #FooterForm,
.page-template-page-manage-your-hire-php .elementor-element-4536306{
  display:none !important;
}









/* ══════════════════════════════════════
   FIXES ROUND 2
   ══════════════════════════════════════ */

/* ─── Brand colour override to AX blue ─── */
:root{
  --myh-brand: #7CA1D3;
  --myh-brand-dark: #5C84BD;
}

/* ─── Tick: only show on active card, fix alignment ─── */
.myh-opt .myh-tick{
  display:none !important;
}
.myh-opt.myh-opt-active .myh-tick{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  position:absolute !important;
  top:.55rem !important;
  right:.55rem !important;
  width:19px !important;
  height:19px !important;
  border-radius:50% !important;
  background:var(--myh-brand) !important;
  color:#fff !important;
  font-size:.62rem !important;
  line-height:1 !important;
  font-weight:700 !important;
  padding:0 !important;
  margin:0 !important;
}

/* ─── Kill hover scale/enlarge on option cards ─── */
.myh-opt,
.myh-opt:hover,
.myh-opt:focus,
.myh-opt:active{
  transform:none !important;
  scale:none !important;
  transition:border-color .15s, background .15s, box-shadow .15s !important;
}
.myh-opt:hover{
  border-color:var(--myh-brand) !important;
  background:#fafcfe !important;
}
.myh-opt.myh-opt-active{
  background:#eff5fc !important;
  border-color:var(--myh-brand) !important;
  box-shadow:0 0 0 2px rgba(124,161,211,.28) !important;
}

/* ─── Off-hire arrow icon: brand blue, not red ─── */
.myh-opt .myh-opt-ic{
  background:#eef4fa !important;
  color:var(--myh-brand) !important;
}
.myh-opt .myh-ic-warn{
  background:#fdf3e2 !important;
  color:#c47c0e !important;
}

/* ─── Additional Tips: fix the awkward two-column wrap ─── */
.myh-tips-list{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}
.myh-tips-list li{
  display:flex !important;
  align-items:flex-start !important;
  gap:.55rem !important;
  font-size:.85rem !important;
  line-height:1.5 !important;
  color:var(--myh-muted) !important;
}
.myh-tips-list li + li{
  margin-top:.8rem !important;
}
.myh-tips-list li i{
  color:var(--myh-brand) !important;
  font-size:.78rem !important;
  margin-top:.28rem !important;
  flex:0 0 auto !important;
}
.myh-tips-list li strong{
  color:var(--myh-brand) !important;
  font-weight:700 !important;
  display:inline !important;
  white-space:normal !important;
}
/* The key fix — let text flow as one block, not split columns */
.myh-tips-list li > *:not(i){
  display:inline !important;
}

/* ─── Sidebar steps: same treatment ─── */
.myh-side-steps li{
  display:flex !important;
  align-items:flex-start !important;
  gap:.7rem !important;
}
.myh-side-steps strong{
  display:block !important;
  font-size:.9rem !important;
  margin-bottom:.25rem !important;
  line-height:1.4 !important;
}
.myh-side-steps p{
  margin:0 !important;
  font-size:.84rem !important;
  line-height:1.55 !important;
}
.myh-side-num{
  flex:0 0 auto !important;
}

/* ─── Safety alert: fix layout, single flowing paragraph ─── */
.myh-safety-alert{
  display:block !important;
  background:#fdecea !important;
  border:1px solid #f5c2bd !important;
  border-radius:8px !important;
  padding:.9rem 1.1rem !important;
  margin-bottom:1.35rem !important;
  font-size:.875rem !important;
  line-height:1.6 !important;
  color:var(--myh-red-dark) !important;
}
.myh-safety-alert strong{
  color:var(--myh-red-dark) !important;
  font-weight:700 !important;
  display:inline !important;
}
.myh-safety-alert a{
  color:var(--myh-red-dark) !important;
  font-weight:700 !important;
  text-decoration:underline !important;
  white-space:nowrap !important;
  display:inline !important;
}
.myh-safety-alert a:hover{
  color:var(--myh-red) !important;
}
/* Prevent any child wrapping into columns */
.myh-safety-alert > *{
  display:inline !important;
}

/* ─── Buttons: AX blue ─── */
.myh-submit-btn{
  background:var(--myh-brand) !important;
  transform:none !important;
}
.myh-submit-btn:hover{
  background:var(--myh-brand-dark) !important;
  transform:none !important;
}
.myh-phone-btn{
  background:var(--myh-brand) !important;
  transform:none !important;
}
.myh-phone-btn:hover{
  background:var(--myh-brand-dark) !important;
  transform:none !important;
}

/* ─── Focus rings using new brand ─── */
.myh-input:focus,.myh-select:focus,.myh-textarea:focus{
  border-color:var(--myh-brand) !important;
  box-shadow:0 0 0 3px rgba(124,161,211,.22) !important;
}

/* ─── Links using new brand ─── */
.myh-page-bg a:not(.myh-phone-btn):not(.myh-submit-btn):not(.myh-opt):not(.myh-safety-alert a){
  color:var(--myh-brand-dark) !important;
}
.myh-page-bg a:not(.myh-phone-btn):not(.myh-submit-btn):not(.myh-opt):hover{
  color:#3f6699 !important;
}

/* ─── Tips card left border ─── */
.myh-tips-card{
  border-left:4px solid var(--myh-brand) !important;
}
.myh-tips-card h3 i{
  color:var(--myh-brand) !important;
}

/* ─── Step number badges ─── */
.myh-step-num,
.myh-side-num{
  background:var(--myh-navy) !important;
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVE
   ══════════════════════════════════════ */
@media(max-width:768px){
  .myh-hero{
    min-height:180px !important;
    padding:1.75rem 1.1rem !important;
  }
  .myh-hero-inner h1{
    font-size:1.85rem !important;
  }
  .myh-hero-inner p{
    font-size:.95rem !important;
  }
  .myh-main{
    padding:1.1rem .85rem 2.5rem !important;
    gap:1.1rem !important;
  }
  .myh-card,
  .myh-consent-row{
    padding:1.1rem 1rem !important;
    border-radius:10px !important;
  }
  .myh-step-head h2{
    font-size:1.05rem !important;
  }
  .myh-options{
    grid-template-columns:1fr 1fr !important;
    gap:.6rem !important;
  }
  .myh-opt{
    min-height:106px !important;
    padding:.85rem .75rem !important;
  }
  .myh-opt .myh-opt-ic{
    width:28px !important;
    height:28px !important;
    font-size:.95rem !important;
    margin-bottom:.4rem !important;
  }
  .myh-opt .myh-opt-title{
    font-size:.9rem !important;
  }
  .myh-opt .myh-opt-desc{
    font-size:.72rem !important;
  }
  .myh-grid{
    grid-template-columns:1fr !important;
    gap:.8rem !important;
  }
  .myh-consent-row{
    flex-direction:column !important;
    align-items:stretch !important;
    gap:1rem !important;
  }
  .myh-submit-btn{
    width:100% !important;
  }
  .myh-sidebar-card .myh-side-heading{
    font-size:.95rem !important;
  }
  .myh-safety-alert{
    font-size:.83rem !important;
    padding:.8rem .9rem !important;
  }
}

@media(max-width:420px){
  .myh-options{
    grid-template-columns:1fr !important;
  }
  .myh-opt{
    min-height:auto !important;
  }
  .myh-hero-inner h1{
    font-size:1.6rem !important;
  }
}




/* ─── Submit button: bulletproof colour override ─── */
.myh-page-bg input.wpcf7-submit,
.myh-page-bg input.wpcf7-submit.myh-submit-btn,
.myh-page-bg .wpcf7-form input[type="submit"],
.myh-page-bg .myh-consent-row input[type="submit"],
.myh-page-bg .myh-submit-btn{
  background:#7CA1D3 !important;
  background-color:#7CA1D3 !important;
  background-image:none !important;
  color:#fff !important;
  border:none !important;
  border-color:#7CA1D3 !important;
  padding:.85rem 1.9rem !important;
  border-radius:8px !important;
  font-size:.98rem !important;
  font-weight:700 !important;
  cursor:pointer !important;
  transform:none !important;
  box-shadow:none !important;
  text-shadow:none !important;
  transition:background-color .15s !important;
  -webkit-appearance:none !important;
  appearance:none !important;
}
.myh-page-bg input.wpcf7-submit:hover,
.myh-page-bg input.wpcf7-submit.myh-submit-btn:hover,
.myh-page-bg .wpcf7-form input[type="submit"]:hover,
.myh-page-bg .myh-consent-row input[type="submit"]:hover,
.myh-page-bg .myh-submit-btn:hover{
  background:#5C84BD !important;
  background-color:#5C84BD !important;
  border-color:#5C84BD !important;
  transform:none !important;
}


/* ─── Additional Tips: normal paragraph flow ─── */
.myh-tips-list{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}
.myh-tips-list li{
  display:block !important;
  position:relative !important;
  padding-left:1.5rem !important;
  font-size:.875rem !important;
  line-height:1.55 !important;
  color:#5f6b73 !important;
  margin:0 !important;
}
.myh-tips-list li + li{
  margin-top:.9rem !important;
}
.myh-tips-list li i{
  position:absolute !important;
  left:0 !important;
  top:.32rem !important;
  color:#7CA1D3 !important;
  font-size:.8rem !important;
  margin:0 !important;
}
.myh-tips-list li strong{
  color:#2c6cb5 !important;
  font-weight:700 !important;
  display:inline !important;
}



/* ─── Asset number help modal ─── */
.myh-modal-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:99999;
  align-items:center;
  justify-content:center;
  padding:1.5rem;
}
.myh-modal-overlay.myh-modal-open{
  display:flex;
}
.myh-modal{
  background:#1c2733;
  color:#fff;
  border-radius:14px;
  max-width:400px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}
.myh-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.15rem 1.35rem .9rem;
}
.myh-modal-head h3{
  margin:0;
  font-size:1.02rem;
  font-weight:700;
  color:#fff;
}
.myh-modal-close{
  background:transparent !important;
  border:none !important;
  color:#9aa8b4 !important;
  font-size:1.4rem;
  line-height:1;
  cursor:pointer;
  padding:0 !important;
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.myh-modal-close:hover{
  color:#fff !important;
}
.myh-modal-body{
  padding:0 1.35rem 1.35rem;
}
.myh-modal-body img{
  width:100%;
  height:auto;
  border-radius:8px;
  display:block;
  margin-bottom:1rem;
}
.myh-modal-body p{
  font-size:.875rem;
  line-height:1.6;
  color:#dbe3ea;
  margin:0 0 .8rem;
}
.myh-modal-body p:last-child{
  margin-bottom:0;
}
.myh-modal-body strong{
  color:#fff;
  font-weight:700;
}
.myh-modal-note{
  color:#9aa8b4 !important;
  font-size:.82rem !important;
}
@media(max-width:480px){
  .myh-modal{max-width:100%}
  .myh-modal-head{padding:1rem 1.1rem .75rem}
  .myh-modal-body{padding:0 1.1rem 1.1rem}
}


.myh-consent-row .wpcf7-list-item-label,
.myh-consent-row span.wpcf7-list-item-label{
  line-height: 1.7 !important;
}


.myh-consent-row .wpcf7-list-item,
.myh-consent-row label,
.myh-consent-row .wpcf7-form-control-wrap{
  line-height: 1.7 !important;
}



/* ══════════════════════════════════════
   MOBILE STICKY SUBMIT
   ══════════════════════════════════════ */

.myh-mobile-submit{
  display:none;
}

@media (max-width:1023px){
  .myh-mobile-submit{
    display:block;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:9998; /* below the help modal (99999) so it never sits on top of it */
    background:#12232f;
    border-top:3px solid var(--myh-brand);
    padding:.75rem 1rem calc(.75rem + env(safe-area-inset-bottom, 0px));
    box-shadow:0 -4px 20px rgba(0,0,0,.18);
    transition:transform .25s ease, opacity .25s ease;
  }
 
 
   .myh-mobile-submit .myh-mobile-submit-btn,
  .myh-mobile-submit button.myh-mobile-submit-btn{
    display:block !important;
    width:100% !important;
    background:#7CA1D3 !important;
    background-color:#7CA1D3 !important;
    background-image:none !important;
    color:#fff !important;
    border:none !important;
    border-color:#7CA1D3 !important;
    border-radius:8px !important;
    padding:.95rem 1rem !important;
    font-family:inherit !important;
    font-size:1rem !important;
    font-weight:700 !important;
    line-height:1.2 !important;
    letter-spacing:normal !important;
    text-transform:none !important;
    text-shadow:none !important;
    box-shadow:none !important;
    cursor:pointer !important;
    -webkit-appearance:none !important;
    appearance:none !important;
  }
  .myh-mobile-submit .myh-mobile-submit-btn:hover,
  .myh-mobile-submit .myh-mobile-submit-btn:active,
  .myh-mobile-submit .myh-mobile-submit-btn:focus{
    background:#5C84BD !important;
    background-color:#5C84BD !important;
    color:#fff !important;
    border:none !important;
    outline:none !important;
  }
  .myh-mobile-submit .myh-mobile-submit-btn[disabled]{
    opacity:.55 !important;
    cursor:not-allowed !important;
  }

  /* Stop the bar covering the last of the page content */
  body.page-template-page-manage-your-hire-php{
    padding-bottom:104px;
  }




 
 
 
}