.antifrogen-calculator {
    margin-top: 0;
}

.calculator-container {
    width: 100%;
}

.calculator-step {
    display: none;
    padding: 10px;
    margin-bottom: 20px;
}

.calculator-step.selected {
    display: block;
}

.calculator-step.step1 .product-selector {
    padding: 0;
}

.calculator-step.step1 .product-selector ul {
    list-style: none;
    font-family: "Gotham SSm A", "Gotham SSm B", Arial, Helvetica, sans-serif;
}

.calculator-step.step1 .product-selector ul li {
    margin: 10px 0;
}

.calculator-step.step1 .product-selector ul li a {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: black;
    font-weight: 400;
}

.calculator-step.step1 .product-selector ul li a div.product-check {
    width: 28px;
    height: 28px;
    border: 1px solid #aaaaaa;
    background-color: #eeeeee;
    border-radius: 3px;
    margin-right: 20px;
}

.calculator-step.step1 .product-selector ul li a div.product-check.selected {
    /*background-image:url("/~/media/Images/Business-Units/ICS/Heat-Transfer-Fluids/New-Antifrogen-Calculator/checkmark.png");*/
    background-image: url("../img/checkmark.png");
    background-size: 28px;
}

.calculator-step.step1 .product-selector ul li a div:nth-of-type(2) {
    flex-grow: 1;
}

.yellow {
    background-color: #fde480 !important;
    border-color: #fcd84a !important;
}

.dark-blue {
    background-color: #91bad1 !important;
    border-color: #62a6cc !important;
}

.beige {
    background-color: #e8e1ae !important;
    border-color: #e8dc81 !important;
}

.gray {
    background-color: #d8d8d8 !important;
    border-color: #dddddd !important;
}

.brick {
    background-color: #f1817d !important;
    border-color: #f0514b !important;
}

.light-blue {
    background-color: #73c1e4 !important;
    border-color: #41b1e3 !important;
}

.radios-wrapper {
    display: flex;
    flex-direction: column;
}

.radios-wrapper .content-wrapper,.checkboxes-wrapper .content-wrapper, .content-wrapper.form-row {
    padding: 0;
    grid-area:unset;
    grid-column: unset;
}

.radio-wrapper INPUT[type=radio], .checkbox-wrapper INPUT[type=checkbox] {
    display: none;
}

.radio-wrapper INPUT[type=radio] + LABEL .icon, .checkbox-wrapper INPUT[type=checkbox] + LABEL .icon {
    margin-right: -36px;
    width: 24px;
    height: 42px;
    background-repeat: no-repeat;
    background-position: 50%;
    cursor: pointer;
}

.radio-wrapper INPUT[type=radio] + LABEL SPAN.icon, .radio-wrapper LABEL SPAN.text, .checkbox-wrapper INPUT[type=checkbox] + LABEL SPAN.icon, .checkbox-wrapper LABEL SPAN.text {
    float: left;
}

.radio-wrapper INPUT[type=radio] + LABEL .icon {
    background-image: url(../img/button-radio-off.png);
}

.radio-wrapper INPUT[type=radio]:checked + LABEL .icon {
    background-image: url(../img/button-radio-on.png);
}

.radio-wrapper LABEL SPAN.text, .checkbox-wrapper LABEL SPAN.text {
    margin-left: 36px;
    padding-top: 10px;
    float: left;
}

.checkbox-wrapper INPUT[type=checkbox] + LABEL .icon {
    background-image: url(../img/button-checkbox-off.png);
}
.checkbox-wrapper INPUT[type=checkbox]:checked + LABEL .icon {
    background-image: url(../img/button-checkbox-on.png);
}

.input-wrapper .field {
    position: relative;
    height: 42px;
    width: auto;
    min-width: 60px;
    font-family: 'Gotham SSm A',Arial,sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #323232;
    white-space: nowrap;
    background-color: #fcfcfc;
    box-shadow: 1px 1px 1px 1px rgb(0 0 0 / 20%) inset;
    border-radius: 3px;
}

.input-wrapper .field > DIV {
    margin-left: 10px;
    margin-right: 25px;
}

.input-wrapper .field > DIV > .icon.validate {
    position: absolute;
    top: 6px;
    right: 0;
    width: 25px;
    height: 30px;
    background-repeat: no-repeat;
}

.input-wrapper .field > DIV > INPUT[type=text], .input-wrapper .field > DIV > INPUT[type=password], .input-wrapper .field > DIV > DIV > INPUT[type=text], .input-wrapper .field > DIV > INPUT[type=search], .input-wrapper .field > DIV > DIV > INPUT[type=search] {
    position: relative;
    float: left;
    width: 100%;
    margin-top: 8px;
    padding: 0;
    height: 25px;
    line-height: 20px;
    font-family: 'Gotham SSm A','Gotham SSm B',sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #707070;
    border: none;
    background-color: #fcfcfc;
}

.button-wrapper {
    width: 100%;
    display: flex;
}

.step1 .button-wrapper {
    justify-content: flex-end;
}

.spacer {
    flex-grow: 1;
}

.button-wrapper .disabled {
    color: #fff;
    text-shadow: 1px 1px 1px #646464 !important;
    border: 1px solid #5a5a5a !important;
    background-color: #8f8f8f !important;
    background-image: -webkit-linear-gradient(top, rgba(143, 143, 143, 1) 0, rgba(118, 118, 118, 1) 100%) !important;
    background-image: -ms-linear-gradient(top, rgba(143, 143, 143, 1) 0, rgba(118, 118, 118, 1) 100%) !important;
}

span.product-name {
    padding: 5px;
    border-radius: 5px;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-row > div:nth-of-type(1) {
    width: 350px;
}

.form-row .field {
    display: flex;
    flex-direction: column;
}

.form-row .field.small {
    width: 100px;
    margin: 0 20px 0px 20px;
}

.form-row > div {
    margin-right: 20px;
}

.info {
    width: 24px;
    height: 24px;
    /*background-image: url("/~/media/Images/Business-Units/ICS/Heat-Transfer-Fluids/New-Antifrogen-Calculator/info.png");*/
    background-image: url("../img/info.png");
}

.input-wrapper .field > DIV > INPUT[type="number"],
.input-wrapper .field > DIV > DIV > INPUT[type="number"] {
    position: relative;
    float: left;
    width: 100%;
    margin-top: 8px;
    padding: 0;
    height: 25px;
    line-height: 20px;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #707070;
    border: none;
    background-color: #fcfcfc;
}

.results-container {
    margin-top: 30px;
    display: none;
}

.antifrogen-calculator table th {
    text-align: center;
}
.antifrogen-calculator table tr td {
    vertical-align: middle;
    text-align: center;
}

#brix-results table th {
    width: 30%;
}
#brix-results table th:nth-of-type(1) {
    width: 10%;
}

.antifrogen-calculator table tr td:nth-of-type(1) {
    width: 30px;
    text-align: center;
}

.button-wrapper .checkboxes-wrapper {
    margin-right: 20px;
}

@media all and (max-width: 480px) {
    .antifrogen-calculator table * {
        font-size: 10px;
        padding: 0;
    }

    .antifrogen-calculator .form-row {
        flex-wrap: wrap;
    }

    .antifrogen-calculator .form-row > .field {
        margin-left: 0;
    }

    .antifrogen-calculator .button-wrapper {
        flex-direction: column-reverse;
    }

    .antifrogen-calculator .button-wrapper > .button {
        margin: 10px 0;
    }

    .antifrogen-calculator .button-wrapper > .spacer {
        display: none;
    }
}

@media print {
    .checkboxes-wrapper,
    input[type="checkbox"] {
        display: none !important;
    }
}

.result-label {
    display: none;
}

.chc-results {
    margin-top: 20px;
    display: none;
}

.antifrogen-calculator span {
    white-space: nowrap;
}
