.cheque-info, .cheque-fields {
    width: 100%;
    background-color: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.07);
}
.cheque-info .payment {
    background-color: #eee;
    border-radius: 4px;
    padding: 10px 20px;
}
.cheque-info.cheque-calculator{
    margin: 20px auto;
    max-width: 30em;
}
.westaweb-output-wrapper, .westaweb-input-wrapper {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #9DABC5;
    margin-bottom: 20px;
}
.output-row, .input-row {
    padding: 4px 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    color: #23417D;
}
.cheque-product-calculator.westaweb-hidden {
    display: none;
}

.westaweb-heading {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
}
.westaweb-checkbox:checked,
.westaweb-checkbox:not(:checked) {
    display: none;
    width: 0;
    height: 0;
    visibility: hidden;
}

.westaweb-checkbox:checked + label,
.westaweb-checkbox:not(:checked) + label{
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    margin: 10px 1px;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.westaweb-checkbox:not(:checked) + label{
    color: rgb(35, 65, 125);
    background-color: #fff;
    border: 1px solid rgb(157, 171, 197);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.westaweb-checkbox:checked + label{
    border: 1px solid rgb(8, 161, 93);
    background-color: rgb(233, 248, 239);
    color: rgb(8, 161, 93);
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.2);
}
.westaweb-checkbox:not(:checked) + label:hover{
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.input-row .title,
.output-row .title{
    font-family: inherit;
    text-wrap: nowrap;
    margin: 0;
}

.cheque-custom-order-calculator .westaweb-input-wrapper .value {
    width: 50%;
}

.cheque-calculator input, .cheque-calculator select {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #9DABC5;
    width: 100%;
    font-family: inherit;
}

.rule-msg {
    color: rgb(161 8 8)
}