/*!
Theme Name: Serviceflow
Author: smart_creation
Author URI: https://smartcreation.pl/
Tags: Blank, HTML5, CSS3, SCSS
Text Domain: Serviceflow
Version: 1.4.3
License: MIT
License URI: http://opensource.org/licenses/mit-license.php
*/
html {
    font-size: 14px;
}

@media screen and (min-width: 220px) {
    html {
        font-size: calc(14px + 2 * ((100vw - 220px) / 980));
    }
}

@media screen and (min-width: 1200px) {
    html {
        font-size: 16px;
    }
}

/**
 * Set up a decent box model on the root element
 */
html {
    box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
    box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
    color: #e50050;
    text-decoration: none;
}

a:hover, a:active, a:focus {
    color: #222222;
    text-decoration: underline;
}

@font-face {
    font-family: "Source Sans Pro";
    src: local("SourceSansPro-Light"), url("../../fonts/SourceSansPro-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Source Sans Pro";
    src: local("SourceSansPro-Regular"), url("../../fonts/SourceSansPro-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Source Sans Pro";
    src: local("SourceSansPro-SemiBold"), url("../../fonts/SourceSansPro-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Source Sans Pro";
    src: local("SourceSansPro-Bold"), url("../../fonts/SourceSansPro-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Source Sans Pro";
    src: local("SourceSansPro-Black"), url("../../fonts/SourceSansPro-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url("../../fonts/OpenSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url("../../fonts/OpenSans-SemiBold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/**
 * Basic typography style for copy text
 */
body {
    font-family: "Source Sans Pro", sans-serif !important;
    direction: ltr;
    font-size: 12px;
}

/**
 * Overwrite main container
 */
.bs5-container {
    max-width: 800px !important;
}

/**
 * Clear inner floats
 */
.clearfix::after {
    clear: both;
    content: '';
    display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
    overflow: hidden;
    padding: 0;
    /* 1 */
    text-indent: 101%;
    white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.row__half {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
}

.pop-up-form {
    position: fixed;
    background-color: rgba(59, 59, 59, 0.95);
    opacity: 0;
    visibility: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pop-up-form.active {
    visibility: visible;
    opacity: 1;
}

.pop-up-form__wrapp {
    background-color: #fff;
    border-radius: 20px;
}

.pop-up-form__header {
    padding: 1.5rem;
}

.pop-up-form__header--border {
    border-bottom: 1px solid #F5F5F5;
}

@media (min-width: 575px) {
    .pop-up-form__header {
        padding: 1.75rem 3.875rem;
    }
}

.pop-up-form__title {
    color: #3B3B3B;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0;
    text-align: left;
    padding: 0 !important;
    margin: 0 !important;
}

.pop-up-form__body {
    padding: 0;
    padding: 1.5rem;
}

@media (min-width: 575px) {
    .pop-up-form__body {
        padding: 1.75rem 3.875rem 3.125rem;
    }
}

@media (min-width: 575px) {
    .pop-up-form__body--space {
        padding: 5.125rem 1.5rem;
    }
}

.pop-up-form__footer {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

@media (min-width: 575px) {
    .pop-up-form__footer {
        padding: 0 3.875rem 1.75rem 3.875rem;
    }
}

.pop-up-form__content {
    font-family: "Open Sans", sans-serif !important;
    color: #3B3B3B;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 0;
    text-align: left;
    line-height: 1.4;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.pop-up-form__content--size-large {
    font-size: 1.5rem;
    font-weight: 500;
}

.pop-up-form__content--size-large span {
    color: #0077C0;
}

.pop-up-form__content--theme-red span {
    color: #00b140;
}

.pop-up-form__content--font {
    font-family: inherit !important;
    font-weight: 600;
}

.popup-rodo .pop-up-form__content {
    overflow: auto;
    height: calc(100vh - 350px);
}

.pop-up-form__icon {
    font-size: 3rem;
    color: #0077C0;
}

.pop-up-form__icon--theme-red {
    color: #00b140;
}

.pop-up-form__btn {
    padding: 14px 64px 14px 30px !important;
}

.pop-up-form__btn .glyphicon {
    right: 0;
    left: auto !important;
    width: 48px !important;
    border-radius: 25px !important;
    font-size: 1.125rem !important;
}

.pop-up-form__btn .text {
    font-size: 1rem;
}

.pop-up-form__btn:before {
    left: auto !important;
    right: 0;
    width: 48px !important;
}

.pop-up-form__btn:hover:before {
    width: 100% !important;
}

.bs5-badge {
    padding: 0.25rem;
    color: #fff;
}

.bs5-badge i {
    padding-right: 0;
    font-size: 0.75rem;
    color: inherit;
}

.bs5-badge span {
    font-size: 0.625rem;
    font-weight: 600;
    color: inherit;
    display: block;
    padding-left: 0.375rem;
    padding-right: 0.25rem;
    line-height: 1;
}

.bs5-bg-danger {
    background-color: #d71921 !important;
}

.form__pagination {
    color: #707070;
    font-family: "Open Sans", sans-serif !important;
    font-size: 1rem;
    font-weight: 300;
    text-align: left;
    line-height: 1;
    transition: all 300ms ease;
}

.form__dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.form__dots .form__dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #ECECEC;
    margin-right: 0.75rem;
    transition: all 300ms ease;
}

.form__dots .form__dot.active {
    background-color: #0077C0;
}

.form__check {
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    margin-bottom: 1.125rem;
    position: relative;
}

.form__check input[type="radio"] {
    display: block;
    margin: 0 auto;
    appearance: none;
    border: 2px solid #CDCDCD;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    height: 18px;
    margin: 2px;
    padding: 2px;
    width: 18px;
    background-image: none;
    background-color: #CDCDCD;
}

.form__check input[type="radio"]:checked {
    border-color: #0077C0;
    background-color: #0077C0;
    background-clip: content-box;
    background-image: none;
    outline: none;
    box-shadow: none;
}

.form__check input[type="radio"]:focus, .form__check input[type="radio"]:hover {
    outline: none;
    box-shadow: none;
}

.form__check--themes-white input[type="radio"] {
    background-color: #fff;
}

.form__check label {
    color: #3B3B3B;
    font-family: "Open Sans", sans-serif !important;
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.2;
    margin-left: 0.5rem;
    margin-bottom: 0;
}

.form__check label span {
    font-weight: 300;
}

.form__check input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}

.form__check input[type="checkbox"] + label {
    /*position: relative;*/
    font-family: "Open Sans", sans-serif !important;
    padding-left: 2.375rem;
    margin-left: 0;
    cursor: pointer;
}

.form__check input[type="checkbox"] + label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #0077C0;
    background-color: #F5F5F5;
    border-radius: 50%;
    outline: none;
    box-shadow: none;
}

.form__check input[type="checkbox"] + label:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border-radius: 50%;
    outline: none;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms ease;
    font-family: 'Serviceflow_icon' !important;
    color: #fff;
    transform: rotate(90deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.form__check input[type="checkbox"]:checked + label:after {
    visibility: visible;
    opacity: 1;
    content: "\e956";
}

.form__check input[type="checkbox"]:checked + label:before {
    background-color: #0077C0;
}

.form__label {
    color: #3B3B3B;
    font-family: "Open Sans", sans-serif !important;
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0.25rem;
    padding-left: 1.375rem;
    line-height: 1;
    display: block;
}

.form__label--small {
    font-size: 0.75rem;
}

.form__control {
    font-size: 0.75rem;
    font-family: "Open Sans", sans-serif !important;
    line-height: 1.4;
    color: #313131;
    font-weight: 400;
    border: 1px solid #F5F5F5;
    border-radius: 20px;
    background-color: #fff;
    padding: 0.625rem 1.375rem;
    height: auto;
    box-shadow: none;
    outline: 0;
    transition: all 300ms ease;
    transition: none;
}

.form__control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #707070;
}

.form__control::-moz-placeholder {
    /* Firefox 19+ */
    color: #707070;
}

.form__control:-ms-input-placeholder {
    /* IE 10+ */
    color: #707070;
}

.form__control:-moz-placeholder {
    /* Firefox 18- */
    color: #707070;
}

.form__control:hover, .form__control:focus {
    border-color: #313131;
    outline: 0;
    box-shadow: none !important;
    background-color: #fff;
}

@media (min-width: 1400px) {
    .form__control--height-100 {
        height: calc(100% - 1.25rem);
    }
}

.form__control--height-row {
    min-height: 7.25rem;
}

.form__control--medium-size {
    font-size: 0.875rem;
}

.form__control--border-dark {
    border-color: #ECECEC;
}

.form__control--border-left {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.form__control--required {
    color: #00b140 !important;
}

.form__control--border-required {
    border-color: #00b140 !important;
}

.form__control--border-important {
    border-color: #00b140 !important;
}

.form__select {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #313131;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 400;
    border: 1px solid #F5F5F5;
    border-radius: 20px;
    background-color: #fff;
    padding: 0.625rem 1.375rem;
    height: auto;
    box-shadow: none;
    outline: 0;
}

.form__select:hover, .form__select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    background-color: #fff;
    outline: none;
    box-shadow: none;
    border-color: #313131;
}

.form__select--medium-size {
    font-size: 0.875rem;
}

.form__select--border-dark {
    border-color: #ECECEC;
}

.form__select--border-left {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.form__select:focus, .form__select:hover {
    outline: none !important;
    box-shadow: none !important;
}

.form__group {
    position: relative;
    margin-bottom: 1.25rem;
}

.form__group--space-small {
    position: relative;
    margin-bottom: 0.875rem;
}

.form__group--space-small:last-child {
    margin-bottom: 0;
}

.form__btn {
    border-radius: 18px;
}

.form__fieldset {
    border: none;
    padding: 0;
}

.form__fieldset .form__check:first-child {
    padding-left: 0;
}

.form__legend {
    color: #3B3B3B;
    font-family: "Open Sans", sans-serif !important;
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0.125rem;
    margin-top: 0.125rem;
    line-height: 1.2;
    display: block;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
}

.form__subtitle {
    color: #0077C0;
    font-family: "Open Sans", sans-serif !important;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.form__subtitle span {
    color: #707070;
}

.form__subtitle--theme-black {
    color: #000;
}

.form__invalid {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -5px;
    right: 7px;
    margin-left: 0 !important;
}

.form__valid {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -5px;
    right: 7px;
    margin-left: 0 !important;
}

.form-feedback {
    position: absolute;
    top: 50%;
    left: 100%;
    padding: 3px 8px;
    font-size: 10px;
    line-height: 1.2;
    color: #d71921;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 500;
    display: none;
    visibility: hidden;
    opacity: 0;
    white-space: nowrap;
    transform: translateY(-50%);
    border-radius: 50px !important;
    text-transform: uppercase;
    margin-left: 0 !important;
    z-index: 9;
}

.form-feedback__invalid {
    color: #fff;
    background-color: #d71921;
}

.form-feedback__valid {
    color: #fff;
    background-color: #2f7b2f;
}

.input__group--border .form__control {
    border-radius: 20px !important;
}

.input__group .form__control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.was-validated .bs5-form-control:invalid, .bs5-form-control.is-invalid {
    background-image: none;
}

.was-validated .bs5-form-control:invalid ~ span.form__invalid, .bs5-form-control.is-invalid ~ span.form__invalid {
    display: block;
    visibility: visible;
    opacity: 1;
}

.was-validated .bs5-form-control:invalid ~ span.form__invalid i, .bs5-form-control.is-invalid ~ span.form__invalid i {
    padding: 0;
    font-size: 20px;
    color: #d71921;
    padding: 0;
    background: #fff;
    border-radius: 50%;
    border: 1px solid transparent;
}

.was-validated .bs5-form-control:invalid ~ span.form-feedback__invalid, .bs5-form-control.is-invalid ~ span.form-feedback__invalid {
    display: block;
    visibility: visible;
    opacity: 1;
}

.was-validated .bs5-form-control:valid, .bs5-form-control.is-valid {
    background-image: none;
}

.was-validated .bs5-form-control:valid ~ span.form__valid, .bs5-form-control.is-valid ~ span.form__valid {
    display: block;
    visibility: visible;
    opacity: 1;
}

.was-validated .bs5-form-control:valid ~ span.form__valid i, .bs5-form-control.is-valid ~ span.form__valid i {
    padding: 0;
    font-size: 20px;
    color: #2f7b2f;
    padding: 0;
    background: #fff;
    border-radius: 50%;
    border: 1px solid transparent;
}

.was-validated .bs5-form-control:valid ~ span.form-feedback__valid, .bs5-form-control.is-valid ~ span.form-feedback__valid {
    display: block;
    visibility: visible;
    opacity: 1;
}

.was-validated .bs5-form-select:invalid, .bs5-form-select.is-invalid {
    background-image: none;
}

.was-validated .bs5-form-select:invalid ~ span.form__invalid, .bs5-form-select.is-invalid ~ span.form__invalid {
    display: block;
    visibility: visible;
    opacity: 1;
}

.was-validated .bs5-form-select:invalid ~ span.form__invalid i, .bs5-form-select.is-invalid ~ span.form__invalid i {
    padding: 0;
    font-size: 20px;
    color: #d71921;
    padding: 0;
    background: #fff;
    border-radius: 50%;
    border: 1px solid transparent;
}

.was-validated .bs5-form-select:invalid ~ span.form-feedback__invalid, .bs5-form-select.is-invalid ~ span.form-feedback__invalid {
    display: block;
    visibility: visible;
    opacity: 1;
}

.was-validated .bs5-form-select:valid, .bs5-form-select.is-valid {
    background-image: none;
}

.was-validated .bs5-form-select:valid ~ span.form__valid, .bs5-form-select.is-valid ~ span.form__valid {
    display: block;
    visibility: visible;
    opacity: 1;
}

.was-validated .bs5-form-select:valid ~ span.form__valid i, .bs5-form-select.is-valid ~ span.form__valid i {
    padding: 0;
    font-size: 20px;
    color: #2f7b2f;
    padding: 0;
    background: #fff;
    border-radius: 50%;
    border: 1px solid transparent;
}

.was-validated .bs5-form-select:valid ~ span.form-feedback__valid, .bs5-form-select.is-valid ~ span.form-feedback__valid {
    display: block;
    visibility: visible;
    opacity: 1;
}

.was-validated .bs5-form-check-input:invalid, .bs5-form-check-input.is-invalid {
    background-image: none;
}

.was-validated .bs5-form-check-input:invalid ~ span.form__invalid, .bs5-form-check-input.is-invalid ~ span.form__invalid {
    display: block;
    visibility: visible;
    opacity: 1;
    top: 25px;
    right: unset;
}

.was-validated .bs5-form-check-input:invalid ~ span.form__invalid i, .bs5-form-check-input.is-invalid ~ span.form__invalid i {
    padding: 0;
    font-size: 20px;
    color: #d71921;
    padding: 0;
    background: #fff;
    border-radius: 50%;
    border: 1px solid transparent;
}

.was-validated .bs5-form-check-input:invalid ~ span.form-feedback__invalid, .bs5-form-check-input.is-invalid ~ span.form-feedback__invalid {
    display: block;
    visibility: visible;
    opacity: 1;
    top: 27px;
    left: 30px;
    transform: none;
}

.was-validated .bs5-form-check-input:valid, .bs5-form-check-input.is-valid {
    background-image: none;
}

.was-validated .bs5-form-check-input:valid ~ span.form__valid, .bs5-form-check-input.is-valid ~ span.form__valid {
    display: block;
    visibility: visible;
    opacity: 1;
}

.was-validated .bs5-form-check-input:valid ~ span.form__valid i, .bs5-form-check-input.is-valid ~ span.form__valid i {
    padding: 0;
    font-size: 20px;
    color: #2f7b2f;
    padding: 0;
    background: #fff;
    border-radius: 50%;
    border: 1px solid transparent;
}

.was-validated .bs5-form-check-input:valid ~ span.form-feedback__valid, .bs5-form-check-input.is-valid ~ span.form-feedback__valid {
    display: block;
    visibility: visible;
    opacity: 1;
}

.rodo-container .form__invalid,
.statement-sobriety .form__invalid,
.statement-true .form__invalid {
    top: 33px !important;
}

.rodo-container .form-feedback__invalid,
.statement-sobriety .form-feedback__invalid,
.statement-true .form-feedback__invalid {
    top: 35px !important;
}

.bs5-alert {
    border-radius: 15px;
    padding: 1rem 3rem;
    border: none;
}

.bs5-alert-primary {
    color: #3B3B3B;
    font-size: 0.9375rem;
    font-weight: 600;
    background-color: #0077c033;
    letter-spacing: 0.3px;
}

.bs5-alert-warning {
    background: #C9C9C9;
    color: #000000;
}

@media (max-width: 574.99px) {
    .modal-default {
        top: 0 !important;
    }
}

.modal-default__dialog {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 574.99px) {
    .modal-default__dialog {
        transform: translate(0, 0px) !important;
    }
}

@media (min-width: 768px) {
    .modal-default__dialog {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .modal-default__dialog {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .modal-default__dialog {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {
    .modal-default__dialog {
        max-width: 1320px;
    }
}

.modal-default__content {
    box-shadow: 0px 0px 43px #000000AB;
    overflow: hidden;
    border-radius: 30px;
}

.modal-default__header {
    background-color: #313131;
    padding: 1rem;
}

@media (min-width: 420px) {
    .modal-default__header {
        padding: 1.5rem 1rem;
    }
}

@media (min-width: 576px) {
    .modal-default__header {
        padding: 1.5rem 2rem;
    }
}

.modal-default__icon {
    color: #fff;
    font-size: 30px;
}

@media (min-width: 420px) {
    .modal-default__icon {
        font-size: 40px;
    }
}

@media (min-width: 576px) {
    .modal-default__icon {
        font-size: 44px;
    }
}

.modal-default__title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 1.2;
}

@media (min-width: 420px) {
    .modal-default__title {
        font-size: 28px;
    }
}

@media (min-width: 576px) {
    .modal-default__title {
        font-size: 30px;
    }
}

.modal-default .bs5-close {
    font-size: 30px;
    float: none;
    margin-top: 0;
    text-shadow: none;
    opacity: 1;
    color: #595959;
    background-color: transparent;
    border: none;
}

.modal-default .bs5-close:hover {
    color: #fff;
}

.modal-default__body {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 0;
    background-color: #F5F5F5;
}

@media (min-width: 576px) {
    .modal-default__body {
        padding-left: 48px;
        padding-right: 48px;
    }
}

.modal-default__footer {
    border-top: none;
    margin-top: 0;
    padding: 10px 16px 20px 16px;
    background-color: #F5F5F5;
}

@media (min-width: 576px) {
    .modal-default__footer {
        padding: 20px 48px 40px 48px;
    }
}

.modal-default__footer--themes-white {
    background-color: #fff;
}

.attached-files__content {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
    margin-top: 0.3125rem;
}

.attached-files__item {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-bottom: 0.5rem;
}

.attached-files__details {
    border-radius: 10px;
    background-color: #F5F5F5;
}

.attached-files__img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    width: 100%;
}

.attached-files__name {
    font-family: "Open Sans", sans-serif !important;
    color: #3B3B3B;
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: left;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-decoration: none;
    text-transform: none;
    text-overflow: ellipsis;
    display: block;
}

.attached-files__wrapp {
    padding: 0.9375rem 0.5rem 0.75rem 0.5rem;
}

.attached-files__remov {
    font-family: "Open Sans", sans-serif !important;
    color: #d71921;
    font-size: 0.625rem;
    line-height: 1.4;
    text-decoration: underline;
    text-align: right;
    cursor: pointer;
}

.attached-files__size {
    font-family: "Open Sans", sans-serif !important;
    color: #3B3B3B;
    font-size: 0.625rem;
    line-height: 1.4;
    text-align: left;
    font-weight: 400;
}

.attached-files__size strong {
    font-weight: 400;
}

.data-ready {
    font-size: 1rem;
}

button.btn:hover, button.btn:focus {
    outline: none !important;
}

.bootstrap-select .btn:focus:hover, .bootstrap-select .btn:focus:focus {
    outline: none !important;
    background-color: #ffffff;
}

.btn__help {
    position: relative;
    color: #fff;
    padding: 0.8125rem 1.5625rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 25px;
    transition: all 300ms ease;
    display: inline-block;
    outline: 0;
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
    border: 2px solid transparent;
    background-color: #d71921;
    line-height: 1;
    outline: none;
    text-decoration: none;
    box-shadow: none;
}

.btn__help:focus, .btn__help:hover {
    border-color: #d71921;
    outline: none;
    box-shadow: none;
    color: #d71921;
    background-color: #fff;
    text-decoration: none;
}

.btn__help--icon {
    padding: 0.625rem 1.5625rem;
}

.btn__help--icon i {
    font-size: 1.5rem;
    color: inherit;
    margin-right: 0.875rem;
}

.btn__help--small {
    font-size: 0.875rem;
}

.btn__primary {
    color: #fff;
    padding: 10px 20px 10px 44px;
    background-color: #5CB85C;
    font-size: 12px;
    font-weight: 600;
    border-radius: 25px;
    position: relative;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.btn__info {
    color: #fff;
    padding: 10px 20px 10px 44px;
    background-color: #757575;
    font-size: 12px;
    font-weight: 600;
    border-radius: 25px;
    position: relative;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.btn__secondary {
    color: #fff;
    padding: 10px 20px 10px 44px;
    background-color: #3493DD;
    font-size: 12px;
    font-weight: 600;
    border-radius: 25px;
    position: relative;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    position: relative;
}

.btn__icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.btn__icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 8;
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    border-radius: 25px;
}

.btn__icon .glyphicon, .btn__icon .glyphicons {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 25px;
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    text-align: left;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.2);
    width: 36px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 !important;
    justify-content: center;
    font-size: 14px;
    color: #fff !important;
}

.btn__icon .glyphicon:before, .btn__icon .glyphicons:before {
    padding: 0;
}

.btn__icon .glyphicon[class*=" icon-"], .btn__icon .glyphicons[class*=" icon-"] {
    font-size: 32px;
}

.btn__icon:hover {
    color: #fff;
    text-decoration: none;
}

.btn__icon:hover:before {
    width: 100%;
}

.btn__icon:focus {
    color: #fff;
    text-decoration: none;
}

.btn__icon .text {
    z-index: 10;
    position: relative;
    padding: 0 !important;
    line-height: 1;
}

.btn__login {
    padding: 0.875rem 1.875rem 0.875rem 4rem;
    border-radius: 25px;
}

.btn__login .text {
    font-size: 1rem;
}

.btn__login .glyphicon, .btn__login .glyphicons {
    width: 48px;
    border-radius: 25px;
}

.btn__login::before {
    width: 48px;
    border-radius: 25px;
}

.btn__send {
    padding: 0.875rem 1.875rem 0.875rem 4rem;
    border-radius: 25px;
    font-weight: 500;
}

.btn__send .text {
    font-size: 1rem;
}

.btn__send .glyphicon, .btn__send .glyphicons {
    width: 48px;
    border-radius: 25px;
    font-size: 1.25rem;
}

.btn__send::before {
    width: 48px;
    border-radius: 25px;
}

.btn__send--theme-red,
.btn__secondary--theme-red {
    background-color: #00b140;
}

.btn__status {
    position: relative;
    color: #fff;
    padding: 2px 5px;
    font-weight: 600;
    font-size: 10px;
    border-radius: 20px;
    transition: transform 150ms ease;
    display: inline-block;
    outline: 0;
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
    border: 2px solid transparent;
    background-color: #3B3B3B;
    line-height: 1;
    outline: none;
    text-decoration: none;
    box-shadow: none;
    text-transform: uppercase;
    transform: scale(1);
}

.btn__status:hover {
    color: #fff;
}

.btn__status.converted {
    background-color: #5CB85C;
}

.btn__status.uncounted {
    background-color: #d71921;
}

.page--themes-gray {
    background-color: #F2F2F2;
}

.page__col {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .page__col {
        padding-top: 0.9375rem;
        padding-bottom: 0.9375rem;
    }
}

.page__wrapper {
    position: relative;
    border-radius: 30px;
    box-shadow: 0 0 43px 0 rgba(0, 0, 0, 0.08);
    background-color: #F5F5F5;
}

.page__wrapper--no-border {
    border-radius: 0;
}

.page__hr--left {
    border-left: solid 1px #e5e5e5;
}

.page__hr--bottom {
    border-bottom: solid 1px #e5e5e5;
}

.page__spacing {
    padding: 1.5rem 0;
}

@media (min-width: 575px) {
    .page__spacing {
        padding: 3rem 0;
    }
}

.image {
    max-width: 100%;
    height: auto;
}

.image--lg {
    max-width: 10.5rem;
}

@media (min-width: 575px) {
    .image--lg {
        max-width: 100%;
    }
}

.help__subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #565656;
    text-align: center;
    line-height: 1;
    text-decoration: none;
    transition: all 300ms ease;
}

.help__subtitle:hover, .help__subtitle:focus {
    color: #d71921;
    text-decoration: none;
}

.help__title {
    font-size: 1.375rem;
    font-weight: 400;
    color: #3B3B3B;
    line-height: 1;
}

@media (max-width: 767px) {
    body {
        padding-right: 0;
        padding-left: 0;
    }
}

body {
    background: #f5f5f5;
}

.row__half {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.col__half {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.notification-header {
    padding-bottom: 2.25rem;
}

.notification-header__contact {
    /*padding: 2.25rem 4rem 1.375rem 2.5rem;
    border: 1px solid #ECECEC;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top: none;*/
    padding: 1.375rem 4rem 1.375rem 2.5rem;
    border: 1px solid #ECECEC;
    border-radius: 30px;
    border-top: none;
    background: #fff;
    position: relative;
    top: 1.5em;
}

.notification-header__contact p {
    color: #3B3B3B;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 0.3125rem;
}

.notification-header__contact i {
    color: inherit;
    font-size: 1.125rem;
    padding-right: 0;
    margin-right: 0.5rem;
}

.notification-header__contact span {
    display: block;
    color: inherit;
    font-family: "Open Sans", sans-serif !important;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}

.notification-header__link {
    color: #000 !important;
    text-decoration: none;
    transition: all 300ms ease;
}

.notification-header__link:hover {
    text-decoration: none;
    color: #1a1a1a !important;
}

.notification-header__logo {
    margin-top: 0.875rem;
    width: 130px;
}

.notification-form__wrapp {
    /*box-shadow: 0px 0px 20px #00000029;*/
    background-color: #fff;
    border-radius: 30px;
}

.notification-form__header {
    padding: 1.125rem 1.875rem;
    border-bottom: 1px solid #F5F5F5;
}

.notification-form__header i {
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

@media (min-width: 576px) {
    .notification-form__header i {
        font-size: 1.125rem;
    }
}

.notification-form__bg {
    min-width: 2.875rem;
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 50%;
    /*background-color: #F5F5F5;*/
    margin-right: 1rem;
}

@media (min-width: 576px) {
    .notification-form__bg {
        width: 3.375rem;
        height: 3.375rem;
    }
}

.notification-form__title {
    color: inherit;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .notification-form__title {
        font-size: 1.5rem;
    }
}

.notification-form__icon {
    font-size: 1rem;
    color: #000;
    margin-right: 1.125rem;
    padding-right: 0;
}

.notification-form__icon--size-large {
    font-size: 2rem;
}

.notification-form__subtitle {
    color: #000;
    font-family: "Open Sans", sans-serif !important;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
}

.notification-form__subtitle span {
    font-weight: 300;
}

.notification-form__space {
    padding: 1.875rem;
}

@media (min-width: 576px) {
    .notification-form__space {
        padding: 2.125rem 3.75rem 2rem 3.75rem;
    }
}

@media (min-width: 768px) {
    .notification-form__space--top {
        padding-top: 4rem;
    }
}

@media (min-width: 992px) {
    .notification-form__space--left-small {
        padding-left: 1.875rem;
    }
}

@media (min-width: 992px) {
    .notification-form__space--right-medium {
        padding-right: 3.75rem;
    }
}

@media (min-width: 992px) {
    .notification-form__space--right-small {
        padding-right: 1.875rem;
    }
}

.notification-form__border--right {
    border-right: 1px solid #F5F5F5;
}

.notification-form__border--bottom {
    border-bottom: 1px solid #F5F5F5;
}

.notification-form .form__select {
    color: #707070;
}

.notification-form .datepicker__icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
}

.notification-form .datepicker__icon i {
    color: #000;
    font-size: 0.875rem;
    padding: 0 0.875rem;
}

.notification-form__footer {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1.875rem;
}

@media (min-width: 576px) {
    .notification-form__footer {
        margin-top: 2.625rem;
        margin-bottom: 2.625rem;
        padding: 0 3.75rem 0 3.75rem;
    }
}

.notification-form__footer .form__check label {
    font-family: "Open Sans", sans-serif !important;
    font-weight: 400;
    font-size: 0.75rem;
    color: #707070;
}

.notification-form__footer .form__check label a {
    display: inline-block;
    color: #0077C0;
}

.notification-form__footer .form__check--theme-black label {
    font-family: "Open Sans", sans-serif !important;
    font-weight: 400;
    font-size: 0.75rem;
    color: #000;
}

.notification-form__footer .form__check--theme-black label a {
    display: inline-block;
    color: #000;
}

.notification-form__footer .form__check--theme-black label:before {
    border-color: #000 !important;
}

.notification-form__footer .form__check--theme-black input[type="checkbox"]:checked + label:before {
    background-color: #000;
}

.notification-form__btn-add {
    border-radius: 18px;
    background-color: #00b140;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
    display: inline-block;
    cursor: pointer;
}

.notification-form__btn-add span {
    color: #f8f8f8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
}

.notification-form__btn-add i {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1.125rem;
    color: #fff;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-form__btn-files {
    border-radius: 18px;
    background-color: #F5F5F5;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
    cursor: pointer;
}

.notification-form__btn-files span {
    color: #3B3B3B;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    line-height: 1.2;
}

.notification-form__btn-files i {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1.125rem;
    color: #3B3B3B;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-form__btn--theme-red {
    background-color: #00b140;
}

.notification-form__step {
    display: none;
    position: relative;
}

.datepicker table tr td.active.active {
    background-color: #00b140;
    border-color: #00b140;
    border-radius: 50%;
}

.datepicker table tr td.today {
    background-color: transparent;
    border-color: transparent;
    color: #00b140;
}

.datepicker table tr td {
    border-radius: 50%;
}

.datepicker td.day {
    padding: 9px 7px !important;
}

.notification-footer {
    /*padding: 3.25rem 0 3.25rem 0;*/
    padding: 1.25rem 0 1.25rem 0;
}

.notification-footer__text {
    color: #3B3B3B;
    font-family: "Open Sans", sans-serif !important;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.5;
}

.notification-footer__text a {
    color: #3B3B3B;
}

.form__check input[type="checkbox"] + label:before {
    border-color: #000;
}

.form__check input[type="checkbox"]:checked + label:before {
    background-color: #000;
}

.notification-form__footer .form__check label a {
    color: #000;
}

.form__dots .form__dot.active {
    background-color: #00b140;
}

.form__check input[type="radio"]:checked {
    background-color: #00b140;
    border-color: #00b140;
}

.form__subtitle {
    color: #000;
}

/*# sourceMappingURL=reporting-communication-damage-steps-mhc.css.map */