// Dashboard form start


.label_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    color: var(--heading-color);
    &__postition {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        color: var(--heading-color);
        background: var(--white-bg);
        margin-bottom: -11px;
        position: relative;
        display: table;
        padding: 0 10px;
        z-index: 9990;
    }
}
.form_control,
.form__control,
.form--control,
.form-control {
    &::-webkit-outer-spin-button,
    &::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -moz-appearance: textfield;
    }
    -moz-appearance: textfield;
    width: 100%;
    height: 48px;
    line-height: 48px;
    padding: 0 15px;
    border: 1px solid var(--border-color);
    background-color: unset;
    outline: none;
    color: var(--paragraph-color);
    @include transition(300ms);
    @include box-shadow(0, 0, 10px, var(--box-shadow));
    &:focus {
        border-color: rgba(var(--main-color-one-rgb), .3);
        @include box-shadow(0, 0, 10px, rgba(var(--main-color-one-rgb), .1));
    }
    @include responsive(xxs) {
        font-size: 15px;
    }
    @include responsive(vxxs) {
        font-size: 14px;
    }
}

.custom_form {
    .single_flex_input {
        &:not(:first-child) {
            margin-top: 25px;
        }
        .single_input,
        .form-group {
            margin-top: 0 !important;
            .js_nice_select {
                width: 100%;
            }
        }
    }
    .single_input,
    .form-group {
        width: 100%;
        &:not(:first-child) {
            margin-top: 25px;
        }
        .label-title {
            font-size: 16px;
            line-height: 24px;
            font-weight: 500;
            display: block;
            margin-bottom: 10px;
            color: var(--heading-color);
            @include responsive(xxs) {
                font-size: 15px;
            }
            @include responsive(vxxs) {
                font-size: 14px;
            }
        }
        .input-icon {
            position: absolute;
            bottom: 15px;
            left: 15px;
        }
        .iti {
            width: 100%;
        }
        .form--control,
        .form-control {
            &::-webkit-outer-spin-button,
            &::-webkit-inner-spin-button {
                -webkit-appearance: none;
                margin: 0;
                -moz-appearance: textfield;
            }
            -moz-appearance: textfield;
            width: 100%;
            height: 48px;
            line-height: 48px;
            padding: 0 15px;
            border: 1px solid var(--border-color);
            background-color: unset;
            outline: none;
            color: var(--paragraph-color);
            @include transition(300ms);
            @include box-shadow(0, 0, 10px, var(--box-shadow));
            &:focus {
                border-color: rgba(var(--main-color-one-rgb), .3);
                @include box-shadow(0, 0, 10px, rgba(var(--main-color-one-rgb), .1));
            }
            @include responsive(xxs) {
                font-size: 15px;
            }
            @include responsive(vxxs) {
                font-size: 14px;
            }
            &.input-padding-left {
                padding-left: 45px;
            }
            &#phone {
                width: 100%;
                padding-left: 50px;
            }
        }
        .form-message,
        textarea {
            width: 100%;
            line-height: 24px;
            height: unset;
            padding: 5px 15px;
            border: 1px solid var(--border-color);
            background-color: unset;
            outline: none;
            color: var(--paragraph-color);
            @include transition(300ms);
            @include box-shadow(0, 0, 10px, rgba(var(--white-rgb), .1));
            &:focus {
                border-color: rgba(var(--main-color-one-rgb), .3);
                @include box-shadow(0, 0, 10px, rgba(var(--main-color-one-rgb), .1));
            }
            &.textarea-height {
                height: 100px;
            }
        }
        &-icon {
            position: relative;
            &::after {
                content: "";
                position: absolute;
                height: 55px;
                width: 2px;
                background-color: #f3f3f3;
                bottom: 0;
                left: 40px;
            }
            .form--control,
            .form-control {
                padding-left: 50px;
                position: relative;
            }
        }
        &-select {
            width: 100%;
            border: 1px solid var(--border-color);
        }
    }
    textarea {
        height: unset !important;
    }
    .submit-btn {
        margin-top: 25px;
    }
}

.submit_btn {
    border: 2px solid var(--main-color-one);
    background-color: var(--main-color-one);
    color: var(--white-text);
    padding: 8px 15px;
    @include transition(300ms);
    &:hover {
        background-color: rgba(var(--main-color-one-rgb), .9);
    }
}
