/* Blue */
/* Orange */
/* Green */
/* Greyish Blue */
.calc {
    position: relative;
    display: inline-block;
    width: 50%;
    margin: 5px 0;
    background: inherit;
}

.calc-trigger {
    display: inline-block;
    padding: 6px 0;
}

.calc:before {
    content: '\f277';
    position: absolute;
    left: -999em;
    font-family: valys-icons;
    color: #8CB7C7;
    font-size: 10px;
    line-height: 33px;
}

@media only screen and (min-width: 62.5em) {
    .calc:before {
        left: 8px;
    }
}

.calc__input {
    width: 100%;
    color: rgba(0, 0, 0, 0.38);
    border-color: #B9E8FF;
    text-align: center;
    font-size: 10px;
}

@media only screen and (min-width: 62.5em) {
    .calc__input.fld-input {
        text-align: center;
    }
}

.calc__button {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
}

.calc-form .btn {
    border-color: #fff;
    font-size: 10px;
    font-weight: bold;
    font-family: Verdana;
}

.calc + .calc {
    position: relative;
}

.calc + .calc:before {
    content: '\f017';
}

@media only screen and (min-width: 62.5em) {
    .calc + .calc:before {
        left: 18px;
        /* 10 extra pixels for the padding that's on this element */
    }
}

.calc + .calc:after {
    content: ":";
    position: absolute;
    left: -3px;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
}

@media only screen and (max-width: 62.4375em) {
    .calc {
        width: 100%;
    }

    .calc.lt-gutter-right,
    .calc.lt-gutter-left {
        padding-right: 0;
        padding-left: 0;
    }

    .calc + .calc:after {
        display: none;
    }
}

/*# sourceMappingURL=calc.css.map */
