body {

}

input[type='text'], input[type='password'], input[type='email'], input[type='tel'], input[type='number'], input[type='date'], input[type='time'], textarea, select {
    background-color: #fff;
    color: #222;
}

button, [type='button'], [type='reset'], [type='submit'] {
    font-size: 1.4rem;
}

.container {
    max-width: 100%;
}


/** Ninja Forms **/

.nf-form-cont .submit-wrap [type='button'] {
    width: 100%;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;
    background: #222;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.nf-form-cont .nf-error-msg {
    color: #f99;
}

.nf-form-cont .html-wrap {
    text-align: center;
}

.nf-form-cont .html-wrap h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
    /*text-transform: uppercase;*/
}

.nf-form-cont label {
    font-weight: normal !important;
    cursor: pointer;
    font-size: 14px;
}

.nf-form-cont .submit-wrap [type='button'] {
    width: 100%;
}

.nf-form-cont .nf-input-limit {
    margin: 0;
}

.nf-form-cont .nf-after-field .nf-error-msg {
    margin-top: 5px;
}

.nf-form-cont .nf-after-field .nf-error-msg:first-of-type {
    margin-top: 10px;
}

.checkbox-container.label-right .nf-field-element {
    display: none;
}

.checkbox-wrap {
    justify-content: center;
}

.checkbox-wrap > .nf-field-label {
    position: relative;
    padding-left: 30px !important;
}

.checkbox-wrap .nf-field-label label {
    white-space: nowrap;
}

.checkbox-wrap .nf-field-label label::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    content: '';
}

.checkbox-wrap .nf-field-label label::after{
    position: absolute;
    content: '';
    width: 11px;
    height: 7px;
    color: #333;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transition: all 0.15s ease-in-out;
    transform: rotate(-45deg) !important;
    transform-origin: 50% 50%;
    border: 3px solid currentColor;
    border-top-width: 0;
    border-right-width: 0;
    top: 5px;
    left: 4px;
}

.checkbox-wrap .nf-field-label label.nf-checked-label::after {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}


@media only screen and (min-width: 768px) {
    .nf-form-cont .html-wrap {
        text-align: inherit;
    }
}