﻿:root {
    --af-primary: #4f46e5;
    --af-primary-dark: #4338ca;
    --af-primary-light: #eef2ff;
    --af-border: #dbe0ea;
    --af-text: #1f2430;
    --af-muted: #6b7280;
    --af-danger: #dc2626;
    --af-success: #16a34a;
    --af-bg: #f4f6fb;
    --af-card-radius: 14px;
    --af-input-radius: 8px;
    --af-font-size: 13px;
}
input,textarea {
    text-transform: uppercase;
}
.email{
    text-transform:lowercase;
}
.af-wrapper {
    background: var(--af-bg);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: var(--af-font-size);
    color: var(--af-text);
    padding: 0 16px 60px;
    min-height: 100vh;
}

.af-top-accent {
    height: 6px;
    background: linear-gradient(90deg, var(--af-primary), #7c73f0, #c7a94f);
    margin: 0 -16px 24px;
}

.af-form-shell {
    max-width: 1100px;
    margin: 0 auto;
}

.af-letterhead {
    background: #fff;
    border-radius: var(--af-card-radius);
    box-shadow: 0 2px 10px rgba(20, 20, 43, 0.06);
    padding: 18px 22px;
    margin-bottom: 22px;
    position: relative;
    border-bottom: 3px solid var(--af-primary);
}

.af-form-no-badge {
    position: absolute;
    /*top: 12px;*/
    /*right: 16px;*/
    right:22px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--af-primary-dark);
    background: var(--af-primary-light);
    border: 1px solid #d9d6fb;
    padding: 4px 10px;
    border-radius: 10px;
    letter-spacing: .3px;
}

.af-letterhead-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    flex-wrap: wrap;
}

.af-letterhead-logo {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--af-primary-light);
    border: 1px solid #e3e0fb;
}

    .af-letterhead-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .af-letterhead-logo.af-logo-fallback::before {
        content: 'SY';
        font-size: 20px;
        font-weight: 800;
        color: var(--af-primary-dark);
        letter-spacing: .5px;
    }

.af-letterhead-text {
    min-width: 240px;
}

.af-school-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--af-primary-dark);
    margin: 0px;
    text-transform: uppercase;
}

.af-society-name {
    font-size: 11.5px;
    font-weight: 600;
    color: #4b5566;
    letter-spacing: .4px;
    margin: 0px;
    text-transform: uppercase;
}

.af-website {
    margin: 0px;
}

    .af-website a {
        font-size: 11.5px;
        font-weight: 600;
        color: var(--af-primary);
        text-decoration: none;
    }

        .af-website a:hover {
            text-decoration: underline;
        }

.af-letterhead-divider {
    height: 2px;
    width: 70px;
    margin: 6px auto;
    background: linear-gradient(90deg, var(--af-primary), #c7a94f);
    border-radius: 2px;
}

.af-address,
.af-mobile {
    font-size: 10.5px;
    color: var(--af-muted);
    margin: 0;
    line-height: 1.5;
}

.af-mobile {
    font-weight: 600;
    color: #384054;
}

@media (max-width: 575px) {
    .af-form-no-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }

    .af-letterhead-inner {
        text-align: center;
    }
}

.af-header {
    text-align: center;
    margin-bottom: 10px;
}

    .af-header h1 {
        font-size: 22px;
        font-weight: 700;
        color: var(--af-text);
        margin-bottom: 4px;
    }

    .af-header p {
        font-size: 13px;
        color: var(--af-muted);
        margin: 0;
    }

.af-card {
    background: #fff;
    border-radius: var(--af-card-radius);
    box-shadow: 0 2px 10px rgba(30, 30, 43, 0.06);
    margin: 10px 0px 20px;
    padding: 10px 0px;
    overflow: hidden;
    max-width: 100%;
    transition: box-shadow .2s ease;
}

    .af-card:hover {
        box-shadow: 0 4px 16px rgba(20, 20, 43, 0.09);
    }

.af-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--af-border);
    background: linear-gradient(90deg, var(--af-primary-light), #ffffff);
}
.af-card-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    float: left;
    width: 80%;
}

.af-card-header-right {
    float: right;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
    .af-card-header-right button {
        border: 1px solid #007bff;
        color: #007bff;
    }

    .af-card-header-right button:hover {
        background-color: #51a4fe;
        color: #000;
    }
    .af-card-header .af-icon {
        width: 26px;
        height: 26px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--af-primary);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .af-card-header h2 {
        font-size: 14.5px;
        font-weight: 700;
        margin: 0;
        color: var(--af-text);
        letter-spacing: .2px;
    }

    .af-card-header span.af-sub {
        display: block;
        font-size: 11px;
        font-weight: 400;
        color: var(--af-muted);
        margin-top: 1px;
    }

.af-card-body {
    padding: 18px 20px 8px;
}

.af-name-note {
    color: var(--af-danger);
    font-size: 12.5px;
    font-weight: 700;
    background: #fff2f2;
    border: 1px solid #ffd6d6;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 14px;
}

    .af-name-note .af-name-note-gu {
        font-weight: 600;
        color: #b91c1c;
    }

.af-field {
    margin-bottom: 14px;
}

    .af-field label {
        font-size: 12px;
        font-weight: 600;
        color: #384054;
        margin-bottom: 4px;
        display: inline-block;
    }

        .af-field label .req {
            color: var(--af-danger);
            margin-left: 2px;
        }

.af-form-control,
.af-form-select,
.af-form-control select,
textarea.af-form-control {
    font-size: 12.5px;
    padding: 7px 10px;
    border-radius: var(--af-input-radius);
    border: 1px solid var(--af-border);
    width: 100%;
    background-color: #fbfcfe;
    transition: border-color .15s ease, box-shadow .15s ease;
    color: var(--af-text);
}

    .af-form-control:focus,
    .af-form-select:focus {
        outline: none;
        border-color: var(--af-primary);
        box-shadow: 0 0 0 3px rgba(79, 70, 229, .12);
        background-color: #fff;
    }

textarea.af-form-control {
    min-height: 54px;
    resize: vertical;
}

.af-form-control.is-invalid,
.af-form-select.is-invalid {
    border-color: var(--af-danger) !important;
    background-color: #fff6f6;
}

.af-form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 30px;
}

.af-error-text {
    color: var(--af-danger);
    font-size: 11px;
    margin-top: 3px;
    display: block;
}

.af-hint-text {
    color: var(--af-muted);
    font-size: 10.5px;
    margin-top: 3px;
    display: block;
}

.af-success-text {
    color: var(--af-success);
    font-size: 11.5px;
    margin-top: 3px;
    font-weight: 600;
    display: block;
}

.af-toggle-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .af-toggle-group input[type="radio"] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .af-toggle-group label {
        font-size: 12px;
        font-weight: 600;
        padding: 7px 16px;
        border-radius: 30px;
        border: 1.5px solid var(--af-border);
        color: #4b5566;
        background: #fff;
        cursor: pointer;
        margin: 0;
        transition: all .15s ease;
        user-select: none;
    }

        .af-toggle-group label:hover {
            border-color: var(--af-primary);
        }

    .af-toggle-group input[type="radio"]:checked + label {
        background: var(--af-primary);
        border-color: var(--af-primary);
        color: #fff;
        box-shadow: 0 2px 8px rgba(79, 70, 229, .3);
    }

    .af-toggle-group.is-invalid label {
        border-color: var(--af-danger);
    }

.af-medium-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.af-radio-visible {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    color: #384054;
    cursor: pointer;
    padding: 9px 20px;
    border: 1.5px solid var(--af-border);
    border-radius: 10px;
    background: #fff;
    transition: all .15s ease;
    margin: 0;
}

    .af-radio-visible input[type="radio"] {
        width: 17px;
        height: 17px;
        accent-color: var(--af-primary);
        cursor: pointer;
        margin: 0;
        flex-shrink: 0;
    }

    .af-radio-visible:hover {
        border-color: var(--af-primary);
    }

    .af-radio-visible.af-radio-checked {
        border-color: var(--af-primary);
        background: var(--af-primary-light);
        color: var(--af-primary-dark);
        box-shadow: 0 2px 8px rgba(79, 70, 229, .15);
    }

.af-sibling-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

    .af-sibling-row .af-field {
        flex: 1 1 200px;
        margin-bottom: 0;
    }

.af-remove-sibling {
    border: 1px solid var(--af-border);
    background: #fff;
    color: var(--af-danger);
    border-radius: 8px;
    font-size: 11px;
    padding: 7px 10px;
    cursor: pointer;
    height: 34px;
}

.af-add-sibling-btn {
    border: 1.5px dashed var(--af-primary);
    background: var(--af-primary-light);
    color: var(--af-primary-dark);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    cursor: pointer;
}

.af-standard-badge {
    display: inline-block;
    background: var(--af-primary-light);
    color: var(--af-primary-dark);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-top: 4px;
}

.af-footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.af-btn {
    font-size: 13px;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: transform .1s ease, box-shadow .15s ease;
}

.af-btn-primary {
    background: linear-gradient(135deg, var(--af-primary), var(--af-primary-dark));
    color: #fff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, .35);
}

    .af-btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(79, 70, 229, .45);
    }

    .af-btn-primary:active {
        transform: translateY(0);
    }

.af-btn-secondary {
    background: #fff;
    color: #4b5566;
    border: 1.5px solid var(--af-border);
}

    .af-btn-secondary:hover {
        background: #f3f4f8;
    }

@media (max-width: 767px) {
    .af-card-body {
        padding: 14px 14px 4px;
    }

    .af-medium-row {
        flex-direction: column;
    }
}
/* =========================================================
   ACKNOWLEDGEMENT PAGE
   ========================================================= */

.ack-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #f3f5f7;
    padding: 25px;
}


/* =========================================================
   A4 PAGE
   ========================================================= */

.ack-page {

    width: 794px;
    min-height: 1123px;

    background: #ffffff;

    margin: 0 auto;

    padding: 25px 28px 18px 28px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #17365d;

    box-sizing: border-box;

    border: 1px solid #b8c5d0;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);

}


/* =========================================================
   SCHOOL HEADER
   ========================================================= */

.ack-header {

    width: 100%;

    min-height: 105px;

    display: flex;

    border: 1px solid #7f94a8;

    box-sizing: border-box;

}


/* =========================================================
   LOGO
   ========================================================= */

.ack-logo-box {

    width: 125px;

    min-width: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-right: 1px solid #7f94a8;

    padding: 8px;

    box-sizing: border-box;

}


.ack-logo {

    width: 88px;

    height: 88px;

    object-fit: contain;

    display: block;

}


/* =========================================================
   SCHOOL INFORMATION
   ========================================================= */

.ack-school-info {

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 8px 15px;

}


.ack-society-name {

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.3px;

    color: #283c50;

    margin-bottom: 2px;

}


.ack-school-name {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 35px;

    line-height: 38px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #000000;

}


.ack-school-address {

    font-size: 9px;

    font-weight: 600;

    line-height: 13px;

    color: #283c50;

    margin-top: 3px;

}


/* =========================================================
   SUBMISSION MESSAGE
   ========================================================= */

.ack-submission {

    text-align: center;

    padding:
        12px
        0
        8px
        0;

}


.ack-submission-title {

    font-size: 13px;

    font-weight: 600;

    color: #4b5563;

}


/* =========================================================
   REFERENCE SECTION
   ========================================================= */

.ack-reference-section {

    text-align: center;

    padding:
        3px
        0
        15px
        0;

    border-bottom:
        1px solid #d2d9df;

}


.ack-reference-box {

    margin:
        6px
        auto;

}


.ack-reference-label {

    font-size: 14px;

    font-weight: 600;

    color: #34495e;

}


.ack-reference-value {

    font-size: 24px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #4338ca;

    line-height: 30px;

}


.ack-save-message {

    margin-top: 8px;

    font-size: 10px;

    color: #6b7280;

    font-style: italic;

}


/* =========================================================
   INSTRUCTIONS
   ========================================================= */

.ack-instruction-section {

    margin-top: 18px;

    padding:
        0
        4px;

}


.ack-section-title {

    font-size: 15px;

    font-weight: 700;

    color: #17365d;

    border-left:
        4px solid #0756a8;

    padding-left: 8px;

    margin-bottom: 10px;

}


.ack-instruction-heading {

    font-size: 12px;

    line-height: 18px;

    font-weight: 600;

    color: #222222;

    margin-bottom: 7px;

}


.ack-document-list {

    margin:
        5px
        0
        0
        22px;

    padding: 0;

    font-size: 11px;

    line-height: 20px;

    color: #333333;

}


.ack-document-list li {

    padding-left: 3px;

    margin-bottom: 1px;

}


/* =========================================================
   IMPORTANT NOTE
   ========================================================= */

.ack-important-note {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    padding:
        9px
        12px;

    background: #f4f7fb;

    border:
        1px solid #cbd7e3;

    border-left:
        4px solid #0756a8;

    font-size: 10px;

    line-height: 15px;

    color: #34495e;

}


.ack-note-icon {

    width: 20px;

    height: 20px;

    min-width: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #0756a8;

    color: #ffffff;

    font-weight: 700;

    font-size: 12px;

}


/* =========================================================
   FOOTER
   ========================================================= */

.ack-footer {

    margin-top: 35px;

    padding-top: 10px;

    border-top:
        1px solid #b8c5d0;

    display: flex;

    justify-content:
        space-between;

    align-items: flex-end;

}


.ack-generated {

    font-size: 9px;

    line-height: 14px;

    color: #555555;

    max-width: 75%;

}


.ack-footer-school {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;

    color: #17365d;

}


/* =========================================================
   ACKNOWLEDGEMENT WRAPPER
   ========================================================= */

.ack-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 25px;
    background: #f1f3f5;
    box-sizing: border-box;
}


/* =========================================================
   A4 ACKNOWLEDGEMENT PAGE
   ========================================================= */

.ack-page {
    width: 794px;
    min-height: 1123px;
    background: #ffffff;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   COMPLETE OUTER BORDER
   ========================================================= */

.ack-border {
    width: 100%;
    min-height: 1123px;
    background: #ffffff;
    border: 1px solid #333333;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
}


/* =========================================================
   SCHOOL HEADER
   ========================================================= */

.ack-header {
    width: 100%;
    height: 105px;
    display: flex;
    border-bottom: 1px solid #333333;
    box-sizing: border-box;
}


/* =========================================================
   LOGO
   ========================================================= */

.ack-logo-section {
    width: 120px;
    min-width: 120px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #333333;
    box-sizing: border-box;
}


.ack-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}


/* =========================================================
   SCHOOL INFORMATION
   ========================================================= */

.ack-school-section {
    flex: 1;
    height: 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 10px;
    box-sizing: border-box;
    color: #000000;
}


.ack-society-name {
    font-family: Cambria, Georgia, serif;
    font-size: 11px;
    line-height: 15px;
    font-weight: 500;
    color: #000000;
}


.ack-school-name {
    font-family: "Times New Roman", Times, serif;
    font-size: 40px;
    line-height: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000000;
}


.ack-school-address {
    font-family: Cambria, Georgia, serif;
    font-size: 10px;
    line-height: 14px;
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
}


/* =========================================================
   SUBMISSION SECTION
   ========================================================= */

.ack-submission-section {
    width: 100%;
    text-align: center;
    padding: 8px 20px 12px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #d6d6d6;
}


.ack-submitted-message {
    font-family: Cambria, Georgia, serif;
    font-size: 11px;
    color: #333333;
    margin-bottom: 6px;
}


/* =========================================================
   TRANSACTION / APPLICATION
   ========================================================= */

.ack-reference-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}


.ack-reference-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    line-height: 28px;
}


.ack-reference-label {
    font-family: Cambria, Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #4f46e5;
}


.ack-reference-value {
    font-family: Cambria, Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #4f46e5;
}


.ack-save-message {
    font-family: Cambria, Georgia, serif;
    font-size: 11px;
    color: #666666;
    margin-top: 4px;
}


/* =========================================================
   INSTRUCTIONS MAIN BOX
   ========================================================= */

.ack-instructions {
    width: calc(100% - 30px);
    margin: 15px auto 0 auto;
    border: 1px solid #bfc7d0;
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    box-sizing: border-box;
}


/* =========================================================
   INSTRUCTION HEADER
   ========================================================= */

.ack-instructions-heading {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: #f3f7fb;
    border-bottom: 1px solid #d4dce4;
    box-sizing: border-box;
}


.ack-instructions-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0756a8;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}


.ack-instructions-title {
    font-family: Cambria, Georgia, serif;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    color: #17365d;
}


.ack-instructions-subtitle {
    font-family: Cambria, Georgia, serif;
    font-size: 9px;
    line-height: 13px;
    color: #6b7280;
}


/* =========================================================
   INSTRUCTION CONTENT
   ========================================================= */

.ack-instruction-content {
    padding: 10px 12px;
    box-sizing: border-box;
}


/* =========================================================
   IMPORTANT MESSAGE
   ========================================================= */

.ack-important-message {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 9px;
    background: #fff9e8;
    border: 1px solid #efd58c;
    border-left: 4px solid #d99a00;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: Cambria, Georgia, serif;
    font-size: 10px;
    line-height: 15px;
    color: #444444;
}


.ack-important-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d99a00;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}


.ack-important-message strong {
    color: #8a5a00;
}


/* =========================================================
   DOCUMENT LIST
   ========================================================= */

.ack-document-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}


/* =========================================================
   DOCUMENT ITEM
   ========================================================= */

.ack-document-item {
    width: 100%;
    min-height: 32px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 7px;
    border: 1px solid #e1e5e9;
    border-radius: 4px;
    background: #ffffff;
    box-sizing: border-box;
}


/* =========================================================
   DOCUMENT NUMBER
   ========================================================= */

.ack-document-number {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0756a8;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   DOCUMENT TEXT
   ========================================================= */

.ack-document-text {
    flex: 1;
    font-family: Cambria, Georgia, serif;
    font-size: 10px;
    line-height: 15px;
    color: #222222;
}


    .ack-document-text span {
        color: #666666;
        font-size: 9px;
    }


/* =========================================================
   GUJARATI
   ========================================================= */

.ack-gujarati {
    font-family: "Noto Sans Gujarati", "Shruti", Arial, sans-serif;
    font-size: 11px;
    line-height: 18px;
}


/* =========================================================
   BOTTOM NOTE
   ========================================================= */

.ack-instruction-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 3px 12px 10px 12px;
    padding-top: 7px;
    border-top: 1px dashed #c9d1d9;
    font-family: Cambria, Georgia, serif;
    font-size: 9px;
    line-height: 13px;
    color: #666666;
}


.ack-check-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #198754;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   FOOTER
   ========================================================= */

.ack-footer {
    width: calc(100% - 30px);
    margin: 14px auto 0 auto;
    padding: 8px 0 10px 0;
    border-top: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}


.ack-generated-note {
    font-family: Cambria, Georgia, serif;
    font-size: 9px;
    line-height: 13px;
    color: #333333;
}


.ack-footer-name {
    font-family: "Times New Roman", Times, serif;
    font-size: 11px;
    font-weight: 700;
    color: #17365d;
    white-space: nowrap;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 800px) {

    .ack-wrapper {
        padding: 10px;
    }


    .ack-page {
        width: 100%;
        min-height: auto;
    }


    .ack-border {
        min-height: auto;
    }


    .ack-school-name {
        font-size: 28px;
    }


    .ack-reference-label,
    .ack-reference-value {
        font-size: 16px;
    }
}


/* =========================================================
   PDF / PRINT
   ========================================================= */

@media print {

    @page {
        size: A4 portrait;
        margin: 0;
    }


    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
    }


    .ack-wrapper {
        width: 210mm !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #ffffff !important;
    }


    .ack-page {
        width: 210mm !important;
        height: 297mm !important;
        min-height: 297mm !important;
        margin: 0 !important;
        padding: 0 !important;
    }


    .ack-border {
        width: 210mm !important;
        height: 297mm !important;
        min-height: 297mm !important;
        border: 0.3mm solid #333333 !important;
        box-sizing: border-box !important;
    }
}