.blck {
    display: block;
}

/* Chrome, Safari, Edge, Opera */
.co2calc_section input::-webkit-outer-spin-button,
.co2calc_section input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.co2calc_section ::placeholder {
    color: rgba(53, 53, 53, .65);
    opacity: 1;
    /* Firefox */
}

.co2calc_section ::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(53, 53, 53, .65);
}

/* Firefox */
.co2calc_section input[type=number] {
    -moz-appearance: textfield;
}

/* Prnint */

@media print {

    .amplience-component,
    header,
    footer {
        visibility: hidden !important;
        display: none !important;
    }
}

.co2calc_section {
    font-size: 16px;
    padding: 40px 0 88px;
}

.xgn-icon {
    position: relative;
    padding-left: 36px;
    display: flex;
    align-items: center;
}

.xgn-icon::before {
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
}

.xgn-icon--file-image::before {
    background-image: url(https://epsonemear.a.bigcontent.io/v1/static/file-image-regular);
}

.xgn-icon--trash::before {
    background-image: url(https://epsonemear.a.bigcontent.io/v1/static/trash-regular);
}

.xgn-icon--calc::before {
    background-image: url(https://epsonemear.a.bigcontent.io/v1/static/calculator-regular);
}

.xgn-icon--droplet::before {
    background-image: url(https://epsonemear.a.bigcontent.io/v1/static/droplet-regular);
}

.xgn-icon--gear::before {
    background-image: url(https://epsonemear.a.bigcontent.io/v1/static/gear-regular);
}

.inp-row {
    display: flex;
    gap: 20px;
    max-width: 940px;
}

.inp-row input,
.inp-row select {
    width: 100%;
    border: 1px solid #90949C;
    padding: 15px 12px;
    margin-bottom: 26px;
}

.range-row {
    max-width: 940px;
    position: relative;
}

.fancy-slider {
    position: relative;
    width: 100%;
    margin-top: 57px;
}

.range-slider_input {
    width: 100%;
    max-width: 940px;
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    opacity: 0;
    margin: 0;
}

.range-slider_input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 100px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0;
}

.range-slider_input::-moz-range-thumb {
    width: 14vmin;
    height: 14vmin;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0;
}

.range-slider_thumb {
    width: 25px;
    height: 25px;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2DAC83;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 4vmin;
    color: #303030;
    z-index: 2;
}

.range-slider_thumb span {
    position: relative;
    top: -26px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

.range-slider_line {
    height: 7px;
    width: 100%;
    border: none;
    background-color: #2DAC83;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    border-radius: 10px;
    z-index: 1;
}

.range-slider_backline {
    height: 7px;
    width: 100%;
    background-color: #D9E3EC;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    z-index: 0;
    border-radius: 10px;
}

.range-slider_line-fill {
    position: absolute;
    height: 7px;
    width: 0;
    background-color: #303030;
}

.range-min,
.range-max {
    position: absolute;
    top: 16px;
}

.range-min {
    left: 0;
}

.range-max {
    right: 0;
}

@media (min-width: 992px) {
    .inp-row fieldset {
        width: calc(50% - 10px);
    }
}

.radio-buttons {
    display: flex;
    flex-wrap: wrap;
    max-width: 940px;
}

.radio-buttons input {
    display: none;
}

.radio-buttons label {
    background-color: rgba(217, 227, 236, .35);
    padding: 15px 18px;
    margin-right: 20px;
    margin-bottom: 26px;
    cursor: pointer;
}

.radio-buttons label:hover {
    background-color: #D9E3EC;
}

.radio-buttons label.active,
.radio-buttons label.active:hover {
    color: white;
    background-color: #2DAC83;
    cursor: not-allowed;
}

.range-row fieldset {
    width: 100%;
}

.co2calc_section fieldset {
    position: relative;
}

.x_tooltip {
    cursor: pointer;
}

.x_tooltip span {
    border: 1px solid #303030;
    border-radius: 50%;
    color: #303030;
    font-family: Georgia;
    font-weight: bold;
    font-style: italic;
    font-size: 12px;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 6px;
}

.x_tooltip div {
    width: 224px;
    padding: 23px 15px;
    font-size: 12px;
    background-color: #F5F4F8;
    position: absolute;
    bottom: 127px;
    left: calc(50% - 4px);
    transform: translateX(50%);
    opacity: 0;
    pointer-events: none;
    transition: .2 ease-out;
}

.x_tooltip:hover div {
    opacity: 1;
}

.x_tooltip div::after {
    content: '';
    background-color: #F5F4F8;
    width: 20px;
    height: 20px;
    transform: rotate(45deg) translateX(-50%);
    position: absolute;
    bottom: -16px;
    left: 50%;
}

.checks {
    margin-bottom: 8px
}

/* Bg */
.bg-images img.baloon {
    position: fixed;
    top: 260px;
    left: calc(50% + 550px);
}

.bg-images img.cloud-1 {
    position: absolute;
    top: 230px;
    right: calc(50% - 700px);
    z-index: 1;
}

.bg-images img.cloud-2 {
    position: absolute;
    top: 530px;
    right: 0;
    z-index: -1;
}

.bg-images img.ground {
    position: absolute;
    bottom: -300px;
    left: 0;
    width: 100vw;
    z-index: -1;
}

.g_cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 40px;
    margin-bottom: 160px;
}

@media (max-width: 921px) {
    .bg-images {
        display: none;
    }

    .g_cards {
        flex-direction: column;
    }

    .tableWrap {
        overflow-x: auto;
    }
}

th.table_card {
    /* width: 30%; */
    background-color: #EBF7F3 !important;
    color: #2DAC83 !important;
    font-size: 22px;
    text-align: center !important;
    border-radius: 10px;
    padding: 20px;
}

.g_card {
    width: 100%;
    max-width: 450px;
    text-align: center;
    padding: 60px 30px;
    background-color: rgba(45, 172, 131, .1);
    border-radius: 10px;
}

.g_card h4 span,
.g_card h3 {
    font-size: 32px;
    font-weight: bold;
    color: #2DAC83;
    line-height: 1.3;
}

.g_card h4 {
    font-size: 14px;
}

/* Utils */
.c_red {
    color: #E02B25;
}

.c_green {
    color: #2DAC83;
}

.amp-bg-colour--light-grey {
    position: relative;
    z-index: 1;
}

/* Steps */
.co2calc_step {
    display: none;
}

.co2calc_step.active {
    display: block;
}

.co2calc_step-1 {
    padding-bottom: 200px;
}

.tableWrap {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 30px;
}

.co2calc_section table {
    border-collapse: collapse;
    min-width: 820px;
    margin-bottom: 20px;
}

.co2calc_section table th,
.co2calc_section table td {
    background: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: none;
    color: #353535;
    border: 6px solid white;
    border-top: 0;
    border-bottom: 0;
    vertical-align: middle;
}

.co2calc_section table .noborder th,
.co2calc_section table .noborder td {
    border: 0;
}

.co2calc_section table .noborder {
    border: 0 solid white;
    border-top: 0;
    border-bottom: 0;
}

.co2calc_section table th.sub {
    font-weight: normal;
    padding-left: 40px;
}

.co2calc_section table th,
.co2calc_section table td {
    text-align: center;
    padding: 13px;
    width: 20%;
}

.co2calc_section table tr th:first-of-type {
    /* width: 270px; */
    text-align: left;
}

.co2calc_section table th.t_black {
    background: #4A4E51;
    color: white;
}

.co2calc_section table th.t_green {
    background: #2DAC83;
    color: white;
}

.co2calc_section table th.t_white {
    background: white;
    color: #4A4E51;
}

.co2calc_section table tr th:not(.t_black):not(.t_green):not(.t_white),
.co2calc_section table tr td {
    background: #F1F3F5;
}

.ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.results-only {
    display: none;
}

.results-only.active {
    display: unset;
}

.scaleUp {
    display: inline-block;
    transform: scale(1.5);
}
.c_red.cond {
    display: none;
}
.c_red.cond.active {
    display: inline;
}