/* ── Variables ─────────────────────────────────────────────────────────────── */
@import url('https://fonts.cdnfonts.com/css/uk-number-plate');
:root {
    --sidebar-width: 250px;
    --topbar-height: 65px;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #0f172a;
    --sidebar-bg: #e8e8e8;
    --sidebar-text: #1e1e1f;
    --sidebar-active: #003087;
    --sidebar-hover: #003087;
    --topbar-bg: #0f172a;
    --body-bg: #fff;
    --card-bg: rgb(249 249 249); /*#ffffff;*/
    --border-color: #e7ecf2;
    --text-muted: #64748b;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --pageheader-bg: #fff;
    --info: #3b82f6;
    --radius: 5px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);

    /* Additional root variables for consistent styling */
    --white: #ffffff;
    --card-header-bg: var(--white);
    --table-head-bg: #fbfbfb;
    --invoice-bg: var(--white);
    --auth-gradient-start: #1e3a8a;
    --auth-gradient-mid: #1e40af;
    --auth-gradient-end: #2563eb;
    --form-control-bg: #1d2945;
    --form-control-border: #384a71;
    --btn-primary-bg: #26357a;
    --btn-primary-border: #283989;
    --sidebar-overlay-bg: rgba(0,0,0,0.5);
    --scrollbar-track: var(--sidebar-bg);
    --scrollbar-thumb: #888;
    --scrollbar-thumb-hover: #555;
    --small-radius: 3px;
    --sidebar-overlay-z: 999;
}
.text-primary {
    color: rgb(38 90 167) !important;
}
.alert {
    margin-bottom: 100px;
}
.stat-card {
    background: #dde3ec !important;
    border: solid 1px #ceddff;
}
.stat-icon {
    background: #003087 !important;
    border-radius: 50% !important;
}
.stat-value {
    font-weight: 200 !important;
}
.btn-primary {
    background: #26357a;
    border-color: #283989;
    color: #dbdde8;
}
.btn {
    width: max-content;
    border-radius: 3px;
}
.btn-outline-warning {
    border-color: #ff8807;
    color: #ff8807;
}
.btn-outline-info {
    border-color: #128ca4;
    color: #128ca4;
}
.pageheader h4 {
    font-weight: 400 !important;
}
.pageheader {
    padding: 15px 25px;
    margin: -72px -72px 0 -72px;
    background: var(--pageheader-bg);
    border-bottom: solid 1px #e8e8e8;
    margin-bottom: 72px !important;
}
    .pageheader .me-2 {
        color: #272727 !important;
    }
.card-footer {
    border: 0px;
    padding: 15px;
}
.bg-gray-light {
    background: #fbfbfb;
}
/* Plus Jakarta Sans', sans-serif  ── Base ─────────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--body-bg);
}
body.has-sidebar { margin-left: var(--sidebar-width); padding-top: var(--topbar-height); transition: margin-left 0.3s; }

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--topbar-height));
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s;
    top: var(--topbar-height);
    bottom: var(--topbar-height);
}
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand {
    color: #dbeafe;
    text-decoration: none;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    width: var(--sidebar-width);
}
.brand i { color: var(--primary); }
.sidebar-section { padding: 1rem 0.75rem 0.5rem; }
.sidebar-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  color: #475569; padding: 0 0.5rem; display: block; margin-bottom: 0.25rem;
}
.sidebar .nav-link {
  color: var(--sidebar-text); border-radius: 8px; padding: 0.55rem 0.75rem;
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.905rem;
  transition: all 0.15s; text-decoration: none; margin-bottom: 2px;
}
    .sidebar .nav-link:hover {
        background: #00000000;
        color: var(--sidebar-hover);
    }
    .sidebar .nav-link.active {
        background: var(--dark);
        color: white;
        margin-left: -15px;
        border-radius: 0 10px 10px 0;
        padding-left: 28px;
    }
.sidebar .nav-link i { font-size: 1rem; width: 1.2rem; text-align: center; }
.sidebar-footer { margin-top: auto; padding: 1rem; border-top: 1px solid #cac8c8; }
.user-info { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--primary);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.user-name { font-size: 0.875rem; color: #333; font-weight: 500; }
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 999;
}

/* ── Topbar ───────────────────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0px; right: 0;
  height: var(--topbar-height); background: var(--topbar-bg);
  border-bottom: 1px solid var(--border-color);
  display: flex; align-items: center; padding: 0 1.25rem;
  gap: 1rem; z-index: 900; transition: left 0.3s;
  box-shadow: var(--shadow);
}
    .topbar .form-control {
        background: #1d2945;
        color: #8395c1;
        border: solid 1px #384a71;
        border-radius:3px;
    }
        .topbar .form-control::placeholder {
            color: #fff;
            opacity: 0.5;
    }
    .topbar .btn {
        border-radius: 3px;
    }
    .topbar .breadcrumb {
        font-size: 0.875rem;
    } 
    .breadcrumb {
        font-size: 13px;
    }
.topbar .breadcrumb-item a { color: var(--primary); text-decoration: none; }
#sidebarToggle { color: #64748b; padding: 0.25rem; }

/* ── Main Content ─────────────────────────────────────────────────────────── */
.main-content {
    padding: 1.5rem;
    min-height: calc(100vh - var(--topbar-height));
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--card-bg); border: 1px solid var(--border-color);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.card-header {
  background: var(--card-header-bg); border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.25rem; font-weight: 600; display: flex;
  align-items: center; justify-content: space-between;
}

/* ── Stat Cards ───────────────────────────────────────────────────────────── */
.stat-card {
  border-radius: var(--radius); padding: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow);
}
.stat-card .stat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.stat-card .stat-value { font-size: 1.75rem; font-weight: 700; line-height: 1; }
.stat-card .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.stat-primary { background: linear-gradient(135deg,#eff6ff,#dbeafe); }
.stat-primary .stat-icon { background: var(--primary); color: white; }
.stat-success { background: linear-gradient(135deg,#f0fdf4,#dcfce7); }
.stat-success .stat-icon { background: var(--success); color: white; }
.stat-warning { background: linear-gradient(135deg,#fffbeb,#fef3c7); }
.stat-warning .stat-icon { background: var(--warning); color: white; }
.stat-danger { background: linear-gradient(135deg,#fff1f2,#ffe4e6); }
.stat-danger .stat-icon { background: var(--danger); color: white; }
.stat-info { background: linear-gradient(135deg,#eff6ff,#dbeafe); }
.stat-info .stat-icon { background: var(--info); color: white; }

/* ── Tables ───────────────────────────────────────────────────────────────── */
.table { font-size: 0.875rem; overflow:scroll;}
    .table > thead > tr > th {
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        border-bottom : solid 3px #8689ef;
        padding: 1rem 1rem;
        background: #fbfbfb;
    }
    .table > tbody > tr > td {
        padding: 0.4rem 1rem;
        vertical-align: middle;
        font-size: .95rem;
    }
.table-hover > tbody > tr:hover { background-color: #f8fafc; }
.table td:last-child{text-align:right; }
    .table td:last-child div {
        margin-left: auto;
        width: max-content;
    }
/* ── Badges ───────────────────────────────────────────────────────────────── */
.badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35em 0.65em;
}
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: #dbeafe; color: #1e40af; }
.badge-inprogress { background: #e0e7ff; color: #3730a3; }
.badge-completed { background: #dcfce7; color: #166534; }
.badge-invoiced { background: #fae8ff; color: #7e22ce; }
.badge-paid { background: #dcfce7; color: #166534; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }

/* ── Checklist ────────────────────────────────────────────────────────────── */
.checklist-item {
  padding: 0.65rem 0; border-bottom: 1px solid var(--border-color);
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.checklist-item:last-child { border-bottom: none; }
.check-pass { color: var(--success); }
.check-fail { color: var(--danger); }
.check-advisory { color: var(--warning); }
.check-na { color: #94a3b8; }

/* ── Media Grid ───────────────────────────────────────────────────────────── */
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.media-thumb {
  border-radius: 8px; overflow: hidden; position: relative;
  aspect-ratio: 4/3; background: #f1f5f9; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s;
}
.media-thumb:hover { border-color: var(--primary); }
.media-thumb img, .media-thumb video { width: 100%; height: 100%; object-fit: cover; }
.media-thumb .media-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s; gap: 0.5rem;
}
.media-thumb:hover .media-overlay { opacity: 1; }

/* ── Invoice ──────────────────────────────────────────────────────────────── */
.invoice-wrapper {
  max-width: 100%; margin: 0 auto; background: var(--invoice-bg);
  padding: 3rem; border-radius: var(--radius); box-shadow: var(--shadow-md);
  zoom:.8;
}
.invoice-header { border-bottom: 3px solid var(--primary); padding-bottom: 1.5rem; margin-bottom: 2rem; }
.invoice-logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.invoice-table th { background: var(--primary); color: white; }
.invoice-total-row td { font-weight: 700; font-size: 1.1rem; }

/* ── Auth Pages ───────────────────────────────────────────────────────────── */
.auth-wrapper {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--auth-gradient-start) 0%, var(--auth-gradient-mid) 50%, var(--auth-gradient-end) 100%);
}
.auth-card {
  width: 100%; max-width: 420px; background: var(--white);
  border-radius: 16px; padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.auth-logo {
  text-align: center; margin-bottom: 2rem;
  font-size: 1.5rem; font-weight: 700; color: var(--primary);
}
.auth-logo i { font-size: 2rem; display: block; margin-bottom: 0.5rem; }

/* ── Forms ────────────────────────────────────────────────────────────────── */
.form-label { font-weight: 500; font-size: 0.875rem; margin-bottom: 0.35rem; }
.form-control, .form-select {
  border: 1.5px solid var(--border-color); border-radius: 5px;
  padding: 0.5rem 0.75rem; font-size: 0.875rem; transition: border-color 0.15s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.section-divider {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
  border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem; margin: 1.5rem 0 1rem;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  body.has-sidebar { margin-left: 0; }
  .sidebar { transform: translateX(-100%); }
  .sidebar.show { transform: translateX(0); }
  .sidebar-overlay.show { display: block; }
  .topbar { left: 0; }
    
   
}
@media (max-width: 990px) {
    .pageheader {
        padding: 15px 25px;
        margin: -30px -25px 0 -25px;
        /*background:#f3f3f3;*/
        border-bottom: solid 1px #e8e8e8;
        margin-bottom: 25px !important;
    }
 .card{overflow:auto}
}
/* ── Utilities ────────────────────────────────────────────────────────────── */
.page-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 1.5rem; }
.btn-icon { width: 32px; height: 32px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; }
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.empty-state i { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: 0.4; }

/* ── Payment Gateway Badges ───────────────────────────────────────────────── */
.badge-stripe  { background: #635bff; color: #fff; }
.badge-paypal  { background: #003087; color: #fff; }

/* ── Payment Status Colours ───────────────────────────────────────────────── */
.badge-succeeded         { background: #dcfce7; color: #166534; }
.badge-processing        { background: #dbeafe; color: #1e40af; }
.badge-failed            { background: #fee2e2; color: #991b1b; }
.badge-refunded          { background: #f3e8ff; color: #6b21a8; }
.badge-partiallyrefunded { background: #fef3c7; color: #92400e; }
.badge-disputed          { background: #ffe4e6; color: #9f1239; }

/* ── Payment Card Accents ─────────────────────────────────────────────────── */
.payment-card-stripe { border-left: 4px solid #635bff !important; }
.payment-card-paypal { border-left: 4px solid #003087 !important; }
.payment-card-cash   { border-left: 4px solid #22c55e !important; }
.payment-card-bank   { border-left: 4px solid #0ea5e9 !important; }

/* ── Gateway Chooser Cards ────────────────────────────────────────────────── */
.gateway-card {
  border: 2px solid var(--border-color); border-radius: 12px; padding: 1.5rem;
  cursor: pointer; transition: all 0.2s; text-align: center; background: white;
  display: block; text-decoration: none; color: inherit;
}
.gateway-card:hover  { border-color: var(--primary); box-shadow: var(--shadow-md); color: inherit; transform: translateY(-2px); }
.gateway-card:active { transform: translateY(0); }
.gateway-card .gateway-logo { font-size: 2.8rem; margin-bottom: 0.75rem; display: block; }
.gateway-card .gateway-name { font-weight: 700; font-size: 1.1rem; }
.gateway-card .gateway-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.gateway-card.stripe-card:hover { border-color: #635bff; }
.gateway-card.paypal-card:hover { border-color: #003087; }

/* ── Stripe Elements form ─────────────────────────────────────────────────── */
#stripe-card-element {
  border: 1.5px solid var(--border-color); border-radius: 8px;
  padding: 0.75rem; background: white; transition: border-color 0.15s;
}
#stripe-card-element.StripeElement--focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
#stripe-card-element.StripeElement--invalid { border-color: var(--danger); }
#payment-message { color: var(--danger); font-size: 0.875rem; margin-top: 0.5rem; min-height: 1.2em; }

/* ── Payment timeline / audit ─────────────────────────────────────────────── */
.payment-timeline { position: relative; padding-left: 1.5rem; }
.payment-timeline::before {
  content: ''; position: absolute; left: 0.4rem; top: 0; bottom: 0;
  width: 2px; background: var(--border-color);
}
.timeline-item { position: relative; padding-bottom: 1.25rem; }
.timeline-dot {
  position: absolute; left: -1.5rem; top: 0.2rem;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--primary); background: white;
}
.timeline-dot.success { background: var(--success); border-color: var(--success); }
.timeline-dot.danger  { background: var(--danger);  border-color: var(--danger); }
.timeline-dot.warning { background: var(--warning); border-color: var(--warning); }

/* ── Amount display ───────────────────────────────────────────────────────── */
.amount-large { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; }
.amount-currency { font-size: 1.5rem; font-weight: 600; vertical-align: super; }

/* ── Tenant Database Management ─────────────────────────────────────────── */
.db-card-dedicated { border-left: 4px solid #22c55e !important; }
.db-card-shared    { border-left: 4px solid #94a3b8 !important; }
.db-status-ok      { color: #16a34a; }
.db-status-pending { color: #d97706; }
.db-status-error   { color: #dc2626; }
pre.font-monospace { font-size: 0.75rem; word-break: break-all; white-space: pre-wrap; }

/*Custom*/
.regno:before{
    /*content:"GB";*/
}
.makebg {
   /* mix-blend-mode: darken;*/
    background-repeat: no-repeat !important;
    background-position-x: center !important;
    background-position-y: center !important;
    background-blend-mode: overlay !important;
}
.regno {
    /*font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;*/
    font-family: 'UKNumberPlate', sans-serif;
    letter-spacing: 1.5px;
    min-width:110px;
}


body{
	font-family: 'Roboto', sans-serif;
}
* {
	margin: 0;
	padding: 0;
}
i {
	/*margin-right: 10px;*/
}

/*------------------------*/
input:focus,
button:focus,
.form-control:focus{
	outline: none;
	box-shadow: none;
}
.form-control:disabled, .form-control[readonly]{
	background-color: #fff;
}
/*----------step-wizard------------*/
.d-flex{
	display: flex;
}
.justify-content-center{
	justify-content: center;
}
.align-items-center{
	align-items: center;
}

/*---------signup-step-------------*/
.bg-color{
	background-color: #333;
}
.signup-step-container{
	padding: 150px 0px;
	padding-bottom: 60px;
}




    .wizard .nav-tabs {
        position: relative;
        margin-bottom: 0;
        border-bottom-color: transparent;
    }

    .wizard > div.wizard-inner {
            position: relative;
    margin-bottom: 50px;
    text-align: center;
    }

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 75%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 15px;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #0e214b;
    font-weight: 500;
    border: 1px solid #ddd;
}
span.round-tab i{
    color:#555555;
}
.wizard li.active span.round-tab {
        background: #0db02b;
    color: #fff;
    border-color: #0db02b;
}
.wizard li.active span.round-tab i{
    color: #5bc0de;
}
.wizard .nav-tabs > li.active > a i{
	color: #0db02b;
}

.wizard .nav-tabs > li {
    width: 25%;
}

.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: red;
    transition: 0.1s ease-in-out;
}



.wizard .nav-tabs > li a {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
    background-color: transparent;
    position: relative;
    top: 0;
}
.wizard .nav-tabs > li a i{
	position: absolute;
    top: -15px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

    .wizard .nav-tabs > li a:hover {
        background: transparent;
    }

.wizard .tab-pane {
    position: relative;
    padding-top: 20px;
}


.wizard h3 {
    margin-top: 0;
}
.prev-step,
.next-step{
    font-size: 13px;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
}
.next-step{
	background-color: #0db02b;
}
.skip-btn{
	background-color: #cec12d;
}
.step-head{
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}
.term-check{
	font-size: 14px;
	font-weight: 400;
}
.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 40px;
    margin-bottom: 0;
}
.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 40px;
    margin: 0;
    opacity: 0;
}
.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 40px;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 2;
    color: #495057;
    background-color: var(--white);
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 38px;
    padding: .375rem .75rem;
    line-height: 2;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
}
.footer-link{
	margin-top: 30px;
}
.all-info-container{

}
.list-content{
	margin-bottom: 10px;
}
.list-content a{
	padding: 10px 15px;
    width: 100%;
    display: inline-block;
    background-color: #f5f5f5;
    position: relative;
    color: #565656;
    font-weight: 400;
    border-radius: 4px;
}
.list-content a[aria-expanded="true"] i{
	transform: rotate(180deg);
}
.list-content a i{
	text-align: right;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: 0.5s;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #fdfdfd;
}
.list-box{
	padding: 10px;
}
.signup-logo-header .logo_area{
	width: 200px;
}
.signup-logo-header .nav > li{
	padding: 0;
}
.signup-logo-header .header-flex{
	display: flex;
	justify-content: center;
	align-items: center;
}
.list-inline li{
    display: inline-block;
}
.pull-right{
    float: right;
}
/*-----------custom-checkbox-----------*/
/*----------Custom-Checkbox---------*/
/*input[type="checkbox"]{
    position: relative;
    display: inline-block;
    margin-right: 5px;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
    position: absolute;
    content: "";
    display: inline-block;   
}
input[type="checkbox"]::before{
    height: 16px;
    width: 16px;
    border: 1px solid #999;
    left: 0px;
    top: 0px;
    background-color: #fff;
    border-radius: 2px;
}
input[type="checkbox"]::after{
    height: 5px;
    width: 9px;
    left: 4px;
    top: 4px;
}
input[type="checkbox"]:checked::after{
    content: "";
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}
input[type="checkbox"]:checked::before{
    background-color: #18ba60;
    border-color: #18ba60;
}

*/




@media (max-width: 767px){
	.sign-content h3{
		font-size: 40px;
	}
	.wizard .nav-tabs > li a i{
		display: none;
	}
	.signup-logo-header .navbar-toggle{
		margin: 0;
		margin-top: 8px;
	}
	.signup-logo-header .logo_area{
		margin-top: 0;
	}
	.signup-logo-header .header-flex{
		display: block;
	}
}



/*-------------Scroll----------*/
.sidebar {
    overflow: hidden !important;
}

    .sidebar:hover {
        /* overflow-y: scroll; */
        overflow-y: auto !important;
    }

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--sidebar-bg);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/*-------------radio---------------

.radio-wrapper-20 input[type="radio"]:focus {
    outline: 0;
    border-color: #2260ff;
    box-shadow: 0 0 0 4px #b5c9fc;
}

.radio-wrapper-20 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    justify-content: center;
}

    .radio-wrapper-20 input[type="radio"] {
        clip: rect(0 0 0 0);
        clip-path: inset(100%);
        height: 1px;
        overflow: hidden;
        position: absolute;
        white-space: nowrap;
        width: 1px;
    }

        .radio-wrapper-20 input[type="radio"]:checked + span {
            box-shadow: 0 0 0 0.0625em #0043ed;
            background-color: #dee7ff;
            z-index: 1;
            color: #0043ed;
        }

    .radio-wrapper-20 label span {
        display: block;
        cursor: pointer;
        background-color: #fff;
        padding: 0.375em .75em;
        position: relative;
        margin-left: .0625em;
        box-shadow: 0 0 0 0.0625em #b5bfd9;
        letter-spacing: .05em;
        color: #3e4963;
        text-align: center;
        transition: background-color .5s ease;
    }

    .radio-wrapper-20 label:first-child span {
        border-radius: .375em 0 0 .375em;
    }

    .radio-wrapper-20 label:last-child span {
        border-radius: 0 .375em .375em 0;
    }      
*/
/*---------radio 2---------*/
.shiny-options-group {
    display: flex;
    justify-content: space-around;
    padding-left: 1px;
    padding-right: 1px;
}

    .shiny-options-group label {
        float: left;
    }

    .shiny-options-group label {
        display: inline-block;
        /*width: 9%;*/
        background-color: #e8f2f5;
        color: #000;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        padding: 6px 14px;
        border: 1px solid #FFF;
        cursor: pointer;
        border-radius:5px;
    }

    .shiny-options-group input {
        display: none;
    }

label input[type="radio"]:checked ~ span {
    color: #FFF;
}

.radio-inline.checked {
    background-color: #212529;
}

    .radio-inline.checked span {
        color: white;
    }

.addressdiv {
    display: block;
    position: absolute;
    width: 98%;
    padding: 5px 5px 6px 6px;
    overflow-y: auto;
    max-height: 250px;
    /* right: 10px; */
    left: 5px;
    border: solid 2px #c2c1c1;
    border-radius: 5px;
    background: #e8e8e8;
    /* top: 51px; */
}
.list-group li:hover{
    background:#cfd6ee;
}