/* 
    Created on : 3 Jan. 2023, 7:05:11 pm
    Author     : Linko Technology PTY LTD
*/

/* App Theme / Brand */
:root {

    /*Core Colors*/
    --active-color: #2a94db;

    /*Body*/
    --body-text-color: rbg(68, 68, 68);
    --body-font_family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
    --body-background-color: #f6f6f6;
    --body-font_size: 16px;

    /*Button*/
    --button-background-color: rgba(var(--black-color), 0.6);
    --button-text-color: white;
    --button-padding: 8px 12px;
    --button-font_size: 11px;

    /*Table*/
    --table-th-font_size: 13px;
    --table-td-font_size: 13px;
    --bs-table-color: #2a94db !important;

    /* Form */
    --input-form_control-box_shadow-focus: 0 0 0 0.14rem rgb(13 110 253 / 25%);


}

/*Panel*/
.panel-body {
    background-color: #fcfcfc;
}

.panel-body-shadow {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 13px 18px -15px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0px 13px 18px -15px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 13px 18px -15px rgba(0, 0, 0, 0.23);
}

/*Head Titles */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: rgba(var(--black-color), 1) !important;
}

form input,
form select {
    color: rgb(var(--black-color), 0.9) !important;
}