#pdf-header {
    opacity: 0;
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    pointer-events: none;
}

#pdf-header-logo {
    width: 100px;
    margin: 5px;
}

#energiberegner {
    background-color: #ececec;
    padding: 20px;
}

#energiberegner label,
#energiberegner input {
    display: inline-block;
}

#energiberegner .eb-fields {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

#energiberegner select {
    width: 100%;
    margin-bottom: 15px;
}

#energiberegner input {
    min-width: 85px;
}

.eb-label {
    min-width: 215px;
    vertical-align: middle;
}

#selected-new-window, #selected-existing-window {
    display: none;
}

#window-selection {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    column-gap: 20px;
    margin-bottom: 30px;
}

.window-section {
    display: flex;
    flex-direction: column;
    flex-basis: calc(50% - 30px);
    box-sizing: border-box;
    flex-grow: 1;
    flex-shrink: 0;
}

.window-section-expandable {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    position: relative;
}

#energiberegner .expanded {
    height: 100%;
    overflow: visible;
}

.flex-bottom {
    margin-top: auto;
}

.eb-form-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    column-gap: 30px;
}

.eb-form-section .ebtooltip {
    margin-bottom: 6px;
}

.eb-form-column {
    flex-basis: calc(50% - 15px);
    position: relative;
    flex-grow: 1;
    flex-shrink: 0;
}

.eb-form-column label {
    min-width: 190px;
}

#eb-results {
    background-color: #fff2ba;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

#eb-results-table {
    border-collapse: collapse;
    width: 100%;
    flex: 1;
}

#eb-results-table th,
#eb-results-table td {
    padding: 8px;
    text-align: left;
    padding-left: 0;
}

#eb-results-table .table-heading {
    font-size: 25px;
}

#existing-window-image,
#new-window-image {
    max-height: 400px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.ebtooltip {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-left: 4px;
    color: #3e88a2;
}

.ebtooltip .tooltiptext {
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    width: 362px;
    background-color: #3e88a2;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 16px;
    position: absolute;
    z-index: 1;
    line-height: 27px;
    max-width: 100%;
    left: 0;
    margin-top: 29px;
}

.ebtooltip .tooltiptext p {
    margin-bottom: 5px;
    font-family: 'Roboto';
    font-size: 17px;
}

.ebtooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

#eb-print {
    background-color: #3e88a2;
}

#eb-print .fusion-button-text, #eb-print .fas {
    color: #fff;
}

#pdf-notes textarea {
    width: 100%;
    height: 150px;
}

#print-pdf-notes {
    display: none;
}

.title-with-tooltip {
    display: inline-block;
}

#print-date {
    position: absolute;
    bottom: -27px;
    left: 13px;
    padding-top: 20px;
    font-size: 13px;
    display: none;
}

#eb-info-box {
    background-color: var(--awb-color5);
    margin-top: 33px;
    padding: 20px;
    min-width: 230px;
    min-height: 200px;
}

#eb-info-box a {
    color: initial;
    text-decoration: underline;
    display: block;
}

#eb-info-box > * {
    margin-top: 0;
}

#eb-info-box p {
	margin-bottom: 5px;
}