.coverage--calculator {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    position: relative;
    background: #f7f7f7;
    -webkit-box-shadow: 0 0 4px 0 rgb(0 0 0 / 21%);
    -moz-box-shadow: 0 0 4px 0 rgb(0 0 0 / 21%);
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 21%);
    color: #000
}

.calculator--wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative
}

.calculator--box {
    flex: 1;
    margin: 0 10px 0 5px
}

.calculator--wrap .calculator--box:nth-child(2) {
    position: -webkit-sticky;
    position: sticky;
    top: 0
}

.calculator--title {
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 15px;
    padding-bottom: 20px;
    color: #b70004
}

.calculator--title span {
    color: #000
}

.calculator--subtitle {
    text-align: center;
    font-size: 17px
}

.calculator--sub {
    text-align: center;
    font-size: 13px
}

.calculator--info {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin: 10px 0;
    font-size: 16px
}

.calculator--pre {
    text-decoration: underline;
    font-size: 14px;
    font-weight: 700
}

.calculator--row-bordered {
    border-bottom: 1px solid rgb(255 255 255 / 37%)
}

.calculator--row {
    display: block
}

.calculator--row-center {
    align-items: center
}

.calculator--col {
    flex: 1;
    margin: 0;
    padding: 5px;
    margin: 5px 0;
    padding: 5px 0
}

.calculator--name {
    text-align: left;
    margin-bottom: 10px;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px
}

.calculator--name span {
    font-size: 12px;
    line-height: 14px;
    display: block;
    margin-top: 5px
}

.coverage--calculator input[type=text] {
    text-align: center;
    font-size: 15px;
    color: #404040;
    padding: 5px 5px 5px 5px;
    width: 100%;
    outline: 0;
    background: #fff;
    border-radius: 2px;
    border: 1px solid #fff;
    margin: 0 auto;
    font-weight: 100;
    text-align: left;
    padding-left: 10px
}

.calculator--col.calculator--col-result {
    border-radius: 3px;
    background: #ffcccb;
    box-shadow: 1px 1px 8px 1px rgb(0 0 0 / 30%);
    color: #000;
    text-align: center;
    padding: 15px 10px;
    margin-top: 12px;
    margin-bottom: 10px
}

.calculator--col.calculator--col-result.calculator--col-yellow {
    background: #ffffe0
}

.calculator--col.calculator--col-result.calculator--col-green {
    background: #90ee90
}

.calculator--col.calculator--col-result .calculator--name {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    font-size: 16px;
    line-height: 18px
}

.calculator--result {
    font-weight: 700;
    font-size: 25px
}

.calculator-disc {
    text-align: center;
    font-size: 12px
}

.calculator-disc a {
    color: #000
}

.noUi-horizontal {
    height: 4px;
    margin-top: 35px;
    margin-bottom: 5px
}

.noUi-target {
    background: #e0e0e0;
    border-radius: 0;
    border: 0 solid #ece7e7;
    box-shadow: none
}

.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 50%;
    background: 0 0;
    border: 0;
    color: #000;
    font-size: 20px
}

.noUi-handle:after,
.noUi-handle:before {
    content: "";
    display: block;
    position: absolute;
    height: 6px;
    width: 1px;
    background: rgb(244 244 244 / 60%);
    left: 5px;
    top: 4px
}

.noUi-handle:after {
    left: 8px
}

.noUi-connect {
    box-shadow: none;
    background: #e0e0e0;
    transition: background 450ms ease 0s
}

.noUi-horizontal .noUi-handle {
    width: 18px;
    height: 18px;
    left: -10px;
    top: -7px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #b70004;
    color: #b70004;
    cursor: pointer;
    padding-top: 7px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: inset 0 0 1px #fff, 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb
}

@media all and (max-width:780px) {
    .calculator--wrap {
        display: block
    }
}