/* Form Field component */
input[type=number], input[type=email], input[type=text], textarea, .form-item-field select {
    z-index: 1;
    background: transparent;
    transition: border-bottom 0.5s cubic-bezier(0.62, 0.28, 0.23, 0.99);
}

input[type=checkbox] {
    background-color: transparent;
    border: 1px #000 solid;
    border-radius: 6px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

    input[type=checkbox]:checked {
        background: #833c0b url("data:image/gif;base64,R0lGODlhCwAKAIABAP////3cnSH5BAEKAAEALAAAAAALAAoAAAIUjH+AC73WHIsw0UCjglraO20PNhYAOw==") no-repeat 2px 3px;
        border: none !important;
    }

input[type=number], input[type=email]:focus, input[type=text]:focus, textarea:focus, .form-item-field select:focus-visible, input[type=checkbox] {
    outline: 0;
}

textarea {
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
/*------------------space---------------------*/
/*------------------space---------------------*/
/*hamid reza akbari search input inside tools media query and ltr setup*/
.search-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 35%;
    flex: 0 1 35%;
}

@media (max-width: 700px) {
    .search-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }
}

body[dir=ltr] .search-container .form-item-field .fa-search {
    right: 0px !important;
}
/*------------------space---------------------*/
/*------------------space---------------------*/

.error-border {
    border-color: #ec210b !important;
}

.disable-item {
    color: #aec4d4 !important;
}
.lable-active {
    bottom: 24px !important;
    font-size: 0.75rem !important;
}

.textarea-lable-active {
    bottom: 58px !important;
    font-size: 0.75rem !important;
}

.OPTTextArea {
    padding-left: 0 !important;
    padding-right: 0 !important;
    resize: none;
}

/*......................Radio.............................*/
.fieldset-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.OPTRaioButton-fieldset {
    display: flex;
    align-items: center;
    cursor: pointer;
}
    .OPTRaioButton-fieldset label {
        cursor: pointer;
    }
input[type="radio"] {
    accent-color: #833c0b;
    margin-left:6px;
    cursor:pointer;
}
body[dir=ltr] input[type="radio"] {
    accent-color: #833c0b;
    margin-right: 6px;
    cursor: pointer;
}
.fieldset-checkbox .op-lable {
    color: black !important;
}