@media print {

    /* .subpage-actions {
        display: none;
    } */
    .save_exit,
    #addSignature {
        display: none;
    }

    .subpage-wrapper {
        box-shadow: none;
        margin-top: 0 !important;
        height: 100%;
        /* border: 5px solid black; */
    }

    .navbar-wrapper {
        display: none;
    }

    .philhealth-vertical-line {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .medication-details {
        page-break-inside: avoid;
    }

    @page {
        margin-top: 20mm;
        margin-left: 15mm;
        margin-right: 15mm;
        margin-bottom: 15mm;
    }

    body {
        margin: 0;
    }

    header,
    footer {
        display: none;
    }

    /* @page 
    {
        size: auto;
        margin: 0mm;
    } */


    /* .base-layout {
        background-color: white;
        height: auto; */
    /* border: 5px solid black; */
    /* } */

    #goBack {
        display: none !important;
    }

    .headerInfo {
        display: none;
    }

    #wrapper {
        margin-top: 0 !important;
    }

    #header {
        display: none !important;
    }

}

.physician-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    margin-right: 30px;
}

.physician-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .license-number {
    margin-top: 5px;
} */

.navbar-wrapper,
.subpage-wrapper {
    max-width: 800px;
}

.philhealth-header-details {
    width: 400px;
    margin-left: -35px;
}

.philhealth-vertical-line {
    width: 50px;
    display: flex;
    justify-content: center;
    background: linear-gradient(#000, #000) no-repeat center/1.5px 100%;
}

.philhealth-header-logo {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
}

.logo-header {
    color: black !important;
}

.mr-30 {
    margin-right: 30px;
}

.ml-30 {
    margin-left: 30px;
}


.mr-25 {
    margin-right: 25px;
}

.ml-25 {
    margin-left: 25px;
}


/* .hr-line {
    color:grey;
    width: 100%;
} */

.print-logo {
    width: 20px;
    margin-right: 2px;
    margin-top: -5px
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}


#validation-report-view {
    max-width: 1000px;
    margin: auto;
}

#validation-report-view section {
    padding: 8px 0;
}

#validation-report-view h1 {
    font-size: 18px;
    font-weight: 700;
}

#validation-report-view h2 {
    font-size: 20px;
    font-weight: 700;
}

#validation-report-view h4 {
    font-size: 16px;
    font-weight: 700;
}

#validation-report-view p {
    font-size: 14px;
    margin: 10px 0;
}

#validation-report-view .field-data {
    margin: 5px 0;
}

#validation-report-view hr.single-separator {
    border-top: 2px dashed #151414;
    margin: 2px 0;
}


.line-height-1 {
    line-height: 1px;
}

@media screen and (max-width: 850px) {
    .navbar-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .subpage-wrapper {
        /* max-width: 700px; */
        margin-left: 10px;
        margin-right: 10px;
    }
}


@media screen and (max-width: 500px) {
    #philhealthImage {
        width: 100px;
    }
}


/* @media screen and (max-width: 700px) {
    .subpage-wrapper {
        max-width: 650px;
    }
} */

/* Loader container */
.loader-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}