  @import url("style.css");

/* ==========================
   MANDATORY DISCLOSURE
========================== */

.mandatory-disclosure-section{
    padding:50px 0;
}

.section-header{
    margin-bottom:35px;
}

.section-header h2{
    font-size:2.2rem;
    margin:15px 0 10px;
    font-weight:700;
}

.section-header p{
    color:#666;
    max-width:700px;
    margin:auto;
}

/* CARD */

.disclosure-card{
    background:#fff;

    border-radius:var(--custom-radius);

    overflow:hidden;

    border:1px solid rgba(118,16,205,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

/* TABLE TITLE */

.table-title{
    background:var(--gradient-main);

    color:#fff;

    padding:14px 20px;

    font-size:1rem;

    font-weight:700;

    letter-spacing:.3px;
}

/* TABLE */

.disclosure-table{
    width:100%;
    border-collapse:collapse;
}

.disclosure-table tr:nth-child(odd){
    background:#faf8ff;
}

.disclosure-table tr:nth-child(even){
    background:#fff;
}

.disclosure-table td{
    padding:12px 18px;

    font-size:.9rem;

    border-bottom:1px solid #eee;

    vertical-align:top;
}

.disclosure-table td:first-child{
    width:40%;

    font-weight:600;

    color:var(--black);

    background:rgba(118,16,205,.03);
}

.disclosure-table td:last-child{
    color:#555;
    line-height:1.7;
}

.disclosure-table tr:hover{
    background:#f3ebff;
}

/* Equal Height Cards */

.row.g-4 > div{
    display:flex;
}

.disclosure-card{
    width:100%;
    display:flex;
    flex-direction:column;
}

.disclosure-table{
    height:100%;
}

.disclosure-table tr{
    height:60px;
}

/* MOBILE */

@media(max-width:767px){

    .mandatory-disclosure-section{
        padding:40px 0;
    }

    .section-header h2{
        font-size:1.7rem;
    }

    .disclosure-table td{
        padding:10px 12px;
        font-size:.85rem;
    }

    .table-title{
        padding:12px 15px;
    }
}


  