﻿body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /*!important;*/
}

@media (min-width: 1024px) {
    .modal-xlg {
        width: 1024px;
    }
}

.blur {
    -moz-filter: blur(3px);
    -ms-filter: blur(3px);
    -o-filter: blur(3px);
    -webkit-filter: blur(3px);
    cursor: not-allowed;
    filter: blur(3px);
    pointer-events: none;
}

.disabled {
    background-color: #eee;
    color: black;
    cursor: not-allowed;
    opacity: 1;
    pointer-events: none;
    text-decoration: none;
}

/*-----------------------Checkbox + Radio--------------------*/

.checkbox {
    padding-left: 20px;
}

    .checkbox label {
        display: inline-block;
        padding-left: 5px;
        position: relative;
    }

        .checkbox label::before {
            -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            background-color: #fff;
            border: 1px solid #cccccc;
            border-radius: 3px;
            content: "";
            display: inline-block;
            height: 16px;
            left: 0;
            margin-left: -20px;
            margin-top: 2px;
            position: absolute;
            transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            width: 16px;
        }

        .checkbox label::after {
            color: #555555;
            display: inline-block;
            font-size: 11px;
            height: 14px;
            left: 0;
            margin-left: -20px;
            padding-left: 3px;
            padding-top: 3px;
            position: absolute;
            top: 0;
            width: 14px;
        }

    .checkbox input[type="checkbox"] {
        opacity: 0;
    }

        .checkbox input[type="checkbox"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .checkbox input[type="checkbox"]:focus + input[type="hidden"] + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .checkbox input[type="checkbox"]:checked + label::after {
            content: "\f00c";
            font-family: 'FontAwesome';
        }

        .checkbox input[type="checkbox"]:checked + input[type="hidden"] + label::after {
            content: "\f00c";
            font-family: 'FontAwesome';
        }

        .checkbox input[type="checkbox"]:disabled + label {
            opacity: 0.65;
        }

        .checkbox input[type="checkbox"]:disabled + input[type="hidden"] + label {
            opacity: 0.65;
        }

        .checkbox input[type="checkbox"]:disabled + label::before {
            background-color: #eeeeee;
            cursor: not-allowed;
        }

        .checkbox input[type="checkbox"]:disabled + input[type="hidden"] + label::before {
            background-color: #eeeeee;
            cursor: not-allowed;
        }

    .checkbox.checkbox-circle label::before {
        border-radius: 50%;
    }

    .checkbox.checkbox-inline {
        margin-top: 0;
    }

.checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #428bca;
    border-color: #428bca;
}

.checkbox-primary input[type="checkbox"]:checked + input[type="hidden"] + label::before {
    background-color: #428bca;
    border-color: #428bca;
}


.checkbox-primary input[type="checkbox"]:checked + input[type="hidden"] + label::after {
    color: #fff;
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + input[type="hidden"] + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + input[type="hidden"] + label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + input[type="hidden"] + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + input[type="hidden"] + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + input[type="hidden"] + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + input[type="hidden"] + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + input[type="hidden"] + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + input[type="hidden"] + label::after {
    color: #fff;
}

.radio {
    padding-left: 20px !important;
}

    .radio label {
        display: inline-block;
        padding-left: 5px;
        position: relative;
    }

        .radio label::before {
            -o-transition: border 0.15s ease-in-out;
            -webkit-transition: border 0.15s ease-in-out;
            background-color: #fff;
            border: 1px solid #cccccc;
            border-radius: 50%;
            content: "";
            display: inline-block;
            height: 16px;
            left: 0;
            margin-left: -20px;
            position: absolute;
            transition: border 0.15s ease-in-out;
            width: 16px;
        }

        .radio label::after {
            -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -ms-transform: scale(0, 0);
            -o-transform: scale(0, 0);
            -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -webkit-transform: scale(0, 0);
            -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            background-color: #555555;
            border-radius: 50%;
            content: " ";
            display: inline-block;
            height: 10px;
            left: 3px;
            margin-left: -20px;
            position: absolute;
            top: 3px;
            transform: scale(0, 0);
            transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            width: 10px;
        }

    .radio input[type="radio"] {
        opacity: 0;
    }

        .radio input[type="radio"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .radio input[type="radio"]:checked + label::after {
            -ms-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
        }

        .radio input[type="radio"]:disabled + label {
            opacity: 0.65;
        }

            .radio input[type="radio"]:disabled + label::before {
                cursor: not-allowed;
            }

    .radio.radio-inline {
        margin-top: 0;
    }

.radio-primary input[type="radio"] + label::after {
    background-color: #428bca;
}

.radio-primary input[type="radio"]:checked + label::before {
    border-color: #428bca;
}

.radio-primary input[type="radio"]:checked + label::after {
    background-color: #428bca;
}

.radio-danger input[type="radio"] + label::after {
    background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
    background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::before {
    border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::before {
    border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
    background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::before {
    border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::after {
    background-color: #5cb85c;
}

/*-----------------------Checkbox + Radio--------------------*/

/*----------------------- Input - Combobox ---------------------*/

input.input-validation-error {
    border-color: #a94442;
    box-shadow: none;
}

span.field-validation-error {
    clear: both;
}

.field-validation-error {
    display: inline-block;
}

/*----------------------- Input - Combobox ---------------------*/

.input-group > .input-group-addon {
    cursor: pointer;
}

/*----------------------- loader ---------------------*/

.pageload-overlay {
    -webkit-backdrop-filter: blur(5px); /* Use for Safari 9+, Edge 17+ (not a mistake) and iOS Safari 9.2+ */
    backdrop-filter: blur(5px); /* Supported in Chrome 76 */
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
}

    .pageload-overlay.show {
        visibility: visible;
        z-index: 9999;
    }

    .pageload-overlay svg {
        left: 0;
        pointer-events: none;
        position: absolute;
        top: 0;
    }

        .pageload-overlay svg path {
            fill: #fff;
        }

    .pageload-overlay::after,
    .pageload-overlay::before {
        -webkit-transition: opacity 0.15s, visibility 0s 0.15s;
        border-radius: 50%;
        content: '';
        height: 20px;
        left: 50%;
        margin: -10px 0 0 -10px;
        opacity: 0;
        position: fixed;
        top: 50%;
        transition: opacity 0.15s, visibility 0s 0.15s;
        visibility: hidden;
        width: 20px;
        z-index: 1000;
    }

    .pageload-overlay::after {
        -webkit-animation: moveRight 0.6s linear infinite alternate;
        -webkit-transform: translateX(-20px);
        animation: moveRight 0.6s linear infinite alternate;
        background: #6cc88a;
        transform: translateX(-20px);
    }

    .pageload-overlay::before {
        -webkit-animation: moveLeft 0.6s linear infinite alternate;
        -webkit-transform: translateX(20px);
        animation: moveLeft 0.6s linear infinite alternate;
        background: #4fc3f7;
        transform: translateX(20px);
    }

@-webkit-keyframes moveRight {
    to {
        -webkit-transform: translateX(20px);
    }
}

@keyframes moveRight {
    to {
        transform: translateX(20px);
    }
}

@-webkit-keyframes moveLeft {
    to {
        -webkit-transform: translateX(-20px);
    }
}

@keyframes moveLeft {
    to {
        transform: translateX(-20px);
    }
}

.pageload-loading.pageload-overlay::after,
.pageload-loading.pageload-overlay::before {
    -webkit-transition: opacity 0.3s;
    opacity: 1;
    transition: opacity 0.3s;
    visibility: visible;
}

.sidebar .submenu .nav-icon {
    margin-left: 0.25rem;
    margin-right: 0.75rem;
    width: 1.25rem;
}

.text-strikethrough {
    text-decoration: line-through;
}

.multiselect-container > li > a > label > input[type=checkbox] {
    margin-bottom: 0px !important;
}

.multiselect-container > li > a > label {
    margin: 0.4rem 0 !important;
}

.text-upcase {
    text-transform: uppercase;
}

.hidden {
    display: none !important;
}

.hidden_func {
    display: none !important;
}

/*search*/
.form-control:focus {
    box-shadow: 0 0 0 2px rgba(245,153,66,.2);
    border-color: var(--main);
}

/*Lien ket website*/
#select2-data-138-jnij {
    z-index: 1000;
}

/*menu mobile*/
.sidebar .nav-item-caption {
    padding: 0;
}

.slogan-body {
    padding: 12px 0px 6px 0px;
    /*background: url(/Contents/Base/imgs/footer_bg.jpeg);*/
}

.slogan-mq {
    font-size: 1.2em;
    font-weight: 900;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 1px 0px rgb(179, 126, 82);
    text-transform: uppercase;
}
