.pis--calculator {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    position: relative;
    background: #F7F7F7;
    -webkit-box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 21%);
    -moz-box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 21%);
    box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 21%);
    color: #000;
}

.pis--switched {
    display: flex;
    margin-top: 0px;
}

.pis--switched input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.pis--switched label {
    width: 100px;
    background: #fff;
    font-size: 14px;
    font-weight: 100;
    text-align: center;
    text-shadow: none;
    padding: 6px 14px;
    border: 0px solid rgb(236, 236, 236, 0.25);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
    color: #908f8f;
    flex: 1;
    width: auto;
}

.pis--switched input:checked+label {
    background: #B70004;
    color: #fff;
    box-shadow: 1px 1px 5px rgb(0 0 0 / 20%);
}

.pis--box {
    flex: 1;
    margin: 0px 10px 0px 5px;
}

.pis--title {
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 15px;
    padding-bottom: 20px;
    color: #B70004;
}

.pis--title span {
    color: #000;
}

.pis--row-bordered {
    border-bottom: 1px solid rgb(255 255 255 / 37%);
}

.pis--row {
    display: block;
}

.pis--row-center {
    align-items: center;
}

.pis--col {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pis--col>div {
    flex: 1;
    margin: 10px;
}

.pis--name {
    text-align: left;
    margin-bottom: 10px;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
}

.pis--name span {
    font-size: 12px;
    line-height: 14px;
    display: block;
    margin-top: 5px;
}

.pis--calculator input[type="text"] {
    text-align: center;
    font-size: 15px;
    color: #404040;
    padding: 5px 5px 5px 5px;
    width: 100%;
    outline: none;
    background: #fff;
    border-radius: 2px;
    border: 1px solid #fff;
    margin: 0 auto;
    font-weight: 100;
    text-align: left;
    padding-left: 10px;
}

.pis--col.pis--col-result {
    border-radius: 3px;
    background: #ffcccb;
    box-shadow: 1px 1px 8px 1px rgb(0 0 0 / 30%);
    color: #000;
    text-align: center;
    padding: 5px 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pis--col.pis--col-result.pis--col-yellow {
    background: #FFFFE0;
}

.pis--col.pis--col-result.pis--col-green {
    background: #90ee90;
}

.pis--col.pis--col-result.pis--col-orange {
    background: #efaaa9;
}

.pis--col.pis--col-result .pis--name {
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
}

.pis--result {
    font-weight: bold;
    font-size: 25px;
    text-align: right;
    display: block;
    padding-right: 60px;
}

@media all and (max-width:780px) {
    .pis--wrap {
        display: block;
    }
    .pis--result {
        padding-right: 0px;
    }
}