html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background: #263b7a;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
}

.page-bg {
    min-height: calc(100vh - 160px);
    background:
        linear-gradient(120deg, transparent 0%, transparent 18%, rgba(255,255,255,0.025) 18%, rgba(255,255,255,0.025) 38%, transparent 38%),
        linear-gradient(300deg, transparent 0%, transparent 22%, rgba(0,0,0,0.06) 22%, rgba(0,0,0,0.06) 42%, transparent 42%),
        #263b7a;
}

.tipline-topbar {
    padding-top: 30px;
}

.tipline-brand {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-decoration: none;
    line-height: 1;
}

.tipline-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #9b2638;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    margin-right: 8px;
}

.return-home {
    color: #fff;
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.return-home:hover {
    color: #dbeafe;
}

.tipline-title {
    color: #fff;
    font-size: 3.25rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 32px;
}

.tipline-card {
    background: #fff;
    border-radius: 8px;
    min-height: 495px;
    padding: 38px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.tipline-card h5 {
    font-weight: 700;
}

.tipline-rule {
    border: 0;
    border-top: 1px solid #2f80ed;
    opacity: 1;
    margin: 12px 0 22px;
}

.tipline-card p {
    font-size: .95rem;
    line-height: 1.45;
}

.tipline-footer {
    background: #181a20;
    color: #7d8795;
    min-height: 160px;
    padding-top: 48px;
    font-size: .75rem;
    letter-spacing: .4px;
}

.tipline-footer-line {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 22px;
}

.btn-primary {
    min-width: 230px;
    border-radius: 6px;
    font-weight: 500;
}

/* Concern Cards */

.concern-card{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:100%;
    padding:12px;

    border:1px solid #d5d9e3;
    border-radius:8px;

    background:#fff;

    font-weight:600;
    color:#212529;

    cursor:pointer;

    transition:.2s;
}

.concern-card:hover{
    border-color:#2f80ed;
    box-shadow:0 2px 8px rgba(47,128,237,.15);
}

.concern-card .emoji{
    font-size:1.2rem;
    line-height:1;
}

.btn-check:checked + .concern-card{
    background:#2f80ed;
    border-color:#2f80ed;
    color:#fff;
}

.concern-card .emoji{
    font-size:1.2rem;
    margin-right:8px;
    line-height:1;
}

.btn-check:checked + .concern-card .emoji{
    transform:scale(1.1);
}


/******** PROGRESS BAR *******/

.wizard {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.wizard-item {
    flex: 1;
    position: relative;
    text-align: center;
}

.wizard-circle {
    width: 38px;
    height: 38px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid #d5d9e3;
    background: #fff;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: .2s ease;
}

.wizard-circle.active {
    background: #2f80ed;
    border-color: #2f80ed;
    color: #fff;
}

.wizard-circle i {
    line-height: 1;
}

.wizard-title {
    margin-top: 8px;
    font-size: .75rem;
    font-weight: 600;
    color: #6c757d;
}

.wizard-circle.active + .wizard-title {
    color: #2f80ed;
}

.wizard-line {
    position: absolute;
    top: 19px;
    left: 60%;
    width: 80%;
    height: 3px;
    background: #d5d9e3;
    z-index: 0;
}

.wizard-line.active {
    background: #2f80ed;
}

.wizard-nav .btn{
    min-width:150px;
}