/* Select2 Custome*/
.form-control-custome .select2-container--default .select2-selection--single {
    height: 45px;
    min-height: 40px;
}

.form-control-custome .select2-container--default .select2-selection--single {
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0px;
}

.form-control-custome .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0.375rem 0.75rem;
}

.form-control-custome .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

.form-control-custome .select2-container--default {
    width: 
    100% !important;
}

.form-control-custome .select2-container--disabled .select2-selection--single {
    background-color: #e9ecef;
}

/* Error message */
.er-msg {
    color: #ff0000;
}

.er-msg.font-size {
    font-size: 10px;
}

/* Currency */
.currency-right {
    text-align: right;
}

/*------------------ 
PO - Purchase Order
------------------*/

/* Status */
.status-po {
    width: 211px;
    height: 48px;
    float: right;
    padding-top: 14px;
    background-color: #EAF3EB;
    border-color: #29823B;
    border-radius: 12px;
    border-width: 1px;
    border-style: solid;
}
.status-po-item {
    text-align: center;
    color: #29823B;
}

/* Step form */
.wizard .content > .body .form-control.step-form-background-white {
    background-color: #fff !important;
}

.step-form-custome .wizard > .actions {
    position: relative !important;
}

.step-form-custome .wizard > .content {
    /* height: 520px; */
    height: 620px;
}

.wizard .content > .body .form-control {
    border: 1px solid #CCCCCC;
}


/* ------------------
Form Step
--------------------*/
.stepwizard-step p {
    margin-top: 10px;
}
.stepwizard-row {
    display: table-row;
}
.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}
.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}
.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}
.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}
    /* Custom button outline primary */
    .stepwizard .btn-outline-primary {
        
        background-color: #fff !important;
    }
    .stepwizard .btn-outline-primary:hover {
        color: #fff !important;
        background-color: #7571f9 !important;
    }
.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}


/*----------------------------------------*/
/*  Custome Accordion
/*----------------------------------------*/
.accordion-custom a::after {
    font-family: 'FontAwesome';
	content: "\f147";
}
.accordion-custom.collapsed a::after {
    font-family: 'FontAwesome';
    content: "\f196";
}



/* ------------------
Copyright
--------------------*/

/* copyright */
.copyright-container {
    position: fixed;
    bottom: 0px;
    left: 15px;
}


/*----------------------------------------*/
/*  Custome Input
/*----------------------------------------*/
.input-group-text-cus {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-bottom: 1px solid #f5f5f5;
}

.input-group-text-cus-inline {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
}

.input-group-text-cus-inline2 {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-color: #ced4da;
    border-style: solid;
    border-width: 1px 1px 1px 0px;
}


/*----------------------------------------*/
/*  Custome Loading Spinnner
/*----------------------------------------*/
.loader-cus {
    width: 2rem !important;
}


/*----------------------------------------*/
/*  Custome Table
/*----------------------------------------*/
.table-custome thead th {
    border: 1px solid #ced4da !important;
}

.table-custome tbody td {
    border: 1px solid #ced4da !important;
}

.table-custome-w100 {
    min-width: 100px;
}
.table-custome-w150 {
    min-width: 150px;
}
.table-custome-w200 {
    min-width: 200px;
}



/*----------------------------------------*/
/*  Custome Autocomplete
/*----------------------------------------*/
/*the container must be positioned relative:*/
.autocomplete {
    position: relative;
    /* display: inline-block; */
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: scroll;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
}
