﻿.el-poppins {
    font-family: Poppins, Roboto, "Helvetica Neue", sans-serif;
}

.el-heading-banner {
    position: relative;
    text-align: center;
    background-image: linear-gradient(to left, #BABABA, #77A03C);
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    row-gap: 1rem;
    color: white;
    overflow: hidden;
}

.el-heading-banner .white-circle {
    position: absolute;
    left: -50px;
    bottom: -100px;
    height: 300px;
    width: 300px;
    background-color: white;
    opacity: 5%;
    border-radius: 50%;
}

.el-heading-banner .dark-circle {
    position: absolute;
    right: -45px;
    top: -120px;
    height: 275px;
    width: 275px;
    background-color: black;
    opacity: 5%;
    border-radius: 50%;
}

hr.el-title-divider {
    margin: 0;
    border: 0;
    height: 11px;
    background: var(--color-text-dark);
    z-index: 1;
    position: relative;
}

.el-heading-banner h1 {
    font-size: 37px;
}

.el-heading-banner h3 {
    font-size: 24px;
    font-weight: normal;
}

.central-grid-container {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    align-content: start;
    align-items: start;
    gap: 0;
}

.el-mode-icon {
    max-height: 90px;
    margin: 5rem 2rem 0rem 2rem;
}

.el-tools-grid {
    width: 1200px;
    padding-top: 20px;
    padding-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem 6rem;
    justify-content: space-around;
}

@media screen and (max-width: 1250px) {
    .el-tools-grid {
        width: 600px;
        grid-template-columns: 1fr;
    }
}

.el-card {
    box-sizing: border-box;
    width: 100%;
    border-radius: 10px;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.10);
    transition-duration: 300ms;
    background-clip: padding-box;
    overflow: hidden;
    background: white;
}

.el-card.padded {
    padding: 2rem;
}

.el-card.v-margin {
    margin-top: 3rem;
}

.el-card-body.padded {
    padding: 2rem;
}

.el-card:hover {
    box-shadow: 0 0 6px rgba(139, 195, 74, 0.5), 0 0 14px rgba(139, 195, 74, 0.8);
}

.el-card:hover .el-plan-view-3d-view-icon,
.el-card:hover .el-plan-view-magnify-icon,
.el-card:hover .el-plan-view-container-prev-btn[show='true'],
.el-card:hover .el-plan-view-container-next-btn[show='true'] {
    visibility: visible;
}

.el-card.force-shadow {
    box-shadow: 0 0 6px rgba(139, 195, 74, 0.5), 0 0 14px rgba(139, 195, 74, 0.8);
}

.el-card-header {
    background-clip: padding-box;
    background-color: rgba(133,186,56, 0.20);
    color: black;
    padding: 2rem;
}

.el-card-header.with-actions {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-content: stretch;
    justify-items: center;
    align-items: center;
}

.el-card-body {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1rem;
    justify-items: center;
    justify-content: center;
    overflow: hidden;
}

.icons-row {
    margin: auto;
    width: max-content;
    display: block;
    
}

.el-option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.2rem;
}

.el-option-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
}




.el-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.el-section-title {
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    column-gap: 1.5rem;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 2rem;
}

.el-section-icon {
    height: 50px;
}

.el-category {
    font-size: 14px;
    color: var(--color-text-dark);
}

.el-description {
    font-size: 12px;
}

.el-simple-autocomplete {
    border-radius: 50px;
    border: 1px solid grey;
}

.el-simple-autocomplete > md-autocomplete-wrap {
    box-shadow: none;
}


.el-floating-select-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    z-index: 55;

    padding: 2rem 20rem;

    background-color: var(--thermarate-grey);
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.10);
}

.el-floating-select-dock-inner-container {
    height: 100%;
    max-width: 1730px;
    margin: auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    column-gap: 10rem;
}

.el-floating-dock-option {
    border-radius: 6px;
    padding: 10px;
    background-color: white;
}


.el-floating-calculate-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 75px;
    z-index: 55;

    display: grid;
    align-items: center;

    background-color: var(--thermarate-grey);
}

.el-launch-mode-icon {
    display: inline-block;
    max-height: 16px;
}

.el-calculate-button {
    white-space: nowrap;

    border-radius: 10px;
    outline: none;
    border: none;

    min-width: fit-content;
    padding: 1rem 4rem;

    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: center;
    align-content: center;
    align-items: center;
    column-gap: 1rem;
    color: white;
    font-size: 21px;
    font-weight: bold;
    background-color: #94c64b;
}
.el-calculate-button:hover {
    background-color: rgb(166 222 100);
}

.el-calculate-button:disabled {
    color: #c0c0c0;
    background-color: #eaeaea;
    opacity: 50%;
}
.el-calculate-button:disabled img {
    filter: invert(1);
    opacity: 20%;
}

.el-cancel-button {

    white-space: nowrap;
    outline: none;
    border: none;
    border-radius: 15px;
    background: transparent;

    min-width: fit-content;
    padding: 2rem 3.5rem;

    color: rgb(255,87,34);
    font-size: 16px;
    font-weight: normal;
}

.el-select-checkbox {
    color: var(--thermarate-green);
    font-weight: bold;
}

.el-menu-launch {
    /*opacity: 80%;*/
}



div.el-performance-result label {
    font-size: 14px;
    text-align: center;
    display: block;
    margin-bottom: 1.5rem;
}
div.el-performance-result label > sup {
    vertical-align: top;
    position: relative;
    top: -0.4em;
}


div.el-performance-result.smaller-text label {
    font-size: 12px !important;
}

div.el-performance-result span {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    display: block;
}

div.el-performance-result.green span {
    color: var(--thermarate-green);
}

div.el-performance-result.red span {
    color: orangered;
}

.el-orientation-results-container {
    display: grid;
    grid-template-areas: "centerino";
    justify-items: center;
    align-items: center;
    height: 890px;
    width: 100%;
}

.el-results-web,
.el-north-offset-web {
    grid-area: centerino;
    z-index: 100;
    position: relative;
    justify-items: center;
    justify-content: center;
    align-self: center;
    align-content: center;
    align-items: center;
    display: grid;
    
    --web-distance: 305px;
    
}

.el-north-offset-web {
    --web-distance: 220px !important;
}

.el-orientation-result-grid {
    background-color: white;
    color: var(--color-text-dark);
    box-shadow: 0px 2px 4px rgb(0 0 0 / 5%), 0px 0px 8px rgb(196 196 196 / 30%);
    border-radius: 8px;
    padding: 6px;
    width: 120px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: space-around;
    row-gap: 6px;
    transform: translateY(-60px);
}
.el-orientation-result-grid.small {
    row-gap: 2px !important;
}

.el-orientation-icon {
display: inline-block;
width: 40px;
}

.el-orientation-result-data {
    display: grid; 
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.el-result-heading-text {
font-size: 11px;
text-align: center;
}

.el-orientate-result-text {
    font-weight: bold;
    font-size: 18px;
}
.el-orientate-result-text.smaller-text {
    font-size: 14px !important;
}

.el-orientate-result-text.result {
color: var(--thermarate-green);
}


md-tooltip.solid-popup {
    background-color: var(--thermarate-grey);
    color: black;
    font-size: 14px;

    transition: 0ms;
    padding: 0.5rem;
}

md-tooltip.solid-popup > div {
    background-color: var(--thermarate-grey);
    height: fit-content;
    transition: 0ms !important;
}

.minimize-cell {
    width: 5%; /* white-space: nowrap will ensure width required still taken */
    white-space: nowrap;
}

.maximize-cell {
    width: max-content;
}


.reveal-child .show-on-parent-hover {
    visibility: hidden;
}

.reveal-child:hover .show-on-parent-hover {
    visibility: visible;
}

.popup-container {
    position: relative;
}

.solid-popup-html {
    z-index: 999999;
    position: absolute;
    bottom: -75px;
    background-color: var(--thermarate-grey);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);

    border-radius: 0.5rem;
    font-size: 14px;
    
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;

    transition: 0ms;
    padding: 0.75rem;
}

.el-popup-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;
}

.el-popup-heading {
    margin-top: 0; 
    margin-bottom: 0.5rem;
    text-align: center;
}

.el-smuc-center-col {
    text-align: center !important;
    min-width: 100px;
    max-width: 100px;
    width: 100px;
}

.el-smuc-center-col > * {
    display: inline;
    text-align: center;
    width: 100%;
}

.el-smuc-center-col > md-autocomplete-wrap > input {
    text-align: center;
    background-color: transparent;
}

textarea.el-design-insights {
    padding: 0 0;
    width: 100%;
    height: fit-content;

    border: none;
    border-bottom: 1px solid #d5d4d4;
    border-radius: 0;
    background-color: transparent;
    outline: none;
    resize: vertical;
}

md-input-container.el-design-insight {
    margin: 0 0;
}

md-input-container.el-design-insight.vertically-condensed-ex > md-select,
md-input-container.el-design-insight.vertically-condensed-ex > md-select > select  {
    display: flex;
    align-self: center;
    vertical-align: central;
    margin: 0 0;
}

.el-design-card-identifier {
    /* We are just using this to identify elements, not actually set styles...  */
}

.navigation-text {
    width: 2047px;
    margin: 30px auto 30px auto;
    max-width: 93%;
    display: flex;
    gap: 8px;
    font-size: 20px;
}

.select-model-main-container {
    margin: 22px auto;
    max-width: 1730px;
}

@media screen and (max-width: 1750px) {
    .select-model-main-container {
        max-width: 1150px;
    }

    .el-filter-grid {
        margin-left: 19px !important;
        width: 1111px !important;
    }

    .el-option-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 1200px) {
    .select-model-main-container {
        max-width: 572px;
    }

    .el-filter-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
        width: 532px !important;
    }

    .el-option-grid {
        grid-template-columns: 1fr;
    }
}