.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;
}

.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-transportation-type-button {
    display: flex;
    flex-direction: row;
    padding: 4px 4px;
    flex: none;
    flex-grow: 1;
}

.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%;
}

.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: inline-block;
        width: inherit;
    }

    .fluid-table-padding td {
        padding: 10px;
    }
}

.center {
    text-align: center;
}

.no-border {
    border: 0;
}

.project-blue {
    color: #164B45;
    font-weight: 700;
    font-size: 16px;
}

.mobile, .mobile-block {
    display: none;
}

@media all and (max-width: 980px) {
    .mobile {
        display: inherit;
    }

    .mobile-block {
        display: block;
    }
}

.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-container {
    grid-column-gap: var(--spacing--spacing-120);
    grid-row-gap: var(--spacing--spacing-120);
    grid-template-rows: auto;
    grid-template-columns: 4fr 6fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.twocolumn-equal-container {
    grid-column-gap: var(--spacing--spacing-120);
    grid-row-gap: var(--spacing--spacing-120);
    grid-template-rows: auto;
    grid-template-columns: 4fr 6fr;
    display: grid;
}

.twocolumn-column-1 {
    flex-flow: column;
    display: flex;
}

.twocolumn-column-2 {
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.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;
    line-height: 24px;
    text-transform: uppercase;
    color: #7B8785;
    display: block;
}

.calculator-text {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #565E5D;
    display: block;
}