/* Make all plugin tables uniform and force override */
.RD-table {
    width: 100% !important;
    border-collapse: collapse !important;
    table-layout: fixed !important; /* equal columns */
    margin-bottom: 20px !important;
    color: #6773b6;
}

/* Force 2px borders on every table cell */
.RD-table td {
    border: 2px solid #6773b6 !important;
    width: 50% !important;
    vertical-align: top !important;
    padding: 10px !important;
}

/* Force input sizes */
.RD-table input[type="text"],
.RD-table input[type="email"],
.RD-table input[type="date"],
.RD-table textarea {
    width: 95% !important;
    padding: 6px !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
}

/* Force textarea height */
.RD-table textarea {
    min-height: 80px !important;
}

/* Remove borders from nested Declaration table */
.RD-table .RD-table td {
    border: none !important;
}
.RD-wrapper {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;   /* Rounded corners */
}

.RD-info {
    font-size: 28px;        /* desktop size */
    color: #6773b6;
    font-weight: bold;
    margin: 20px 0;
     text-align: center;
}

@media (max-width: 900px) {
    .RD-info {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .RD-info {
        font-size: 20px;
    }
}

.RD-info1 {
    margin-bottom:10px;
    color:#6773b6;
}
.RD-info2{
    font-size:18px;
    color:#6773b6;
    font-weight: bold;
}

/* Make submitted values (right column) black */
.RD-table td:nth-child(2) {
    color: #000 !important;
}

.rd-success {
    background: #d4f8d4;
    border: 1px solid #7ac97a;
    padding: 12px 16px;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
    margin-bottom: 15px;
    color: #205713;
}

