@charset "utf-8";
/* CSS Document */
.radarStyle {
    /* Customize radar look here */
    --radar-size: 100%;
    --color-max: #976cf4;
    --color-user: #e65d6a;
    --grid-color: #e0e0e0;
    --axis-color: #cbd5e1;
    --radar-font: .85rem "Ericsson Hilda", Helvetica, Arial, sans-serif;
    --radar-label-line-height: 1.2; /* multiplier of font size */
    --radar-text-color: #242424;
    --radar-label-max-width: 100px;
    --radar-vertical-offset: -10px; /* moves radar up */
    --radar-radius-factor: 0.25; /* radar radius relative to container */
    --label-offset: 65%; /* distance between radar and labels */
    --offset-differentiated-connectivity-y: -10px;
    --offset-midband-spectrum-allocations-y: -10px;
    --offset-adoption-y: -10px;
    --offset-software-maturity-y: -20px;
    --offset-midband-population-coverage-y: 10px;
    --offset-network-industries-y: 10px;
}
.layout {
    margin: 0;
    color: #242424;
    display: flex;
    align-items: stretch;
}
.layout .left, .layout .right {}
.layout .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: #e0e0e0 solid 1px;
    padding: 0 1rem 0 0;
}
.leftContainer {
    position: relative;
}
.layout .left .block-cta {
    margin: 0;
}
.layout .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 0 1rem;
}
/* Calculator */
.layout .question {
    padding: 0 0 1rem;
    /*border-bottom: 1px solid #e0e0e0;*/
}
.layout .question:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
. /*layout .question:first-child {
    border-top: 1px solid #e0e0e0;
    padding: 1rem 0;
}
.layout .question p {
    margin-bottom: .5rem;
}*/

.layout .q-label {
    margin-bottom: .5rem;
}
.layout .stepper {
    /*display: grid;*/
    display: none;
    grid-template-columns: repeat(5, 1fr);
    border-radius: 3px;
    overflow: hidden;
}
.layout .step {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem .75rem;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #242424;
    cursor: pointer;
    font-size: .9rem;
    line-height: 1.143;
    user-select: none;
    transition: background 0.2s, color 0.2s;
}
.layout .step:hover {
    background: #e0e0e0;
    color: #242424;
}
.step + .step {
    border-left: none;
}
.layout .step.active {
    background: #1174e6;
    color: #FFFFFF;
    border: 1px solid #1174e6;
}
.layout .interpretation {
    margin-bottom: 0;
    color: #767676;
}
.layout .actions {
    display: none;
}
.layout .dropdownCTA {
    margin-top: 1rem;
}
.btn.primary.btnDisable {
    pointer-events: none;
    cursor: not-allowed;
    background: #f2f2f2;
    border: 1px solid #ccc;
    color: #CCC;
}
[data-expanded=true] .expandableblock-section-buttonopen {
    display: none
}
[data-expanded=false] .expandableblock-section-buttonclose {
    display: none
}
.expandableblock-section-content.nowVisible {
    display: block;
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    animation: expandableblock-show .5s
}
.expandableblock-section-content.nowVisible :focus-visible {
    outline-offset: -1px
}
/* Radar */
.radar-wrap {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto 1rem;
}
.radar-stage {
    width: 100%;
    height: 100%;
    position: relative;
}
.layout canvas#radar {
    width: 100%!important;
    height: 100%!important;
    display: block;
}
.layout .legend {
    display: flex;
    gap: 1rem;
    margin-top: 0;
    font-size: 0.85rem;
}
.layout .legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.layout .legend-swatch {
    width: 1rem;
    height: 1rem;
}
.legend-max .legend-swatch {
    background: #976cf4;
}
.legend-user .legend-swatch {
    background: #e65d6a;
}
.layout .cta {
    margin-top: .5rem;
    display: none;
}
/* Mobile dropdown fallback */
.layout .dropdown {
    display: inline-block;
    width: 100%;
    padding: .5rem 1.5rem .5rem .5rem;
    font-size: 1rem;
    line-height: 1.143;
    vertical-align: middle;
    border: solid 1px #242424;
    outline: none;
    box-shadow: none;
}
.layout .dropdown:focus, .expandableblock-section-headline:focus-visible {
    outline: none;
    box-shadow: none;
}
@media screen and (max-width: 1151px) {
    .radarStyle {
        --radar-radius-factor: 0.22; /* radar radius relative to container */
        --label-offset: 75%;
        --offset-differentiated-connectivity-y: 0px;
        --offset-midband-spectrum-allocations-y: 0px;
        --offset-adoption-y: 0px;
        --offset-software-maturity-y: -20px;
        --offset-midband-population-coverage-y: 0px;
        --offset-network-industries-y: 0px;
    }
    .radar-wrap {
        width: 100%;
        margin: 0 auto 1rem;
    }
    .layout {
        flex-direction: column;
    }
    .layout .left, .layout .right {
        width: 100%;
    }
    .layout .left {
        border-right: none;
        padding: 1rem 0;
    }
    .layout .right {
        padding: 1rem 0;
    }
    .layout .dropdown {
        display: inline-block;
    }
    .layout .stepper {
        display: none;
    }
    .radarStyle {
        --radar-font-size: .75rem;
    }
    .backToCalc {
        margin: 1rem 0 0.5rem;
    }
}
@media screen and (min-width: 1152px) {
    .backToCalc {
        display: none;
    }
    .radarStyle {
        --radar-font: 1rem "Ericsson Hilda", Helvetica, Arial, sans-serif;
        --radar-label-line-height: 1.4; /* multiplier of font size */
    }
    .radar-wrap {
        width: 100%;
        margin: 1rem auto;
    }
}
@media screen and (min-width: 1300px) {
    .radarStyle {
        --radar-label-max-width: 160px;
        --radar-radius-factor: 0.25; /* radar radius relative to container */
        --label-offset: 45%;
        --offset-midband-spectrum-allocations-y: 0px;
        --offset-midband-population-coverage-y: 0px;
        --offset-adoption-y: 0px;
        --offset-software-maturity-y: 0px;
        --offset-differentiated-connectivity-y: 0px;
        --offset-network-industries-y: 0px;
    }
    .radar-wrap {
        width: 90%;
        margin: 1rem auto;
    }
}
@media screen and (min-width: 1700px) {
    .radarStyle {
        --radar-label-max-width: 190px;
        --radar-radius-factor: 0.25; /* radar radius relative to container */
        --label-offset: 45%;
        --offset-midband-spectrum-allocations-y: 0px;
        --offset-midband-population-coverage-y: 0px;
        --offset-adoption-y: 0px;
        --offset-software-maturity-y: 0px;
        --offset-differentiated-connectivity-y: 0px;
        --offset-network-industries-y: 0px;
    }
    .radar-wrap {
        width: 90%;
        margin: 1rem auto;
    }
}