/**
 * Fields
 */

.PlatformCalculator__relations {
    max-width: 7em;
    margin-right: 0.3em;
    background-color: var(--cloudy);
}

.PlatformCalculator__field {
    margin-bottom: 1.5em;
}

.PlatformCalculator__label {
    display: block;
    margin-bottom: 0.5em;
    font-family: var(--fam-headings);
    font-weight: normal;
    font-size: var(--size-medium);
    color: var(--indigo);
}

@media screen and (min-width: 740px) {
    .PlatformCalculator__label {
        font-size: var(--size-large);
    }
}

.PlatformCalculator__freeAddOns {
    display: none;
    margin-right: 0.3em;
}

.PlatformCalculator__freeAddOns--visible {
    display: inline-block;
}

/**
 * Solutions
 */

.PlatformCalculator .PlatformCalculator__solutionItem {
    position: relative;
    padding: 0;
}

.PlatformCalculator.PlatformCalculator .PlatformCalculator__solution {
    position: absolute;
    top: 0.8em;
    left: 0.7em;
    margin: 0;
}

.PlatformCalculator__solutionLabel {
    border: 1px solid var(--darker-200);
    border-radius: 5px;
    padding: 0.5em 0.9em 0.5em 1.8em;
}

.PlatformCalculator__solution:checked + .PlatformCalculator__solutionLabel {
    border-color: var(--sapphire);
    background-color: var(--cloudy);
}

@media screen and (min-width: 460px) {
    .PlatformCalculator__solutions {
        display: flex;
        flex-wrap: wrap;
    }

    .PlatformCalculator .PlatformCalculator__solutionItem {
        margin: 0 0.5em 0.5em 0;
    }
}

/**
 * Non-profit
 */

.PlatformCalculator__field--nonProfit {
    margin-top: -1.5em;
}

/**
 * Lists
 */

.PlatformCalculator__lists {
    display: flex;
}

.PlatformCalculator__included,
.PlatformCalculator__options {
    width: 50%;
}

.PlatformCalculator__included {
    margin-right: 30px;
}

.PlatformCalculator__solutions,
.PlatformCalculator__addOns {
    margin: 0;
    padding: 0;
    list-style: none;
}

.PlatformCalculator__addOnItem,
.PlatformCalculator .singlecheckbox .fieldinput {
    position: relative;
    padding-left: 1.25em;
    line-height: 1.5;
}

.PlatformCalculator__addOn,
.PlatformCalculator__nonProfit {
    position: absolute;
    margin-left: -1.25em;
    margin-top: .3em;
}

/**
 * Check icons
 */

.PlatformCalculator-u--check {
    position: relative;
    list-style: none;
    margin-left: -1em;
    padding-left: 1.5em;
}

@media screen and (min-width: 740px) {
    .PlatformCalculator-u--check {
        font-weight: bold;
    }
}

.PlatformCalculator-u--check::before {
    content: '\2714';
    position: absolute;
    left: 0;
    font-family: var(--fam-icons);
    color: var(--papaya);
    margin-right: 0.3em;
}

.PlatformCalculator__defaultProductItem--addOn {
    color: var(--sapphire);
}

/**
 * Visibility
 */

.PlatformCalculator__addOnItem,
.PlatformCalculator__defaultProductItem {
    display: none;
}

.PlatformCalculator__addOnItem--visible {
    display: block;
}

.PlatformCalculator__defaultProductItem--visible {
    display: list-item;
}
