/* ss-defaultForm */
.ss-defaultForm .nf-form-content  {
    padding: 0;
}

.ss-defaultForm .nf-form-title,
.ss-defaultForm .nf-before-form-content,
.ss-defaultForm label .ninja-forms-req-symbol {
    display: none;
}

.ss-defaultForm nf-fields-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    row-gap: 16px;
}

.ss-defaultForm nf-fields-wrap > nf-field {
    flex: 0 0 auto;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

.ss-defaultForm nf-field > .nf-field-container {
    margin-bottom: 0;
}

.ss-defaultForm .nf-form-content .label-above .nf-field-label {
    margin-bottom: 6px;
}

.ss-defaultForm label {
    font-size: 16px !important;
}

.ss-defaultForm input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]),
.ss-defaultForm select,
.ss-defaultForm textarea {
    border: 1px solid #C1C1C1 !important;
    background: #ffffff !important;
    padding: 8px 16px !important;
    height: 44px !important;
}

.ss-defaultForm input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button])::placeholder,
.ss-defaultForm select::placeholder,
.ss-defaultForm textarea::placeholder {
    color: #A9A9A9;
}

.ss-defaultForm select {
    cursor: pointer;
    padding-right: 40px !important;
    color: #A9A9A9 !important;
    background-image: url('../images/chevron-down-light-gray.svg') !important;
    background-repeat: no-repeat !important;
    background-size: 16px 9px !important;
    background-position: calc(100% - 16px) center !important;
}

.ss-defaultForm select + div {
    display: none !important;
}

.ss-defaultForm textarea {
    height: 80px !important;
}

.ss-defaultForm .nf-form-content input[type=submit] {
    background: #000000;
    padding-left: 28px;
    padding-right: 28px;
}

.ss-defaultForm .nf-error.field-wrap .nf-field-element:after,
.ss-defaultForm .nf-pass.field-wrap .nf-field-element:after {
    height: 100%;
    top: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.ss-defaultForm .nf-response-msg {
    outline: none;
    background: rgba(0,0,0,.1);
    font-weight: 600;
    padding: 32px 16px;
    text-align: center;
}

.ss-defaultForm .nf-response-msg p {
    margin-bottom: 0;
}

@media(min-width: 768px) {
    .ssContact .ss-defaultForm nf-fields-wrap > nf-field:nth-child(-n+4) {
        width: 50%;
    }
}

@media(min-width: 992px) {
    .ss-defaultForm input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]),
    .ss-defaultForm select,
    .ss-defaultForm textarea {
        height: 56px !important;
    }

    .ss-defaultForm textarea {
        height: 96px !important;
    }
}

@media(min-width: 1310px) {
    .ss-defaultForm nf-fields-wrap {
        row-gap: 24px;
    }

    .ss-defaultForm input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]),
    .ss-defaultForm select,
    .ss-defaultForm textarea {
        height: 68px !important;
    }

    .ss-defaultForm textarea {
        height: 116px !important;
    }

    .ss-defaultForm .nf-form-content input[type=submit] {
        font-size: 18px;
    }
}