﻿@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

@font-face {
    font-family: 'Helvetica Now Display';
    src: url('HelveticaNowDisplay-Bold.eot');
    src: url('HelveticaNowDisplay-Bold.eot?#iefix') format('embedded-opentype'), url('HelveticaNowDisplay-Bold.woff2') format('woff2'), url('HelveticaNowDisplay-Bold.woff') format('woff'), url('HelveticaNowDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #000000;
    --color-secondary: #d50032;
    --color-extra: #25221E;
    --dark-grey: #000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    min-height: 100vh;
    scrollbar-gutter: stable;
}

html {
    scroll-behavior: smooth;
}

main {
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding: 20px;
}

section {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 40px;
    position: relative;
}

h3 {
    padding: 5px 20px;
    /*    text-decoration: underline;
    text-underline-offset: 4px;*/
    background-color: var(--dark-grey);
    color: #fff;
    margin: 30px 0px 30px -20px;
    width: 100%;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    justify-content: space-between;
}

#liveResultModal h3 {
    margin: 40px 0px 40px 0px;
    align-items: center;
}

#liveResultModal h3:last-of-type {
    padding: 15px 20px;
    font-size: x-large;
}

#CO2ResultModal h3 {
    margin: 40px 0px 40px 0px;
    align-items: center;
}

#CO2ResultModal h3:last-of-type {
    padding: 15px 20px;
    font-size: x-large;
}

.h3-result {
    text-align: right;
    margin-left: 15px;
}

h3:first-child {
    margin-bottom: 25px;
}

.text-red {
    color: red !important;
}

@media (max-width: 600px) {
    section {
        padding: 0px;
    }
}

a {
    color: #000;
}

ul {
    list-style: none;
}

p {
    margin: 5px 0;
    line-height: 1.7;
}

img {
    max-width: 100%;
}

section a {
    color: #fff;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}
/* Navbar */
.navbar {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 0px 20px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 2px 2px rgb(0 0 0 / 6%), 0 0 2px rgb(0 0 0 / 7%);
    border-bottom: 1px solid;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.navbar ul {
    display: flex;
    align-items: center;
}

.navbar li {
    margin: 0 15px;
    font-weight: bold;
}

.navbar a {
    color: #000;
    text-decoration: none;
}

.navbar-nav-left a:hover {
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 5px 0px 5px 0px;
}

.navbar-nav-left {
    text-transform: uppercase;
    flex: 1;
    margin-left: 20px;
}

.navbar-nav-right a {
    background-color: #000;
    color: #fff !important;
}


/* Buttons */
.btn {
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    display: inline-block;
    background: none;
    border: 1px #000 solid;
    border-radius: 50px;
    min-width: 150px;
    padding: 7px 16px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease-in;
}

.btn-dark-outline {
    border-color: #000;
    color: #000;
}

.btn-green {
    background-color: #68AC55;
    color: #fff;
}

.btn-red {
    background-color: #D50032;
    color: #fff;
}

.btn-dark-outline:hover,
.btn-light-outline:hover {
    background-color: #000;
    color: #fff;
}

.btn-light-outline {
    border-color: #fff;
    color: #fff;
}

.btn-dark {
    background-color: #000;
    color: #fff;
}

.btn-dark:hover {
    background-color: #fff;
    color: #000;
}

.btn-fixed-width {
    width: 130px;
    font-size: 12px;
}

.icon-btn {
    height: 35px;
    width: 35px;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    background: none;
    border: 1px #000 solid;
    border-radius: 50%;
    transition: all 0.4s ease-in;
}

.icon-btn-dark {
    background-color: #000;
    color: #fff;
}

.icon-btn-dark:hover {
    background-color: #fff;
    color: #000;
}


/* Backgrounds */
.bg-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.bg-secondary {
    background-color: var(--color-secondary);
    color: #fff;
}

.bg-extra {
    background-color: var(--color-extra);
    color: #000;
}

.bg-dark {
    background-color: var(--color-dark);
    color: #000;
}

/* Text Styling */
h1 {
    font-size: 40px;
}

.text-center {
    text-align: center;
}

.no-padding {
    padding: 0;
}

.padding-right-5px {
    padding-right: 5px;
}

.text-xl {
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-lg {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text-md {
    font-size: 24px;
    margin-bottom: 20px;
}

.text-sm {
    font-size: 19px;
    margin-bottom: 20px;
}

/* Padding */
.py-sm {
    padding: 10px 0;
}

.py-md {
    padding: 20px 0;
}

.py-lg {
    padding: 40px 0;
}

/* Hamburger Menu Icon */
.hamburger {
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    z-index: 10;
    transition: all 0.25s;
    display: none;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #000;
    transform: rotate(0);
    transition: all 0.5s;
}

.hamburger-middle {
    transform: translateY(7px);
}

.hamburger-bottom {
    transform: translateY(14px);
}

.open .hamburger-top {
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
    display: none;
}

.open .hamburger-bottom {
    transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    z-index: 1;
    /*top: 85px;*/
    right: 0;
    background-color: #fff;
    color: #000;
    width: 100%;
    height: 100%;
    padding: 30px;
    box-shadow: inset 0 4px 3px -3px rgb(0 0 0 / 10%), inset 0 4px 2px -2px rgb(0 0 0 / 7%);
    transition: all 0.3s;
}

    .mobile-menu ul {
        line-height: 3;
        border-bottom: #777 solid 1px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .mobile-menu a {
        text-decoration: none;
        font-size: 20px;
    }

        .mobile-menu a:hover {
            color: var(--color-primary);
        }

    .mobile-menu div {
        margin-top: 20px;
    }

        .mobile-menu div a {
            display: flex;
            align-items: center;
            font-size: 16px;
        }

.hidden {
    transform: translateX(100%);
}

/*.no-scroll {
    overflow: hidden;
}*/

@media (max-width: 960px) {
    .text-xl {
        font-size: 30px;
    }

    .text-lg {
        font-size: 25px;
    }

    .text-md {
        font-size: 19px;
    }
}

@media (max-width: 650px) {
    .hamburger {
        display: block;
    }

    .navbar .navbar-nav-left,
    .navbar .navbar-nav-right {
        display: none;
    }
}

/*General*/
.subTitle-black {
    height: 5px;
    width: 50px;
    background-color: #000;
    margin: 5px 0px 20px 0px;
}

.container {
    max-width: 1000px;
    width: 100%;
    min-height: 600px;
    background-color: #fff;
    /*box-shadow: 0 5px 10px rgba(0,0,0,0.2);*/
}

.cross-add-report {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 1;
}

.cross-add-report:hover {
    opacity: 0.7;
}

.cross-add-report:before, .cross-add-report:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 32px;
    width: 5px;
    background-color: #000;
}

.cross-add-report:after {
    transform: rotate(90deg);
}

@media (max-width: 600px) {
    cross-add-report {
        top: 6px;
    }
}

.cross-add-row {
    position: relative;
    float: right;
    height: 32px;
    opacity: 1;
}

.cross-add-row:hover {
    opacity: 0.7;
}

.cross-add-row:before, .cross-add-row:after {
    position: absolute;
    content: ' ';
    height: 32px;
    width: 5px;
    background-color: #000;
}

.cross-add-row:after {
    transform: rotate(90deg);
}

/*Login Form*/
.container form {
    height: 100%;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.form-content {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.form-content-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-content button {
    margin: 30px 0px;
}

.login-form {
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
    flex-grow: 1;
    height: 100%;
    padding: 30px 40px;
}

.img-login {
    background: url("../img/LOGO_MIT.png") no-repeat;
    background-position: center;
    background-size: cover;
    flex-basis: 55%;
    flex-grow: 1;
}

@media (min-width: 960px) {
    .login-form-my {
        margin: 50px 0;
    }
} 

@media (max-width: 960px) {
    .form-content {
        flex-direction: column;
    }

/*    .login-form {
        flex-basis: 45%;
    }*/
    .img-login {
        /*flex-basis: 55%;*/
        background-size: contain;
        min-height: 230px;
    }
}

@media (max-width: 650px) {
/*    .login-form {
        flex-basis: 60%;
    }*/

    .img-login {
        min-height: 150px;
    }
}

/*Cards Reports*/
.card-items {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px;
}

.card-items-title {
    font-weight: 600;
}

.card-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    min-height: 40px;
    width: 100%;
    padding: 15px 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.card-item-venue {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    min-height: 30px;
    width: 100%;
    padding: 10px 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}


.card-title h2 {
    font-size: 18px;
}

.card-title-venue h2 {
    font-size: 18px;
    font-weight: 600;
}

.card-title p {
    font-size: 14px;
}

.card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 980px) {
    .card-item {
        flex-direction: column;
    }

    .card-title {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .card-links {
        flex-direction: column;
    }
}

/*Input*/
input {
    font-size: 14px;
    color: var(--color-extra);
}

.label {
    color: var(--color-extra);
}

.input-boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex: 1;
    gap: 25px;
    margin-bottom: 50px;
}

.input-box {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--color-extra);
    min-height: 50px;
}

.input-box-no-border {
    display: flex;
    flex-direction: column;
    min-height: 50px;
}

.input-border-bottom {
    border-bottom: 1px solid var(--color-extra);
}

.input-date {
    margin-top: 10px;
}

.no-border {
    border-bottom: 0;
    height: auto;
}


.group-radio {
    display: flex;
    flex-direction: column;
}

.single-radio {
    display: flex;
    align-items: center;
    gap: 15px;
}

.single-radio:first-child{
    margin-top: 15px;
}

.input-box label {
    font-size: 16px;
    color: var(--color-extra);
}

.input-box input {
    min-height: 30px;
    border: none;
    padding: 5px 5px 5px 5px;
}

.input-box input:focus {
    outline: none;
}

.input-box input::placeholder {
    font-family: 'Nunito', sans-serif;
}

.input-boxes button {
    margin-top: 30px;
}

input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    min-height: 16px;
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    transition: 0.2s all linear;
    position: relative;
}

input[type=radio]:checked {
    border: 3.5px solid black;
    background-color: #fff;
}

.checkbox-container label {
    display: flex;
}

input[type=checkbox] {
    opacity: 0;
    position: absolute;
}

.checkbox-container label::before{
    content: '';
    width: 1em;
    height: 1em;
    border-radius: .15em;
    margin-right: 1em;
    border: .075em solid #000;
}

.checkbox-container label:hover::before,
.checkbox-container input[type='checkbox']:hover + label::before {
    background-color: #E4E4E4;
}

.checkbox-container input[type='checkbox']:checked + label::before{
    content: '\002714';
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}


/*.regular-checkbox {
    -webkit-appearance: none;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
    border-radius: 3px;
    display: inline-block;
    position: relative;
    height: 16px;
    width: 16px;
}

.regular-checkbox:active, .regular-checkbox:checked:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.regular-checkbox:checked {
    background-color: #e9ecee;
    border: 1px solid #adb8c0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
    color: #99a1a7;
}

.regular-checkbox:checked:after {
    content: '\2714';
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 3px;
    color: #99a1a7;
}*/
textarea {
    padding: 15px 0px;
    border: none;
    max-width: 100%;
}

.input-box textarea:focus {
    outline: none;
}

.flex-row-space-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

select {
    background: transparent;
    border: none;
    outline: none;
    height: 30px;
    font-size: 14px;
}

.select:focus {
    outline: none;
} 

.numbered {
    font-weight: 600;
}

.live-numbered {
    font-weight: 600;
}

.datalist-black {
    display: flex;
    justify-content: space-between;
    padding-left: 8px;
    font-size: 1rem;
}

.datalist-black option {
    padding: 5px;
    font-size: 13px;
}

.w-90 {
    min-width: 80%;
    flex: 1 1 auto;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

input[type=range] {
    -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    width: 100%; /* Specific width is required for Firefox. */
    background: transparent; /* Otherwise white in Chrome */
}

/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 4px solid #000000;
  border-radius: 50%;
  height: 19px;
  width: 19px;
  background: #ffffff;
  margin-top: -5px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}

 input[type=range]::-moz-range-thumb {
   border: 3px solid #000;
   height: 16px;
   width: 16px;
   border-radius: 50%;
   background: #fff;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
  border: 3px solid #000000;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  background: #ffffff;
}

input[type=range]:focus {
    outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
    width: 100%;
    /* Hides the slider so custom styles can be added */
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #000;
    border-radius: 1.3px;
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-track {
  height: 6px;
  width: 100%;
  background: #000;
}

.flex-display {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*Report details*/
.edit-form {
    display: flex;
    padding: 20px;
    height: 100%;
    width: 100%;
}

.tab {
    display: none; /* Hide all steps by default: */
    width: 100%;
    flex-grow: 1;
    flex-basis: 100%;
}

.hide-page {
    display: none;
}

.group-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin: 0px 20px 30px 20px;
}

@media (max-width: 770px) {
    .group-btn {
        flex-direction: column; 
        margin: 30px 20px;
    }

    .group-btn button {
        margin: 0px;
        height: 44px;
    }
}

.progress-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
    padding: 15px 5px 0px 5px;
    text-align: center;
}

.progress-bar p {
    font-size: 13px;
    width: 100%;
}

.progress-bar .step {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.progress-bar .step .bullet {
    height: 25px;
    width: 25px;
    border: 1.5px solid #000;
    display: flex;
    justify-items: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.progress-bar .step .bullet:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
}

.bullet span {
    width: 100%;
    font-size: 12px;
}

.bullet-active {
    background: #000;
    color: #fff;
}

.bullet-text-active {
    font-weight: bold;
}

@media (max-width: 720px) {
    .bullet {
        height: 15px;
        width: 15px;
    }

    .progress-bar p {
        font-size: 7px;
        width: 100%;
    }
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Modals for CO² calculator */
.modal-footprint {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 11; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content-footprint {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    margin-bottom: 50px;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    padding: 20px;
    max-width: 1440px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 10px;
}

body.modal-footprint-open {
    overflow: hidden;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.modal-header {
    padding: 10px 15px;
    background-color: #fff;
    color: #000;
}

.modal-body {
    padding: 10px 15px;
}

.modal-footer {
    padding: 10px 15px;
    background-color: #fff;
    color: #fff;
}

.rating {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    transform: rotateY(180deg);
}

.rating input {
   display: none;
}

.rating label {
    display: block;
    cursor: pointer;
    width: 50px;
}

.rating label:before{
    content: '\f005';
    font-family: fontAwesome;
    position: relative;
    display: block;
    font-size: 30px;
    color: #101010;
}

.rating label:after {
    content: '\f005';
    font-family: fontAwesome;
    position: absolute;
    display: block;
    font-size: 30px;
    color: #F5C903;
    bottom: 0;
    opacity: 0;
    transition: .5s;
}

.rating label:hover:after,
.rating label:hover ~ label:after,
.rating input:checked ~ label:after {
    opacity: 1;
}

.comment {
    min-height: 100px;
}

/*Reporting*/

.container-reporting {
    font-family: Helvetica, sans-serif;
}

.reporting-bg {
    background: url("../img/background-reporting2.png");
    background-attachment: fixed;
    background-repeat: space;
}

@media all and (max-device-width: 468px) {
    .reporting-bg {
        background-attachment: scroll;
    }
}

#scroll-me {
    position: absolute;
    bottom: -15vh;
    height: 1px;
    width: 1px;
}

.section-reporting {
    min-height: 100vh;
    width: 100%;
    display: flex;
    overflow-x: hidden;
    gap: 50px;
    padding: 0px 15px;
    scrollbar-width: none;
}

/*::-webkit-scrollbar {
    display: none;
}*/

.align-justify-center {
    align-items: center;
    justify-content: center;
}

.section-reporting h2 {
    font-size: clamp(28px, 4.5vw, 72px);
    margin-bottom: 20px;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.ask-scroll {
    width: 100%;
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20vh;
    align-items: flex-end;
}

.ask-scroll-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 24px;
    font-weight: 800;
}

.btnPDF {
    position: fixed;
    top: 50%;
    right: 35px;
    transform: translate(0, -50%);
    z-index: 1;
}

.btn-scroll {
    height: 50px;
    width: 50px;
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.btn-scroll img {
    height: 35px;
    width: 35px;
}

.reporting-title-1 {
    width: 100%;
    font-family: 'Helvetica Now Display';
    font-weight: bold;
    font-style: normal;
    font-size: clamp(34px, 6vw, 82px);
    font-weight: bold;
    white-space: pre;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.ln-09 {
    line-height: 0.9;
}

.reporting-square-orange {
    height: clamp(250px, 25vw, 420px);
    width: clamp(250px, 25vw, 420px);
    border-radius: 50%;
    background-color: #F7941F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(20px, 2.8vw, 45px);
}

.reporting-square-orange p {
    text-align: left;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(24px, 3vw, 54px);
    font-weight: 500;
    width: 100%;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 0.6;
    padding-bottom: 10px;
}

.reporting-square-orange p:last-child {
    margin-top: 5px;
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 24px);
    padding-bottom: 0;
}


@media (max-width: 1000px) {
    .reporting-title-1 {
        flex-direction: column;
    }

    myChart {
        height: 500px;
        width: auto;
    }
}

.flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#triggerScene-square-orange {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.container-sdg {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: relative;
    margin-left: 10px;
    width: 100%;
}

.container-sdg-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    max-width: 1250px;
    overflow: visible;
}

.sdg-img-pdf {
    display: block;
    width: 1300px;
    overflow: visible;
}

    .sdg-img-pdf > img {
        width: 200px;
        height: 200px;
    }

@media (max-width: 1000px) {
    .container-sdg {
        justify-content: center;
    }
}


/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    width: clamp(87px,10vw,200px);
    height: clamp(87px,10vw,200px);
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    overflow: visible;
}

.no-flip-card {
    background-color: transparent;
    width: clamp(87px,10vw,200px);
    height: clamp(87px,10vw,200px);
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card:hover {
    z-index: 1;
    overflow: visible;
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 87px;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
    color: black;
}

/* Style the back side */
.flip-card-back {
    color: white;
    transform: rotateY(180deg);
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    overflow: visible;
    z-index: 1;
    min-height: clamp(87px,10vw,200px);
    height: auto;
}

.flip-card-back p {
    margin: 0;
    line-height: 1.1;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(12px, 1vw, 16px);
    text-align: left;
    width: 100%;
    height: 100%;
}

.flip-card-back span {
    font-size: clamp(18px, 1.2vw, 22px);
    font-weight: 900;
}

.container-sdg .shape {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape img {
    object-fit: cover;
    
}

.section-anim-trigger-left {
    top: 0;
    left: 0;
    height: 100%;
}

.max-width-450px {
    max-width: 450px;
}

.max-width-920px {
    max-width: 920px;
}

.section-anim-trigger-left h2 {
    line-height: 1.2;
}

.section-anim-trigger-left .subTitle-black {
    height: clamp(3.5px, 0.8vw, 5px);
    width: clamp(40px, 4vw, 80px);
}

.section-anim-trigger-left p {
    font-size: clamp(14px, 1.7vw, 24px);
}

.bg-grey {
    background-color: #F7F7F7;
}

.flex-direction-column {
    flex-direction: column;
}

.sdg-step {
    display: flex;
    gap: 15px;
    min-height: 30px;
    width: 100%;
    font-size: clamp(13px, 1.5vw, 22px);
/*    padding-left: 1.2em;
    text-indent: -1.2em;*/
}

.sdg-step-left {
    padding: 5px 15px;
    width: clamp(130px,40vw, 800px);
    border-bottom: 1px dotted #000;
}

.sdg-step-right {
    padding: 5px 15px;
    width: 100%;
    border-bottom: 1px dotted #000;
}

.sdg-step-left > p {
    line-height: 1.3;
}

.sdg-step-right > p {
    line-height: 1.3;
}

.sdg-step-right > p > span {
    padding-right: 5px;
}

.container-chart {
    display: flex;
    align-items: center;
    position: relative;
    width: 70%;
}

.container-chart h2 {
    font-size: 40px;
}

.circularity-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.circularity-chart-row {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(30px, 5.5vh, 80px);
    width: 100%;
}

.circularity-chart-row:nth-child(1) {
    height: clamp(55px, 6vw, 140px);
}

.min-width-60px {
    min-width: 60px;
}

.circularity-chart-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(8px, 2.7vh, 38px);
    width: 100%;
}

.circularity-chart-cell:nth-child(1) {
    text-align: left;
    background-color: transparent;
    color: #000;
    
}

.circularity-chart-cell:nth-child(2) {
    background-color: #36784B;
}

.circularity-chart-cell:nth-child(3) {
    background-color: #68AC55;
}

.circularity-chart-cell:nth-child(4) {
    background-color: #F6D04B;
}

.circularity-chart-cell:nth-child(5) {
    background-color: #E18230;
}

.circularity-chart-cell:nth-child(6) {
    background-color: #D12E27;
}

.circularity-chart-cell p {
    font-size: clamp(11px, 1.8vw, 24px);
    font-weight: 400;
    line-height: 1;
    width: 100%;
}

.circularity-chart-row:nth-child(1) .circularity-chart-cell {
    height: clamp(30px, 5vh, 85px);
}

.circularity-chart-row:nth-child(1) .circularity-chart-cell p {
    color: #fff;
    font-size: clamp(14px, 1.8vw, 42px);
}

.circularity-chart-track {
    height: clamp(12px, 3.7vh, 60px);
    width: clamp(12px, 3.7vh, 60px);
    border-radius: 50%;
    border: clamp(1px, 0.8vh, 4px) solid black;
    background: #fff;
    display: none;
}

.track-green {
    border-color: #36784B;
}

.track-green-light {
    border-color: #68AC55;
}

.track-yellow {
    border-color: #F6D04B;
}

.track-orange {
    border-color: #E18230;
}

.track-red {
    border-color: #D12E27;
}

.flex-center h2 {
    font-size: 60px;
    margin-top: 45px;
}

.flex-center .subTitle-black {
    margin-bottom: 45px;
}

@media (max-width: 700px) {
    #myChart {
        height: 500px;
        width: 500px;
    }
}

.btnPDF{
    width: 60px;
}

.btn-fixed-pdf {
    font-size: 10px;
    text-align: left;
}

.m-5 {
    
    background-color: #000;
    text-align: right;
    width: 55px;
    height: 35px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding: 5px;*/
}

.m-5 output {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mt-15 {
    margin-top: 15px;
}

.section-title-absolute {
    position: absolute;
    left: 4vw;
    top: 4vw;
    max-width: 16vw;
}

@media (max-width: 1000px) {
    .section-title-absolute {
        position: relative;
        max-width: 90%;
        top: 0;
    }

    .section-reporting {
        flex-direction: column;
    }

    .reporting-bg .section-reporting {
        flex-direction: row;
    }

    .section-anim-trigger-left {
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .max-width-200px {
        max-width: 100%;
    }

    .container-chart {
        width: 100%;
    }

    .container-sdg {
        margin: 0;
    }
}

.carbonFootprint-parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: minmax(100px, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
}

.padding-15 {
    padding: 15px;
}

@media (max-width: 1000px) {
    .padding-15 {
        padding: 10px;
    }


}

.carbonFootprint-child1 {
    grid-area: 1 / 1 / 2 / 3;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}

.carbonFootprint-child1 p:last-child {
    color: #704A52;
    font-size: 42px;
    line-height: 1;
}

.carbonFootprint-child2 {
    grid-area: 1 / 3 / 2 / 5;
    border-bottom: 1px solid #000;
}

.carbonFootprint-child2 p:last-child {
    color: #704A52;
    font-size: 42px;
    line-height: 1;
}

.carbonFootprint-child3 {
    grid-area: 2 / 1 / 3 / 5;
    border-bottom: 1px solid #000;
}

.carbonFootprint-child3 p:last-child {
    color: #6EAE93;
    font-size: 42px;
    line-height: 1;
}

.carbonFootprint-child4 {
    grid-area: 3 / 1 / 4 / 4;
    border-right: 1px solid #000;
}

.carbonFootprint-child4 p:last-child {
    color: #6EAE93;
    font-size: 42px;
    line-height: 1;
}

.carbonFootprint-child5 {
    grid-area: 3 / 4 / 4 / 5;
}

.carbonFootprint-child5 img {
    height: 80px;
    width: 80px;
}

@media (max-width: 700px) {
    .carbonFootprint-parent {
        font-size: 16px;
    }

    .carbonFootprint-child1 p:last-child,
    .carbonFootprint-child2 p:last-child,
    .carbonFootprint-child3 p:last-child,
    .carbonFootprint-child4 p:last-child {
        font-size: 28px;
    }
}

.container-picture {
    display: flex;
    display: none;
}

.container-picture > img {
    height: 200px;
    width: 200px;
    border: solid 1px grey;
    border-radius: 50%;
}

.container-picture-btn {
    display: flex;
    margin-top: 10px;
    display: none;
}

.display-block {
    display: block;
}

.display-none {
    display: none;
}

.section-anim {
    padding: 30px;
    flex: 1 1 auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

th,
td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

th {
    height: 30px;
    background-color: #000000;
    color: #ffffff;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f8f8f8;
}



.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

.delete-btn {
    margin: 0px;
}

.container-grid {
    display: grid;
}

.grid-3 {
    grid-template-columns: 45% 45% 10%;
}

.grid-4 {
    grid-template-columns: 30% 30% 30% 10%;
}

.grid-5 {
    grid-template-columns: 22.5% 22.5% 22.5% 22.5% 10%;
}

.grid-6 {
    grid-template-columns: 18% 18% 18% 18% 18% 10%;
}

.grid-7 {
    grid-template-columns: 15% 15% 15% 15% 15% 15% 15% 10%;
}

.container-grid input,
.container-grid select {
    border: none;
/*    padding: 5px 5px 5px 5px;*/
    /*border-bottom: 1px solid var(--color-extra);*/
    /*min-height: 50px;*/
    margin: 0 5px;
}

.container-grid input:focus {
    outline: none;
}

.container-grid input::placeholder {
    color: #808080;
}

.grid-row {
    min-height: 40px;
    width: 100%;
    padding: 15px 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.grid-header-padding {
    padding: 0 15px;
}

@media (min-width: 900px) {
    .container-grid input::placeholder {
        color: #fff;
    }

    .hide-on-desktop {
        display: none;
    }
}

@media (max-width: 900px) {
    .container-grid {
        grid-template-columns: 100%;
    }

    .container-grid > * {
        margin-bottom: 10px;
    }

    .container-grid > *:last-child {
        margin-top: 15px;
        margin-bottom: 0px;
    }

    .container-grid-hide-on-mobile {
        display: none;
    }
}

.text-align-bottom {
    display: flex;
    align-items: flex-end;
}

.gap-15 {
    gap: 15px;
}

.mx-10 {
    margin-left: 10px;
    margin-right: 10px;
}

.my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.min-height-auto {
    min-height: auto;
}

.blurred-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    z-index: 999;
    display: none;
}

.lds-ring {
    z-index: 1000;
    display: none;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid black;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: black transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  

  .result-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -10px;
  }

  .result-card {
    flex: 1 0 calc(25% - 20px); /* 25% width minus the margin */
    margin: 10px; 
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .result-card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .result-card-value {
    font-size: 1.7rem;
  }

  @media (max-width: 768px) {
    .result-card {
      flex: 1 0 calc(33.33% - 20px); /* 33.33% width minus the margin */
    }

    .result-card-container {
        justify-content: flex-start;
    }
  }

  @media (max-width: 600px) {
    .result-card {
      flex: 1 0 calc(50% - 20px); /* 50% width minus the margin */
    }
  }

  @media (max-width: 480px) {
    .result-card {
      flex: 1 0 calc(100% - 20px); /* Full width minus the margin */
    }
  }