/**
 *
 */
.xcalc {

}

/**
 * Form
 */
.xcc-form {

}

/**
 * Fields
 */
.xcc-field {
    margin: 1.5rem 0;
}

.xcc-field__title {
}

.xcc-field__description {
}

.xcc-field__values {
    margin: 1rem 0;
}

/**
 * Field / msProducts
 */
.xcc-field_msproducts {

}

.xcc-field_msproducts .xcc-field__values {
    display: flex;
    flex-flow: row wrap;
    justify-content: start;
}

.xcc-field_msproducts .xcc-field__value {
    display: block;
    flex-basis: 25%;
    max-width: 25%;
}

.xcc-field_msproducts .xcc-field__label {
    display: flex;
    flex-flow: column;
    width: 100%;
    font-weight: 400;
    justify-content: start;
    align-items: start;
}

.xcc-field_msproducts .xcc-field__value img {
    border: 4px solid transparent;
}

.xcc-field_msproducts .xcc-field__value input[type="radio"] {
    display: none;
}

.xcc-field_msproducts .xcc-field__value input[type="radio"]:checked + div > img {
    border-color: #d43f3a;
}

/**
 * Errors
 */
.xcc-error,
.xcc-field__error {
    display: none;
    color: brown;
}

/**
 * Results
 */
.xcc-results {
    display: none;
}

.xcc-results__table {
    width: 100%;
}

.xcc-results__table tr {
}

.xcc-results__table th,
.xcc-results__table td {
    border-bottom: 1px solid #dfdfdf;
}

.xcc-results__table th {
    padding: 1.7rem 0;
    color: #000;
    font-size: 1.8em;
    font-weight: normal;
    line-height: 1.4em;
    text-align: left;
}

.xcc-results__table td {
    padding: .8rem 0;
}

.xcc-results__table td:nth-child(1) {
    width: 46%;
    padding-right: 1.5rem;
}

.xcc-results__table td:nth-child(2) {
    width: 12%;
    text-align: center;
}

.xcc-results__table td:nth-child(3) {
    width: 42%;
    padding-left: 1.5rem;
    text-align: right;
}

.xcc-results__table tfoot {
    padding: 1.7rem 0;
    color: #000;
    font-size: 2em;
    font-weight: bold;
    line-height: 1.4em;
    text-align: left;
}

.xcc-results__table tfoot tr {
}

.xcc-results__table tfoot tr:last-child td {
    border-bottom: 0;
}

.xcc-results__table tfoot td {
}

.xcc-results__table tfoot td:nth-child(1) {
    width: 50%;
    padding-right: 1.5rem;
}

.xcc-results__table tfoot td:nth-child(2) {
    width: 50%;
    padding-left: 1.5rem;
    text-align: right;
}

/**
 * Other
 */

/**
 * Messages
 */
@import url('../vendor/jquery.jgrowl.min.css');
/*div.jGrowl > .ui-state-highlight {
    background: inherit;
    color: inherit;
    border: inherit;
}*/
.xcc-message-success {
    background-color: green !important;
}

.xcc-message-error {
    background-color: brown !important;
}

.xcc-message-info {
    background-color: dodgerblue !important;
}