#ambio-klorkalkulator {
    blockquote {
        margin: 0;
        padding-top: 15px;
        padding-bottom: 15px;
        border-left: 15px solid #ef7d00;
        padding-inline: 30px;
        font-size: 16px;
        line-height: 1.5;
    }

    h2 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 0;
    }

    p.description {
        margin-top: 0;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .calculators {
        .calculator {
            border-top: 1px solid #ccc;

            .calculator-content {
                display: none;
            }

            &.active {
                .calculator-content {
                    display: block;
                    border-top: 20px solid #d9d9d9;
                }

                .top svg {
                    transform: rotate(-90deg);
                    color: #ef7d00;
                }
            }

            .top {
                padding-top: 20px;
                padding-bottom: 20px;
                display: flex;
                align-items: center;
                gap: 10px;
                cursor: pointer;

                svg {
                    width: 9px;
                    height: 19px;
                    transform: rotate(180deg);
                    color: #d9d9d9;
                }

                span {
                    margin: 0;
                    font-size: 18px;
                }
            }

            .body {
                padding: 15px 30px 20px;
                display: flex;
                flex-direction: column;
                gap: 20px;
                background-color: #f2f2f2;
            }

            .footer {
                display: flex;
                background-color: #d9d9d9;
                flex-direction: column;
                gap: 20px;
                padding: 15px 30px 20px;

                .input-row {
                    label {
                        flex: 1;
                        text-align: right;
                        font-weight: 700;
                    }

                    div {
                        width: 275px;
                        display: flex;
                        align-items: center;

                        input {
                            flex: 1;
                            height: 40px;
                            padding-left: 15px;
                            border: 1px solid #ef7d00;
                            width: 100%;
                        }

                        span {
                            width: 70px;
                            height: 40px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            padding-left: 15px;
                            padding-right: 15px;
                            background-color: #ef7d00;
                        }
                    }
                }

                @media all and (max-width: 768px) {
                    flex-direction: column;
                    align-items: flex-start;

                    .input-row div {
                        width: 100%;
                        gap: 0;
                        input {
                            width: 100%;
                        }
                    }
                }
            }
        }

        h3 {
            font-size: 18px;
        }

        .input-row {
            display: flex;
            align-items: center;
            gap: 20px;

            label {
                flex: 1;
                text-align: right;
            }

            div {
                width: 275px;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            input,
            select {
                width: 200px;
                height: 40px;
                padding-left: 15px;
                border: 0;
                background: #fff;
            }

            span {
                width: 50px;
                text-align: left;
            }

            @media all and (max-width: 768px) {
                flex-direction: column;
                align-items: flex-start;

                label {
                    text-align: left;
                }
            }
        }
    }

    table {
        width: 100%;
        border-collapse: collapse;

        label {
            font-weight: normal;

            input {
                margin-bottom: 0 !important;
            }
        }

        select,
        input[type='number'],
        input[type='text'] {
            text-align: right;
            width: 6em !important;
            line-height: 1.3 !important;
            padding: 5px !important;
            height: auto !important;
            background: #fff;
            margin-bottom: 0 !important;
            border: 2px solid #000 !important;
            color: #000 !important;
            box-sizing: content-box;
        }

        select[name='sjovann'] {
            width: 12em !important;
        }

        span[data-field-value],
        span[data-calculated-field] {
            /*font-weight: bold;*/
            background-color: #BBD1FF;
            padding: 0 2px;
        }

        table td {
            padding: 3px 0;

            &.unit {
                padding-left: 3px;
            }

            &.value {
                background-color: #BBD1FF;
                padding-right: 5px;
            }
        }
    }

    .content {
        background: #f1f1f1;
        padding: 20px;
    }

    hr {
        border-color: #ccc;
    }
}