/********************************************
************ Global settings ****************
*********************************************/
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/********************************************
************ Floating label ****************
*********************************************/
.form-capsule .form-group {
    /* Form group*/
    position: relative;
}

.datepic::-webkit-inner-spin-button,
.datepic::-webkit-calendar-picker-indicator {
    opacity: 0;
    -webkit-appearance: none;
    width: 50%;
}

/******* Label *******/
.form-capsule .form-group label {
    /* Input field floating label */
    position: absolute;
    font-size: 0.8em;
    top: 0px;
    width: 100%;
    padding: 2px 15px 0 40px;
    margin: 5px 0 10px 0;
    opacity: 0;
    transition: opacity 0.2s ease-out;
    /* prevent flickering */
    -webkit-backface-visibility: hidden;
    pointer-events: none;
}

.form-capsule .show-label label {
    /* Active state for label when visible */
    opacity: 1;
}

form.form-capsule .form-group i {
    position: absolute;
    top: 17px;
    left: 26px;
    font-size: 18px;
    color: #a1a1a1;
    z-index: 9;
}

/******** Form control fields ********/
.form-capsule .form-control {
    /* Form control fields */
    height: 50px;
    padding: 15px 15px 15px 40px;
    box-shadow: 0 0 0 2px transparent;
    transition: all 0.2s ease-out;
}

    .form-capsule .form-control:focus {
        /* Focus state for form-control fields */
        box-shadow: 0 0 0 2px #000066;
        outline: transparent;
        border-color: transparent;
    }

.form-capsule .show-label .form-control {
    /* Active state for form-control fields */
    /*padding-top: 25px;*/
    padding-top: 20px;
    padding-bottom: 5px;
}

/********************************************
************ Textarea ***********************
*********************************************/
.form-capsule .form-group-textarea label {
    /* Textarea floating label */
    background-color: white;
    width: auto;
    right: 0;
    left: 0;
    margin: 1px 18px 1px 1px;
    border-radius: 3px 3px 0 0;
    padding-top: 4px;
}

.form-capsule .form-group-textarea .form-control {
    /* Textarea */
    min-height: 100px;
    height: auto;
    max-width: 100%;
    min-width: 100%;
}

/********************************************
************ Markdown ***********************
*********************************************/
.form-capsule .form-group-markdown label {
    /* Markdown textarea floating label */
    background-color: white;
    width: auto;
    right: 0;
    left: 0;
    margin: 1px 18px 1px 1px;
    border-radius: 3px 3px 0 0;
    padding-top: 4px;
}

.form-capsule .form-group-markdown .form-control {
    /* Markdown textarea */
    margin-top: 10px;
    min-height: 200px;
    height: auto;
    max-width: 100%;
    min-width: 100%;
}

.form-capsule .markdown-upload-button {
    /* Markdown file upload buttong */
    cursor: pointer;
    color: blue;
}

.form-capsule .markdown-preview {
    /* Markdown preview */
    margin-top: 10px;
    margin-bottom: 10px;
    height: 230px;
    width: 100%;
    border: 1px solid #CCC;
    border-radius: 4px;
}

/********************************************
************ Select *************************
*********************************************/
.form-capsule .form-group-select label {
    /* Select floating label */
    opacity: 1;
    z-index: 1;
}

.form-capsule .form-group-select .form-control {
    /* Select */
    padding-top: 25px;
    padding-bottom: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select-wrapper {
    /* Select wrapper */
    position: relative;
    z-index: 0;
}

    .select-wrapper:before {
        /* Select arrow image background */
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 50px;
        background-position: center center;
        background-repeat: no-repeat;
        pointer-events: none;
        background-image: url(https://tlc-web.qcode.co.uk/Graphics/dropdown-arrow-down-dark.svg);
    }

/********************************************
************ Help block *********************
*********************************************/
.help-block-inline {
    /* Inline help block */
    position: absolute;
    top: 0;
    right: 25px;
    line-height: 50px;
    margin: 0;
    font-size: 90%;
    color: #CCC;
}

/********************************************
************ Units help-block ***************
*********************************************/
.help-block-floating {
    /* Inline help block for units */
    color: #555;
}

.help-block-background {
    right: 0;
    background-color: #eee;
    color: #555;
    border-radius: 0 3px 3px 0;
    height: 48px;
    margin: 1px;
    padding: 0 12px;
}

/********************************************
************ Tooltip ************************
*********************************************/
.tooltip-icon {
    /* Tooltip icon */
    position: absolute;
    top: 15px;
    right: 30px;
}

/********************************************
************ Radio group ********************
*********************************************/
.radio-group {
    border-radius: 4px;
}

.radio, .radio + .radio {
    margin: 0;
}

    .radio:last-child {
        border-bottom: 0;
    }

.radio-option {
    display: none;
}

    .radio-option:checked + .radio-option-label:before {
        border-color: #000666;
        border-width: 5px;
    }

.radio-option-label {
    display: table;
}

.form_div_hd {
    padding: 8px 0 0 0;
    font-size: 23px;
    color: #0f3f68;
    text-align: right;
    font-weight: 600;
}

.checkbox label {
    min-height: 20px;
    padding-left: 18px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.radio label {
    min-height: 20px;
    padding-left: 0px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.radio-option-label:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    margin: 3px 10px 8px 0;
    border-radius: 50%;
    background-color: white;
    transition: border-width 0.3s ease;
}

.radio-option-label-text {
    display: table-cell;
    vertical-align: middle;
    padding: 0px 10px 0px 0;
    width: 100%;
    margin: 0;
}


.input-group-addon:last-child {
    border-left: 0;
    background: #ff3030;
    border: 1px solid #ff3030;
}

i.fa.fa-search.white-text {
    color: #fff;
}

.Table_searchboax {
    height: 40px !important;
    padding: 15px 15px 15px 15px !important;
    box-shadow: 0 0 0 2px transparent;
    transition: all 0.2s ease-out;
}

.Customtble thead tr th {
    background: #145893;
    color: #fff;
    padding: 11px 8px;
    font-weight: 500;
}

.Customtble {
    float: left;
    width: 100%;
    margin: 20px 0px;
}

    .Customtble > tbody > tr > td, .Customtble > tbody > tr > th,
    .Customtble > tfoot > tr > td, .Customtble > tfoot > tr > th,
    .Customtble > thead > tr > td, .Customtble > thead > tr > th {
        padding: 11px 9px;
        line-height: 1.42857143;
        vertical-align: top;
        border-top: 1px solid #f6f6f6;
    }

span.tbl_dlt {
    padding: 10px 13px;
    color: #ff3030;
    width: 100%;
    float: left;
    font-weight: 600;
    font-size: 12px;
}

span.tbl_edit {
    color: #145893;
    padding: 10px 14px;
    font-size: 12px;
    width: 100%;
    font-weight: 600;
    float: left;
}

    span.tbl_dlt:hover, span.tbl_edit:hover {
        background: #fbfbfb;
    }





body .dropdown-menu {
    border-radius: 0;
}

body .multiselect-native-select {
    position: relative;
}

    body .multiselect-native-select select {
        border: 0 !important;
        clip: rect(0 0 0 0) !important;
        height: 1px !important;
        margin: -1px -1px -1px -3px !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: absolute !important;
        width: 1px !important;
        left: 50%;
        top: 30px;
    }

body .multiselect-container {
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    body .multiselect-container .input-group {
        margin: 5px;
    }

    body .multiselect-container li {
        padding: 0;
    }

        body .multiselect-container li .multiselect-all label {
            font-weight: 700;
        }

        body .multiselect-container li a {
            padding: 0;
        }

            body .multiselect-container li a label {
                margin: 0;
                height: 100%;
                cursor: pointer;
                font-weight: 400;
                padding: 3px 20px 3px 40px;
            }

                body .multiselect-container li a label input[type=checkbox] {
                    margin-bottom: 5px;
                }

                body .multiselect-container li a label.radio {
                    margin: 0;
                }

                body .multiselect-container li a label.checkbox {
                    margin: 0;
                }

        body .multiselect-container li.multiselect-group label {
            margin: 0;
            padding: 3px 20px 3px 20px;
            height: 100%;
            font-weight: 700;
        }

        body .multiselect-container li.multiselect-group-clickable label {
            cursor: pointer;
        }

body .btn-group .btn-group .multiselect.btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

body .form-inline .multiselect-container label.checkbox {
    padding: 3px 20px 3px 40px;
}

body .form-inline .multiselect-container label.radio {
    padding: 3px 20px 3px 40px;
}

body .form-inline .multiselect-container li a label.checkbox input[type=checkbox] {
    margin-left: -20px;
    margin-right: 0;
}

body .form-inline .multiselect-container li a label.radio input[type=radio] {
    margin-left: -20px;
    margin-right: 0;
}

button.multiselect.dropdown-toggle.btn.btn-default {
    text-align: left;
    padding: 13px 40px;
    color: #6d6d6d;
}

.multi_select i {
    position: absolute;
    z-index: 9;
    top: 15px;
    left: 10px;
    color: #a9a9a9;
    font-size: 18px;
}

.multi_select {
    position: relative;
}
