
.calculator-white-border {
    padding: 24px;
    background: #FFFFFF;
    border-radius: 12px;
}

.calcultor-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    gap: 12px;
    background: #FFFFFF;
    border-radius: 12px;
    flex: none;
    flex-grow: 0;
    justify-content: inherit;
}

.calculator-standard-padding {
    padding: 24px;
}

.calculator-main-title {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    color: #164B45;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
    padding-bottom: 15px;
}

.calculator-orderline-co2 {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    color: #164B45;
    font-size: 48px;
    height: 174px;
    width: 80%;
}

@media all and (max-width: 980px) {
    .calculator-orderline-co2 {
        height: auto;
        width: 100%;
    }
}

.calculator-label, .calculator-checkbox {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    color: #7B8785;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}

.calculator-container-border, .calculator-textarea {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    gap: 16px;
    width: 100%;
    height: 56px;
    background: #FFFFFF;
    border: 1px solid #CED3D1;
    border-radius: 8px;
}

.calculator-textarea {
    height: inherit;
}

.calculator-transportation-type-button-selected {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 12px;
    width: 107px;
    height: 40px;
    background: #9EF1DE;
    border-radius: 8px;
    flex: none;
    flex-grow: 0;
}

.calculator-transporation-type-label {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #164B45;
    flex: none;
    flex-grow: 0;
}

.calculator-type-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    gap: 16px;
    width: 100%;
    height: 56px;
    background: #FFFFFF;
    border: 1px solid #CED3D1;
    border-radius: 8px;
}


@media all and (max-width: 980px) {
    .calculator-transportation-type-button {
        width: calc((100%-160px) / 10);
    }

    .calculator-transportation-type-button-selected {
        padding: 2px;
        width: auto;
    }

    .calculator-type-container {
        gap: 5px;
    }
    }

.calculator-select-wrapper {
    width: 100%;
    position: relative;
    border: 1px solid #d1d9d9;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.calculator-select {
    width: 100%;
    padding: 12px 18px;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(#777);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding-right: 70px;
}

    .calculator-select:not(:placeholder-shown) {
        color: #555;
        font-size: 14px;
    }

.calculator-select-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    background-color: white;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    background-image: url("wf/images/calculator/select-arrow.svg");
    background-repeat: no-repeat;
    background-position: center center;
    pointer-events: none;
}

.calculator-select-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 59px;
    height: 100%;
    width: 1px;
    background-color: #d1d9d9;
}

.calculator-input::placeholder {
    color: #b0b0b0;
    font-size: 16px;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 500;
}

.calculator-input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #555555;
}

.calculator-button {
    padding: 8px 16px;
    gap: 8px;
    height: 40px;
    background: #168375;
    border-radius: 8px;
    cursor: pointer;
    color: white;
}

.calculator-button-transparent {
    padding: 8px 16px;
    gap: 8px;
    height: 40px;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    color: #168375;
    border: 1px solid #168375;
}


.calculator-radio-group {
    display: flex;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

    .calculator-radio-group label {
        flex: 1;
    }

    .calculator-radio-group input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .calculator-radio-group label {
        margin-top: 8px;
        margin-bottom: 8px;
        padding: 10px 20px;
        background-color: transparent;
        color: #777;
        font-family: Arial, sans-serif;
        font-size: 16px;
        cursor: pointer;
        text-align: center;
        transition: all 0.2s ease-in-out;
        flex: 1;
    }

        .calculator-radio-group label:last-of-type {
            border-right: none;
        }

        .calculator-radio-group label:hover {
            background-color: rgba(0, 0, 0, 0.03);
        }

    .calculator-radio-group input[type="radio"]:checked + label {
        border-radius: 8px;
        background-color: #9ef1de;
        color: #136C62;
        font-weight: bold;
    }

.full-width {
    width: 100%;
}

.width-50 {
    width: 50%;
}

.full-height {
    height: 100%;
}

.title-rounded {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #062D2B;
}

.fluid-table-padding td {
    padding: 5px;
}

@media all and (max-width: 980px) {

    .fluid-table tr {
        display: block;
    }

    .fluid-table td {
        display: block;
        width: inherit;
    }

    .fluid-table-padding td {
        padding: 10px;
    }
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.small {
    font-size: 70%;
}

.no-border {
    border: 0;
}

.project-blue {
    color: #164B45;
    font-weight: 700;
    font-size: 16px;
}

.mobile, .mobile-block {
    display: none;
}

.desktop {
    display: inherit;
}

@media all and (max-width: 980px) {
    .mobile {
        display: inherit;
    }

    .mobile-block {
        display: block;
    }

    .desktop {
        display: none;
    }
}

.nowrap {
    white-space: nowrap;
    overflow: hidden;
}

.pointer {
    cursor: pointer;
}

.calculator-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

    .calculator-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.calculator-checkbox-checkmark {
    height: 30px;
    width: 30px;
    background-color: white;
    border: 1px solid #CED3D1;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: background-color 0.2s;
}

.calculator-checkbox:hover input ~ .calculator-checkbox-checkmark {
    background-color: #ccc;
}

.calculator-checkbox input:checked ~ .calculator-checkbox-checkmark {
    background-color: rgb(19, 108, 98);
}

.calculator-checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.calculator-checkbox input:checked ~ .calculator-checkbox-checkmark:after {
    display: block;
}

.calculator-checkbox .calculator-checkbox-checkmark:after {
    left: 10px;
    top: 5px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.calculator-link {
    -webkit-text-decoration: underline;
    text-decoration: underline;
}

.calculator-input-error, select.calculator-input-error {
    background-color: #f7dcdc !important;
    color: white !important;
}

.footer-logo {
    width: 144px;
}

.twocolumn-grid {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: center stretch;
    display: grid;
}

@media all and (max-width: 980px) {
    .twocolumn-grid {
        display: flex;
        flex-direction: column;
    }
}


.text-media_image.is-left {
    border-top-left-radius: .75rem;
    border-bottom-left-radius: .75rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.text-media_image {
    border-top-right-radius: .75rem;
    border-bottom-right-radius: .75rem;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 460px;
    display: block;
}

.twocolumn-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.twocolumn-equal-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.twocolumn-column-1 {
    flex: 1;
}

.twocolumn-column-2 {
    flex: 1;
}

.twocolumn-column-2-flex {
    flex: 2;
    display: flex;
}

.twocolumn-column-1-flex {
    flex: 1;
    display: flex;
}


@media all and (max-width: 980px) {
    .twocolumn-container, .twocolumn-equal-container {
        flex-direction: column;
    }
}

.twocolumn-vertical-horizontal-center {
    justify-content: center;
    align-items: center;
}

.twocolumn-vertical-center {
    justify-content: center;
}

.white-background {
    background-color: #FFFFFF;
}

.green-background {
    background-color: #F5FAF5;
}

.calculator-small-title {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #7B8785;
    display: block;
    padding-bottom: 5px;
}

.calculator-text {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #565E5D;
    display: block;
}

.button_icon_basket {
    object-fit: contain;
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: middle;
    margin-top: 3px;
}

.calculator-projects {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    padding: 20px;
}

.calculator-project-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    min-width: 378px;
}

@media all and (max-width: 980px) {
    .calculator-projects {
        flex-direction: column;
        padding: 0px;
    }

    .calculator-project-container {
        min-width: 100%;
    }
}

.calculator-project-row-title {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-size: 31px;
    color: #1b1d1c;
    display: block;
    padding: 20px;
    height: 130px;
    line-height: 42px;
}

.calculator-project-description {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #1fbea7;
    display: block;
    padding: 20px;
}

.calculator-project-header {
    border-radius: 20px;
    background-color: #FFFF;
    box-shadow: 0 16px 16px -16px #7B8785;
}

.calculator-project-image {
    width: 100%;
    width: 408px;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.calculator-project-sub-title {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #a0a5a3;
    display: block;
    padding-bottom: 20px;
}

.calculator-project-text {
    color: #a0a5a3;
    font-size: 14px;
}

.calculator-hr {
    border: none;
    height: 1px;
    background-color: #D0D0D0;
    margin-top: 24px;
    margin-bottom: 24px;
}

.calculator-project-price {
    color: #405654;
    font-size: 18px;
    font-weight: 600;
}

.here-is-your-impact-column-1 {
    height: 250px;
}

@media all and (max-width: 980px) {
    .here-is-your-impact-column-1 {
        height: auto;
    }
}

.calculator-container-other-contribution {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.calculator-button-other-contribution {
    border: 1px solid #CED3D1;
    width: 180px;
    border-radius: 8px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 6px;
}

    .calculator-button-other-contribution a {
        text-align: center;
        display: block;
    }

    @media all and (max-width: 980px) {
        .calculator-button-other-contribution {
            width: inherit;
            padding: 10px;
        }
    }

.order-line {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e4e9e7;
    padding: 24px 28px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.order-line-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.order-line-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a34;
}

.order-line-actions {
    display: flex;
    gap: 12px;
}

    .order-line-actions button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: #2dbfaa;
        transition: opacity 0.2s;
    }

        .order-line-actions button:hover {
            opacity: 0.7;
        }

    .order-line-actions svg {
        width: 20px;
        height: 20px;
        stroke: #2dbfaa;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.order-line-divider {
    border: none;
    border-top: 1px solid #e4e9e7;
    margin-bottom: 18px;
}

.order-line-table {
    width: 100%;
    border-collapse: collapse;
}

    .order-line-table thead th {
        font-size: 13px;
        font-weight: 500;
        color: #7a9490;
        text-align: right;
        padding-bottom: 10px;
    }

        .order-line-table thead th:first-child {
            text-align: left;
        }

    .order-line-table tbody td {
        font-size: 14px;
        color: #2c4a44;
        text-align: right;
        padding: 2px 0;
        vertical-align: top;
    }

        .order-line-table tbody td:first-child {
            text-align: left;
            color: #2c4a44;
        }

    .order-line-table tbody tr td .impact-label {
        line-height: 1.6;
    }

.order-line-impact-sub {
    display: block;
    font-size: 13px;
    color: #5a7a74;
}

.inline-block {
    display: inline-block;
}

.vertical-align {
    display: inline-block;
    vertical-align: middle;
}

.sdg-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding-left: 3px;
    padding-right: 3px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: sans-serif;
    cursor: default;
    user-select: none;
    margin-right: 5px;
    margin-bottom: 5px;
}

.sdg-label-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #aaa;
    flex-shrink: 0;
}

.sdg-label-text {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.calculator-spacer-non-homepage {
    height: 85px;
    background-color: #f5faf4;
}
