.pc-widget {
    font-family: "Open Sans",sans-serif;
    max-width: 500px;
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    color: #44586c;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    -webkit-box-shadow: 5px 7px 12px 0px rgba(82, 82, 82, 0.5);
    -moz-box-shadow: 5px 7px 12px 0px rgba(82, 82, 82, 0.5);
    box-shadow: 5px 7px 12px 0px rgba(82, 82, 82, 0.5);
}

.pc-widget-header-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: bold;
}

.pc-widget-body-field {
    margin-bottom: 15px;
}

.pc-widget-body-field-label {
    display: block;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: bold;
}

.pc-widget-body-field-element {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    width: 100%;
}

.pc-widget-body-field-element input {
    width: 100%;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pc-widget-body-field-element select {
    width: 100%;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: none;
}

.pc-widget-body-field-element input.pc-input-error {
    border: 1px solid red;
}

.pc-widget-body-field-element input.pc-input-error + span {
    border: 1px solid red;
    border-left: none;
}

.pc-widget-body-field-element-shared input {
    width: calc(100% - 50px);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pc-widget-body-field-element-shared span {
    background: #169fda;
    width: 50px;
    color: #fff;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -mox-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.pc-widget-body-field-element .pc-field-error {
    color: red;
    font-style: italic;
    font-size: 14px;
    margin-top: 4px;
}

.pc-widget-body-field-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 18px;
    line-height: 1.4;
    background: #F38422;
    color: #fff;
    font-weight: bold;
    width: 100%;
    text-shadow: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    padding: 15px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -mox-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.pc-widget-body-field-button .inner-image {
    margin-left: 8px;
    background-image: url("../images/button_next_white.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    display: inline-block;
    background-position: right center;
}

.pc-widget-results {
    position: absolute;
    left: 1px;
    width: calc(100% - 2px);
    height: 100%;
    bottom: -600px;
    z-index: 3;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    font-weight: bold;
    font-size: 22px;
    -moz-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    -ms-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

.pc-widget-results-body-row {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -font-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -mox-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background: #169fda;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 10px;
}

.pc-widget-results-body-row-label {
    margin-right: 5px;
}

.pc-widget-results-body-row-value {
    background: #F38422;
    padding: 5px 10px;
    border-radius: 8px;
}

.pc-widget-results-body-form-hidden {
    display: none;
}

.pc-widget-results-body-form-submit {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    box-shadow: none;
    text-shadow: none;
    color: #fff;
    background: #F38422;
    border-radius: 8px;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    font-size: 22px;
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -mox-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
}

.pc-widget-results-body-form-submit .inner-image {
    margin-left: 8px;
    background-image: url("../images/button_next_white.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    display: inline-block;
    background-position: right center;
}

.pc-widget.pc-widget-active .pc-widget-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
}

.pc-widget.pc-widget-active .pc-widget-results {
    bottom: 1px;
}

/*# sourceMappingURL=price-calculator.css.map */
