@charset "utf-8";

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

body {
    line-height: normal;
}

img {
    vertical-align: middle;
}

/* General */
p {
    margin-bottom: 12px;
}

a.themed-link:link, a.themed-link:visited, a.themed-link:active {
    text-decoration: none;
    color: #256e9e;
}

a.themed-link:hover {
    color: blue;
}

ul {
    list-style-type: none;
    padding-left: 0;
}
ol {
    list-style-type: inherit;
}

.hidden-element {
    visibility: hidden;
}

/* Layout */
.layout-container {
    display: grid;
    height: auto;
    width: 1203px;
    grid-template-columns: 163px 1fr;
    grid-template-rows: 97px 1fr;
    
    /* To match old frame gap: */
    grid-column-gap: 2px;
}

/* Special layout for report viewer */
.report-viewer-layout-container {
    display: grid;
    height: 100vh;
    overflow-y: hidden;
    grid-template-columns: 163px 1fr;
    grid-template-rows: 97px 1fr;
    grid-column: 2;
}

/* Special layout for Administration Pages */
.management-layout-container {
    display: grid;
    height: auto;
    width: 98%;
    grid-template-columns: 163px 1fr;
    grid-template-rows: 97px 1fr;
    grid-column-gap: 2px;
}

/* Header */
header {
    background: #ffffff url(../images/Banner_contant-page_dark.jpg) no-repeat fixed;
    font-family: 'Open Sans', sans-serif;
    background-position-x: 163px;
    padding-left: 50px;
    grid-column: 2;
}

.management-header-style {
    background: #ffffff url(../images/Banner_contant-page_dark.jpg) no-repeat fixed;
    font-family: 'Open Sans', sans-serif;
    background-position-x: 98%;
    padding-left: 50px;
    grid-column: 2;
}

.title {
    font-size: 22px;
    font-weight: 600;
    color: #0066ae;
    line-height: 12px;
    padding: 30px 0px 0px 0px;
}

.sub_title {
    font-size: 16px;
    color: #060709;
    margin-top: 16px;
}

/* Navigation menu */
.nav-logo {
    position: fixed;
}

.menu {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    list-style: none;
    background-color: #7f8081;
    padding-top: 30px;
    height: 733px;
    width:163px;
    position: fixed;
    top: 97px;
    z-index:999;
}

.menu ul {
    list-style: none;
}

.menu a {
    display: block;
    color: #ffffff;
    padding: 7px 0px 8px 18px;
    text-decoration: none;
}

.category-item:hover,
.category-item:active,
.category-item.active {
    background: url(../images/nav_bg.jpg) repeat-x;
}

.category-marker {
    color: #7f8081;
    font-weight: bold;
}

/* Changes color if we hover either on the name span or on the marker itself, but not the whole link box*/
.category-marker:hover,
.category-item > span:hover + .category-marker {
    color: #ffffff;
}

.inactive-category-item {
    color: #5B5C5E;
    padding: 7px 0px 8px 18px;
}

.inactive-category-item:hover {
    background: url(../images/nav_bg.jpg) repeat-x;
}

.category-product-list {
    height: 0px;
    overflow: hidden;
    transition: all 0.3s linear;
}

.category-product-list.active {
    height: auto;
}

.product-item:link, 
.product-item:visited {
    background: #a2a3a4;
}

.product-item:hover,
.product-item:active,
.product-item.active {
    color: #0063b1;
}

.inactive-product-item {
    background: #a2a3a4;
    padding: 7px 0px 8px 18px;
    color: rgb(91, 92, 94);
}

.category-splitter {
    display: block;
    padding: 0 11px;
    width: 100%;
}

.staff-only-item {
    font-family: "Lugrasimo", cursive;
}

/* Main grid cell */

/* Home page */
.intro {
    font-family: 'Open Sans', sans-serif;
    line-height: 22px;
    background: #fff url(../images/background-content-page.jpg) no-repeat;
    height: 452px;
}

.col-right {
    width: 500px;
    font-size: 14px;
    margin-left: 71px;
    padding-top: 62px;
}

.main-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 42px;
}

footer {
    background-color: #d4d5d5;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    line-height: 14px;
    color: #545758;
    padding: 20px 60px 20px 71px;
}

/* Product pages */
.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 50px;
    grid-column: 2;
}

.resource-container {
    display: grid;
    grid-template-columns: 1fr;
    margin: 50px;
    grid-column: 2;
}

.resource-column {
    font-family: Arial, Helvetica, Sans-serif;
}

.resource-section {
    margin-bottom: 36px;
}

.resource-section-title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #0066ae;
}

/* These are different sizes for some reason... */
.resource-section-title .pdf-icon {
    vertical-align: baseline;
    height: 17px;
    margin: 0 8px 0 8px;
}

.resource-section-title .db-icon {
    vertical-align: baseline;
    height: 20px;
    margin: 0 8px 0 8px;
}

.resource-section ul {
    margin-left: 20px;
}

.resource-section > ul {
    margin-bottom: 18px;
}

.resource-subsection {
    margin: 20px 0 20px 20px;
}

.resource-subsection > ul {
    margin-bottom: 9px;
}

.resource-subsection-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    color: #0066ae;
}

.resource-entry-title:link, .resource-entry-title:visited {
    display: inline-block;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: small;
    text-decoration: none;
    color: black;
}

.resource-entry-title:hover, .resource-entry-title:active {
    color: blue;
}

.inactive-resource-entry-title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: small;
    color: #999999;
    pointer-events: none;
}

.resource-footnotes {
    grid-column: 1/-1;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: x-small;
}

.resource-footnote-marker {
    font-weight: normal;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: x-small;
}

.inactive-resource-footnote-marker {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: x-small;
    color: #999999;
}

/* Report Pages*/
.report-container {
    margin: 50px 0 50px 50px;
}

.report-column {
    font-family: Arial, Helvetica, Sans-serif;
}

.report-section {
    margin-bottom: 20px;
    padding-left: 25px;
}

.report-section-title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #0066ae;
}

.report-section-title .pdf-icon {
    vertical-align: baseline;
    height: 20px;
    margin: 0 8px 0 8px;
}

.report-instance-name:link, .report-instance-name:visited {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: small;
    color: black;
    text-decoration: none;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 6px;
}

.report-instance-name:hover, .report-instance-name:active {
    color: blue;
}

.report-version-name {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #000000;
    font-style: oblique;
    font-weight: bold;
}

/* Report viewer pages */
.report-viewer-pdf-container {
    grid-row: 1/-1;
    grid-column: 2;
}

.report-viewer-pdf-embed {
    height:100%;
    width: 100%;
}
.report-historic-name {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: small;
    color: black;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 1rem;
}

.special-report-instance {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-section-title {
    display: flex;
    justify-content: flex-end;
}

.form-title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #0066ae;
}

.form-title-space {
    margin-bottom: 0.6rem;
}

.form-row {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 1em;
}
.form-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1em;
}

/* DB resource table query page */
.table-query-confidential-header {
    font-family: arial,helv,helvetica;
    font-size: 13px;
    display: flex;
    width: 1038px;
    flex-direction: column;
    margin-bottom: 1em;
}

.table-query-confidential-header-icon {
    align-self: flex-end;
}

.table-query-title {
    font-family: Arial, Arial, Helvetica, sans-serif;
    font-size: 24px;
    border-top: solid 1px grey;
    border-bottom: solid 1px grey;
    text-align: center;
    padding: 0.5em 0 0.5em 0;
    margin-bottom: 2em
}

.table-query-title-concept {
    font-size:24px;
}
.table-query-title-units {
    font-size: 16px;
}

.table-query-subtitle {
    font-family: Arial, Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
    padding: 0.5em 0 0.5em 0
}

.table-query-table {
    font-family: monospace;
    text-align: right;
    margin: 0 3em 3em 0;
}

.table-query-table th, td {
    width: 9em;
    min-width: 9em;
    padding-left: 1em;
}

.table-query-table th {
    font-weight: normal;
}

.table-query-table--periods-down th[scope="col"] {
    padding-bottom: 2em;
    vertical-align: top;
}

.table-query-table--periods-across th[scope="row"] {
    white-space: nowrap;
}

.table-query-parameters {
    font-family: monospace;
    margin-bottom: 1em;
    width: 800px;
    display: grid;
    grid-template-columns: min-content auto;
    grid-column-gap: 1em;
}

.table-query-parameters-title {
    grid-column: 1/-1;
}

.table-query-parameters-gap {
    margin-bottom: 1em;
}

.table-query-confidential-footer {
    font-family: monospace;
    margin-bottom: 1em;
    padding-bottom: 1em;
    /*border-bottom: solid 1px grey;*/
}

.table-query-confidential-footer-copyright {
    font-family: Arial, Helvetica, sans-serif
}

.table-query-buttons-footer {
    display: flex;
    flex-direction: row;
    gap: 2em;
    justify-content: center;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: solid 1px grey;
}

.table-query-buttons-footer button {
    padding: 0 1em 0 1em;
}

/* User management section */
.user-mgmt-container {
    margin: 20px 0 50px 50px;    
}

.user-mgmt-add-btn {
    text-align: right;
    margin-bottom: 20px;
}

.user-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 50px;
    grid-column: 2;
}

.user-double-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.user-mgmt-noaction-btn{
    padding-top:25px;
    padding-right: 50px;
}

.user-tb-area {
    margin-bottom: 20px;
}

.logout {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    background-color: #7f8081;
    color: white;
    border: none;
    position: fixed;
    padding-top: 10px;
    padding-left: 18px;
}

.logout > svg {
    height: 14px;
    color: black;
    vertical-align: baseline;
}

.logout:hover {
    cursor: pointer;    
}

input[type="text"],
input[type="email"],
input[type="password"] {
    margin-bottom: 10px;    
}

/* Remove spinner controls in webkit browsers (Chrome, Safari, Edge) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove spinner controls in Firefox */
input[type="number"] {
    appearance: textfield;
}

/* Report management */
.report-mgmt-title-container {
    display: flex;
    justify-content: space-between;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 1em;
}

.report-mgmt-title {
    color: #0066ae;
    font-weight: bold;
    font-size: 24px;
}
.timeSeriesParent {
    background-color: #ebedee;
    padding: 14px 10px 14px 10px;
    font-size: 12px;
}

.timeSeriesChild {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.custom-tooltip .tooltip-inner {
    max-width: 600px;
    white-space: normal;
    background-color: #ebedee;
    border: ridge;
    color: #060709;
    font-family: Arial, sans-serif;
    text-align: justify;
}

.data-by-concept {
    display:grid; 
    grid-template-columns:1fr 1fr 1fr; 
    grid-template-rows:1fr 190px;
    column-gap:30px;
    margin-bottom:12px;
}

.concept-section-header {
    margin-bottom: 4px;
}

.concept-section-content {
    font-size: 11px;
    border: solid 1px #bec3c5;
}

.concept-section-content option {
    padding: 0 2px 0 2px;
}

.output-report-section {
    background-color: #025f90;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 14px 30px 14px 30px;
}

.custom-hover-image {
    position: relative;
    display: inline-block;
}

.custom-hover-image img {
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.custom-hover-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.custom-hover-image:hover .hover-img {
    opacity: 1;
}

.custom-hover-image:hover .initial-img {
    opacity: 0;
}

/** Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1051;
    left: 30%;
    top: 10%;
}

.modal.show {
    display: block;
    opacity: 1;
    transition: opacity 0.15s linear;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.fade.show {
    opacity: 1;
}

.main-dbReport {
    display:flex; 
    flex-direction:column; 
    margin: 40px;width:778px;
    font-family:Arial, Arial, Helvetica, sans-serif;
}

.main-dbHeader {
    background-color:#025f90;
    color:#ffffff; 
    display:grid; 
    grid-template-columns:1fr 1fr; 
    grid-template-rows:1fr;
}

.sectionAditionalName {
    font-size:14px; 
    color:#ffffff; 
    padding: 18px 10px 18px 10px; 
    justify-self:end;
}

.databaseGuideLink:link, .databaseGuideLink:active, .databaseGuideLink:visited {
    color: #ffffff;
    text-decoration: none;
}
.databaseGuideLink:hover {
    color: #ffffff;
    text-decoration: underline;
}

.sectionConcept {
   background-color:#bfc7cb;
   padding:10px 10px 10px 10px;
   font-size:12px;
}

.conceptName {
   font-size: 12px;
   width:181px; 
   border: solid 1px #bec3c5;
}

.sectionDate {
    display:flex; 
    justify-content:space-between;
}

.sectionDate select {
    align-items: center;
    gap: 8px;
    font-size: 12px;
    border: solid 1px #bec3c5;
}

.sectionOptions {
    background-color: #ebedee;
    padding: 14px 10px 14px 10px;
    font-size: 12px;
}

.sectionOptions .titleName {
   font-size:14px;
   color:#025f90;
}

.sectionOptions .div {
    display:flex; 
    justify-content:space-between; 
    align-items: center;
}

.sectionOptions .option {
    display:flex; 
    align-items:center;
    gap: 8px;
}

.db-query-dropdown {
    font-size: 12px;
    border: solid 1px #bec3c5;
}

.columnTAS {
    display: flex; 
    flex-direction: column;
}

.initialsvg {
    display: none;
    margin: auto;
}

.allRegions {
    text-align: center;
}

.allCountries {
    text-align: center; 
    margin-top: 10px;
}
.line-query-parameters {
    font-family: Lucida Sans Unicode;
    color: #333333;
    font-size: 10px;
    margin-bottom: 1em;
    display: grid;
    grid-template-columns: min-content auto;
    grid-column-gap: 1em;
    padding-left: 50px;
}

.note {
    padding-left: 1em;
}
.notes-section {
    padding-left: 2em;
    font-family: monospace;
    font-size: 13px;
    padding-bottom: 2em;
}

.notes-title {
    font-weight: bold;
    font-size: 16px;
}

.menu-li {
    height: 1em;
}

.resourceDB-section {
    padding: 18px 10px 18px 10px;
}

.btn.btn-primary-custom {
    margin-right: 10px;
}

.btn.btn-primary-custombtn {
    margin-right: 10px;
    width: 62px;
}

.btn.btn-primary-custombtn2 {
    margin-right: 10px;
    width: 130px;
}

.btn.btn-primary-customlog {
    width: fit-content;
    justify-self: end;
    margin-top: 1em
}

.btn.btn-outline-primary-custom {
    width: 62px;
}

.btn.btn-outline-primary-custombtn {
    margin-right: 10px;
    width: 62px;
}

/* Allows for hiding certain elements when printing, and modifying the main layout to a single column */
@media print {
    .hidden-when-print {
        display: none !important;
    }
    .layout-container.collapse-when-print {
        grid-template-columns: 1fr;
    }
}

.commit {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: bold;
    background-color: #7f8081;
    color: white;
    border: none;
    padding-top: 50px;
    padding-left: 60px;
}