@import url('https://fonts.googleapis.com/css2?family=Lusitana:wght@400;700&display=swap');

:root {
    --bs-blue: rgb(38 96 147);
    --primary-blue: rgb(38 96 147);
    --primary-blue-light: rgb(92 140 183);
    --white: #ffffff;
    --lusitana: "Lusitana", serif;
    --light-gray: rgb(249 250 251);
    --customcolor2: #5c8cb7;
}

.form-check-input:checked {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue-light) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn-primary {
    background-color: var(--primary-blue) !important;
    padding: 10px 49px !important;
}

a {
    color: var(--primary-blue-light) !important;
    text-decoration: none !important;
}

html,
body {
    width: 100%;
    height: 100%;

}

@page {
    size: A4;
    margin: 0!important;
    padding: 0!important;
}

@media print {
    body {
        visibility: hidden;
    }

    .printable {
        visibility: visible;
        position: absolute;
        left: 0;
        top: 0;
        height: 257mm;
        width: 200mm;
        margin: 0!important;
        padding: 0!important;
        font-size: 12px!important;
    }

    html,
    body {
        width: 210mm;
        height: 297mm;
    }

    .printable .results-header, .printable .results-header-darker,  .printable table,  .printable .elaborations, .printable .totlas-with-image  {
        width: 100vw;
    }
    .printable hr {
        width: 100vw;
    }
    .printable img {
        width: 60%;
    }
    .printable .elaborations {
        margin-left: 5px;
    }
    .printable .totlas-with-image img {
        width: 80%;
    }
    .printable .totlas-with-image hr.dotted {
        border-top: 1px dashed #000;
        margin: 5px 0px;
        width: 100%;
    }
    .printable .totlas-with-image .green-totals-wrapper {
        width: 60vw;
        margin-right: 5px;
    }
    .printable .totlas-with-image .blue-totals-wrapper {
        width: 70vw;
        margin-right: 5px;
    }
    .container.printable {
        margin: 0!important;
        padding: 0!important;
    }
    #mainEngineCentrifuge {
        page-break-before: always;
    }

    /* Increase bottom margin to push NB off the printout */
    .overview-section {
        margin-bottom: 120px; /* Adjust this value if needed */
    }

    /* Hide the NB section in print */
    .no-print {
        display: none !important;
    }
}

.bg-header {
    background-color: var(--primary-blue);
    padding: 30px;
    border-radius: 0px 0px 20px 20px;
    color: var(--white);
    font-size: 2rem;
}

.bg-grey {
    font-size: 30px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.container-fluid {
    width: 99% !important;
}

.login-form-container h1 {
    font-size: 24px;
}

.login-form-container,
.font-unset {
    font-family: unset !important;
    font-size: unset;
}

.font-set {
    font-family: var(--lusitana);
}

.login-form-container label {
    font-size: 16px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.step-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-content {
    display: none;
    position: absolute;
    background-color: white;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 20vw;
}

.tooltip-container:hover .tooltip-content {
    display: block;
}

.logo-img {
    width: 100%;
}

#calculatorForm label {
    font-size: 16px;
}

#calculatorForm .input-group {
    margin: 20px 0px;
}

.info-icon {
    border: 1px solid #797979;
    padding: 1px 6px;
    border-radius: 50%;
    color: #797979;
}

.requested-call td:last-child {
    background-color: green !important;
    color: #fff;
}

.results-header {
    background-color: var(--customcolor2);
    color: #fff;
}

.results-header hr {
    border-top: 2mm solid #266093;
    margin-top: 0px;
}

.results-header .results-heading {
    text-transform: uppercase;
    color: #fff;
}

.results-details-wrapper {
    gap: 20px;
}

.results-header-darker {
    background-color: var(--primary-blue);
    color: #fff;
}

.green-totals-wrapper {
    background-color: #a3c961;
    padding: 8px;
    width: 25vw;
    border: 2px solid #000;
    margin-bottom: 2px;
}

.blue-totals-wrapper {
    background-color: #5c8cb7;
    padding: 8px;
    width: 30vw;
    border: 2px solid #000;
    margin-top: 2px;
}

.blend-img img {
    width: 50%;
}

hr.dotted {
    border-top: 3px dashed #000;
    opacity: 1;
}
.overview-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 40px 0px 10px 0px;
}

.overview-section p {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.overview-section p.text-center {
    width: 100%;
    justify-content: center;
}

#myInput {
    padding: 0!important;
    background-color: #fff!important;
    border: 0!important;
    display: inline;
}