﻿
/*!
     * Waves v0.7.5
     * http://fian.my.id/Waves 
     * 
     * Copyright 2014-2016 Alfiana E. Sibuea and other contributors 
     * Released under the MIT license 
     * https://github.com/fians/Waves/blob/master/LICENSE 
     */
.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

    .waves-effect .waves-ripple {
        position: absolute;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        margin-top: -50px;
        margin-left: -50px;
        opacity: 0;
        background: rgba(0, 0, 0, 0.2);
        background: -webkit-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
        background: -o-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
        background: -moz-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
        background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        -webkit-transition-property: -webkit-transform, opacity;
        -moz-transition-property: -moz-transform, opacity;
        -o-transition-property: -o-transform, opacity;
        transition-property: transform, opacity;
        -webkit-transform: scale(0) translate(0, 0);
        -moz-transform: scale(0) translate(0, 0);
        -ms-transform: scale(0) translate(0, 0);
        -o-transform: scale(0) translate(0, 0);
        transform: scale(0) translate(0, 0);
        pointer-events: none;
    }

    .waves-effect.waves-light .waves-ripple {
        background: rgba(255, 255, 255, 0.4);
        background: -webkit-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
        background: -o-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
        background: -moz-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
        background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    }

    .waves-effect.waves-classic .waves-ripple {
        background: rgba(0, 0, 0, 0.2);
    }

    .waves-effect.waves-classic.waves-light .waves-ripple {
        background: rgba(255, 255, 255, 0.4);
    }

.waves-notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.waves-button,
.waves-circle {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, #ffffff 100%, #000000 100%);
}

    .waves-button,
    .waves-button:hover,
    .waves-button:visited,
    .waves-button-input {
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        border: none;
        outline: none;
        color: inherit;
        background-color: rgba(0, 0, 0, 0);
        font-size: 1em;
        line-height: 1em;
        text-align: center;
        text-decoration: none;
        z-index: 1;
    }

.waves-button {
    padding: 0.85em 1.1em;
    border-radius: 0.2em;
}

.waves-button-input {
    margin: 0;
    padding: 0.85em 1.1em;
}

.waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom;
}

    .waves-input-wrapper.waves-button {
        padding: 0;
    }

    .waves-input-wrapper .waves-button-input {
        position: relative;
        top: 0;
        left: 0;
        z-index: 1;
    }

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
}

.waves-float {
    -webkit-mask-image: none;
    -webkit-box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

    .waves-float:active {
        -webkit-box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
    }

.waves-block {
    display: block;
}

/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .tabs-nav {
        display: none;
    }
}

/* Skin */
.tabs-nav, .tabs-panel {
    font-family: "Verdana", Trebuchet, Verdana, Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
    background-color: Transparent;
}

    .tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
        display: block;
        clear: both;
        content: " ";
    }

    .tabs-nav li {
        float: left;
        margin: 0 0 0 4px;
        min-width: 84px; /* be nice to Opera */
    }

    .tabs-nav a, .tabs-nav a span {
        display: block;
        padding: 0 10px;
        background-color: Transparent;
        background: url('images/tab.png') no-repeat;
    }

    .tabs-nav a {
        margin: 1px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
        padding-left: 0;
        color: #fff;
        font-weight: bold;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
        white-space: nowrap; /* required in IE 6 */
        outline: 0; /* prevent dotted border in Firefox */
    }

    .tabs-nav .tabs-selected a {
        position: relative;
        top: 1px;
        z-index: 2;
        margin-top: 0;
        color: #3775CE;
    }

    .tabs-nav a span {
        width: 64px; /* IE 6 treats width as min-width */
        min-width: 64px;
        height: 18px; /* IE 6 treats height as min-height */
        min-height: 18px;
        padding-top: 6px;
        padding-right: 0;
    }

* > .tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}

.tabs-nav .tabs-selected a span {
    padding-bottom: 1px;
}

.tabs-nav a:hover {
    color: #3775CE;
}

.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    background-position: 100% -150px;
}

.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
    background-position: 100% -100px;
}

    .tabs-nav .tabs-selected a span, .tabs-nav a:hover span, .tabs-nav a:focus span, .tabs-nav a:active span {
        background-position: 0 -50px;
    }

    .tabs-nav a span, .tabs-nav .tabs-disabled a:hover span, .tabs-nav .tabs-disabled a:focus span, .tabs-nav .tabs-disabled a:active span {
        background-position: 0 0;
    }

.tabs-nav .tabs-selected a:link, .tabs-nav .tabs-selected a:visited, .tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}

.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active,
.tabs-nav .tabs-deselectable a:hover, .tabs-nav .tabs-deselectable a:focus, .tabs-nav .tabs-deselectable a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}

.tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}

.tabs-panel {
    border-top: 1px solid #97a5b0;
    padding: 1em 8px; /* declare background color for container to avoid distorted fonts in IE while fading */
}

.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(images/loading.gif) no-repeat 0 50%;
}

/* Additional IE specific bug fixes... */
* html .tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}

*:first-child + html .tabs-nav { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}

.tabs-container {
    border: solid 1px #ccc;
    padding-left: 5px;
    padding-top: 10px;
    text-align: justify;
    vertical-align: top;
    /*min-height:200px;*/
    width: 98%;
}

    .tabs-container img.imgDaiDien {
        width: 140px;
    }

* > .tabs-container {
    z-index: 3;
    text-align: justify;
    vertical-align: top;
    width: 98%;
    /*min-height:200px;*/
    padding-left: 5px;
    padding-top: 10px;
}
/*====================================*/
.divTinDauTien {
    margin-right: 5px;
    height: 199px;
    width: 46%;
    float: left;
    z-index: 2;
    background: url('images/toplist-content.gif') no-repeat top left;
    padding-left: 2px;
    padding-top: 2px;
}

.divTinTiepTheo {
    width: 49%;
    height: auto;
    float: right;
    z-index: 2;
    border: solid 0px #C3C9CF;
    padding-right: 10px;
}

body {
    background-color: transparent !important;
}

    body .LoginTemplate .logo {
        padding-top: 10px !important;
        position: absolute;
        top: 0px;
        text-align: center;
        width: 100%;
        left: 0px;
        right: 0px;
    }

        body .LoginTemplate .logo h2 {
            font-size: 25px;
            color: #3e3e3e;
            text-shadow: 2px 2px 4px rgba(185, 185, 185, 0.78);
        }

        body .LoginTemplate .logo h4 {
            padding-top: 5px;
            color: #37393a;
            text-shadow: 2px 2px 4px rgba(185, 185, 185, 0.78);
        }

    body .LoginTemplate {
        width: 350px !important;
        border: 0px;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
        margin: 250px auto !important;
    }

        body .LoginTemplate .dnnFormMessage.dnnFormError,
        body .LoginTemplate .dnnFormMessage.dnnFormValidationSummary {
            padding: 8px 18px;
            background-color: rgb(202, 0, 0);
            border-color: rgb(202, 0, 0);
        }

            body .LoginTemplate .dnnFormMessage.dnnFormError span,
            body .LoginTemplate .dnnFormMessage.dnnFormValidationSummary span {
                color: #fff;
            }

        body .LoginTemplate .panel-heading {
            border: 0px;
        }

            body .LoginTemplate .panel-heading .panel-title {
                box-shadow: 0 10px 30px -12px rgba(0, 69, 105, 0.42), 0 4px 25px 0px rgba(0, 69, 105, 0.12), 0 8px 10px -5px rgba(0, 69, 105, 0.2);
                margin: -20px 15px 0;
                border-radius: 3px;
                padding: 10px 20px;
                background-color: #0182c6;
                position: relative;
                display: inline-block;
                top: -7px
            }

                body .LoginTemplate .panel-heading .panel-title:before {
                    content: "\e008";
                    position: relative;
                    font-size: 25px;
                    padding-left: 0px;
                    top: 5px;
                    padding-right: 10px;
                    color: #fff;
                    display: inline-block;
                    font-family: 'Glyphicons Halflings';
                    font-style: normal;
                    font-weight: 400;
                    line-height: 1;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                }

                body .LoginTemplate .panel-heading .panel-title .Head {
                    font-weight: normal;
                    color: #fff;
                    padding-left: 0px;
                }

        body .LoginTemplate .panel-body {
            padding: 0px 40px;
        }

.LoginTemplate .LoginPanel .dnnFormItem > .dnnLabel {
    display: block;
    float: none;
    position: relative;
    width: 100%;
    padding-right: 20px;
    margin-right: 18px;
    overflow: visible;
    text-align: left;
}

.LoginTemplate .LoginPanel .LoginStyle .dnnFormItem:nth-child(6) .dnnLabel,
.LoginTemplate .LoginPanel .LoginStyle .dnnFormItem:nth-child(6) {
    display: none;
}

.LoginTemplate .panel-body .dnnLoginService input[type="text"],
.LoginTemplate .panel-body .dnnLoginService input[type="password"] {
    width: 100%;
}

.menu_style {
    background-color: #398439;
    border: 0px solid #326D32;
    height: 35px;
    background-image: url(images/bg_menu.jpg)
}

/*--------- dnn menu style ----------*/
/* main menu td */
.main_dnnmenu_bar {
    cursor: pointer;
    font-size: 11px;
    background-color: transparent;
    outline: none;
}

/*  Main Menu Normal  */
.main_dnnmenu_rootitem {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    line-height: 35px;
    margin-right: 1px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 7px;
    padding-bottom: 9px;
    background-image: url(images/menu_space.jpg);
    background-repeat: no-repeat;
    /*-webkit-transition: all 0.15s ease;
        -moz-transition: all 0.15s ease;
        -o-transition: all 0.15s ease;
        transition: all 0.15s ease;*/
}

/*  Main menu hover  */
.main_dnnmenu_rootitem_hover {
    color: #398439;
    background: #ddd !important;
    padding-top: 7px;
    padding-bottom: 9px;
    background-image: url(images/menu_space.jpg);
    background-repeat: no-repeat;
}

/*  Main menu selected  */
.main_dnnmenu_rootitem_selected {
    color: #398439;
    background: #ddd;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    line-height: 35px;
    margin-right: 1px;
    padding-left: 20px;
    padding-right: 20px;
    background-image: url(images/menu_space.jpg);
    background-repeat: no-repeat;
    padding-top: 7px;
    padding-bottom: 9px;
}

/*  SUB Menu Normal */
.main_dnnmenu_submenu {
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    z-index: 9999;
}

    .main_dnnmenu_submenu td {
        /*background-color:#E1E8ED;*/
        background-color: #fff;
        border-bottom: 1px solid #ddd;
        font-weight: 300;
        z-index: 1000;
        font-size: 14px;
        text-align: left;
        color: #000;
        line-height: 35px;
        padding: 0px 5px;
        margin: 0px;
    }

/*  SUB Menu hover & selected */
.main_dnnmenu_itemhover td, .main_dnnmenu_itemselected td {
    background-color: #ddd;
    color: #398439;
    /*color:#000;*/
}

.main_dnnmenu_break {
    height: 2px;
    background-color: #0072bb;
}

/* Module Action Menus */
.ModuleTitle_SubMenu {
    border: 1px solid #0072bb;
}

    .ModuleTitle_SubMenu td {
        background-color: #fff;
        white-space: nowrap;
    }

.ModuleTitle_MenuIcon {
    background-color: #fff;
    border: none;
    padding: 0px 2px;
}

.ModuleTitle_MenuItemSel td, .ModuleTitle_MenuItemSel .ModuleTitle_MenuIcon {
    color: #fff;
}

.ModuleTitle_MenuBreak td, .ModuleTitle_MenuBreak .ModuleTitle_MenuIcon {
    height: 2px;
    background-color: #D5E0FF;
}

/*************************/
/* Custom Bootstrap */
/*************************/
.dropdown-menu {
    padding: 0px;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -2px;
        margin-left: -1px;
        -webkit-border-radius: 0 6px 6px 6px;
        -moz-border-radius: 0 6px 6px;
        border-radius: 0 6px 6px 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 13px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #fff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            -webkit-border-radius: 6px 0 6px 6px;
            -moz-border-radius: 6px 0 6px 6px;
            border-radius: 6px 0 6px 6px;
        }

.form-horizontal {
    padding-left: 12px;
    padding-right: 12px;
}

#contentWrapper .form-horizontal .col-xs-1, #contentWrapper .form-horizontal .col-sm-1, #contentWrapper .form-horizontal .col-md-1, #contentWrapper .form-horizontal .col-lg-1, #contentWrapper .form-horizontal .col-xs-2, #contentWrapper .form-horizontal .col-sm-2, #contentWrapper .form-horizontal .col-md-2, #contentWrapper .form-horizontal .col-lg-2, #contentWrapper .form-horizontal .col-xs-3, #contentWrapper .form-horizontal .col-sm-3, #contentWrapper .form-horizontal .col-md-3, #contentWrapper .form-horizontal .col-lg-3, #contentWrapper .form-horizontal .col-xs-4, #contentWrapper .form-horizontal .col-sm-4, #contentWrapper .form-horizontal .col-md-4, #contentWrapper .form-horizontal .col-lg-4, #contentWrapper .form-horizontal .col-xs-5, #contentWrapper .form-horizontal .col-sm-5, #contentWrapper .form-horizontal .col-md-5, #contentWrapper .form-horizontal .col-lg-5, #contentWrapper .form-horizontal .col-xs-6, #contentWrapper .form-horizontal .col-sm-6, #contentWrapper .form-horizontal .col-md-6, #contentWrapper .form-horizontal .col-lg-6, #contentWrapper .form-horizontal .col-xs-7, #contentWrapper .form-horizontal .col-sm-7, #contentWrapper .form-horizontal .col-md-7, #contentWrapper .form-horizontal .col-lg-7, #contentWrapper .form-horizontal .col-xs-8, #contentWrapper .form-horizontal .col-sm-8, #contentWrapper .form-horizontal .col-md-8, #contentWrapper .form-horizontal .col-lg-8, #contentWrapper .form-horizontal .col-xs-9, #contentWrapper .form-horizontal .col-sm-9, #contentWrapper .form-horizontal .col-md-9, #contentWrapper .form-horizontal .col-lg-9, #contentWrapper .form-horizontal .col-xs-10, #contentWrapper .form-horizontal .col-sm-10, #contentWrapper .form-horizontal .col-md-10, #contentWrapper .form-horizontal .col-lg-10, #contentWrapper .form-horizontal .col-xs-11, #contentWrapper .form-horizontal .col-sm-11, #contentWrapper .form-horizontal .col-md-11, #contentWrapper .form-horizontal .col-lg-11, #contentWrapper .form-horizontal .col-xs-12, #contentWrapper .form-horizontal .col-sm-12, #contentWrapper .form-horizontal .col-md-12, #contentWrapper .form-horizontal .col-lg-12 {
    padding-left: 5px;
    padding-right: 5px;
}

.form-horizontal .control-label {
    color: rgb(51, 51, 51);
}

.form-horizontal .control-field {
    padding-top: 7px;
    font-weight: bold;
}

@media(max-width:768px) {
    .form-horizontal .control-field {
        font-size: 12px;
    }
}

.form-horizontal .control-label,
.form-horizontal .control-field {
    line-height: 24px;
}

/*------------------------------------------------*/
/* BTN-ORANE */
/*------------------------------------------------*/

a.btn_orange, input.btn_orange, input.btn_orange, input.btn_orange {
    color: #fff;
    background-color: #CD8115;
    border-color: #BE750C;
}

a.btn-primary, a.btn-primary:focus, input[type="button"].btn-primary:hover, input[type="submit"].btn-primary:hover,
input[type="reset"].btn-primary:hover input[type="button"].btn-primary:focus, input[type="submit"].btn-primary:focus, input[type="reset"].btn-primary:focus input[type="button"].btn-primary:active, input[type="submit"].btn-primary:active, input[type="reset"].btn-primary:active input[type="button"].btn-primary.active, input[type="submit"].btn-primary.active, input[type="reset"].btn-primary.active input[type="button"].btn-primary.focus, input[type="submit"].btn-primary.focus, input[type="reset"].btn-primary.focus {
    color: #ffffff;
    background-color: #1f91f3 !important;
    border-color: #1f91f3 !important;
}

a.btn-default, a.btn-default:focus, input[type="button"].btn-default:hover, input[type="submit"].btn-default:hover,
input[type="reset"].btn-default:hover input[type="button"].btn-default:focus, input[type="submit"].btn-default:focus, input[type="reset"].btn-default:focus input[type="button"].btn-default:active, input[type="submit"].btn-default:active, input[type="reset"].btn-default:active input[type="button"].btn-default.active, input[type="submit"].btn-default.active, input[type="reset"].btn-default.active input[type="button"].btn-default.focus, input[type="submit"].btn-default.focus, input[type="reset"].btn-default.focus {
    color: #333;
    background-color: #eee !important;
    border-color: #ddd !important;
}

.btn-sm {
    padding: 5px 10px 5px 10px !important;
}

a.btn_orange:hover, a.btn_orange:focus, input[type="button"].btn_orange:hover, input[type="submit"].btn_orange:hover, input[type="reset"].btn_orange:hover input[type="button"].btn_orange:focus, input[type="submit"].btn_orange:focus, input[type="reset"].btn_orange:focus input[type="button"].btn_orange:active, input[type="submit"].btn_orange:active, input[type="reset"].btn_orange:active input[type="button"].btn_orange.active, input[type="submit"].btn_orange.active, input[type="reset"].btn_orange.active input[type="button"].btn_orange.focus, input[type="submit"].btn_orange.focus, input[type="reset"].btn_orange.focus {
    color: #ffffff;
    background-color: #A86302;
    border-color: #995B02;
}

input[type="button"].btn_orange.disabled, input[type="submit"].btn_orange.disabled, input.btn_orange.disabled,
input[type="button"].btn_orange[disabled], input[type="submit"].btn_orange[disabled], input.btn_orange[disabled],
[disabled] input[type="button"].btn_orange, [disabled] input[type="submit"].btn_orange, [disabled] input.btn_orange,
input[type="button"].btn_orange.disabled:hover, input[type="submit"].btn_orange.disabled:hover, input.btn_orange.disabled:hover,
input[type="button"].btn_orange[disabled]:hover, input[type="submit"].btn_orange[disabled]:hover, input.btn_orange[disabled]:hover,
[disabled] input[type="button"].btn_orange:hover, [disabled] input[type="submit"].btn_orange:hover, [disabled] input.btn_orange:hover,
input[type="button"].btn_orange.disabled:focus, input[type="submit"].btn_orange.disabled:focus, input.btn_orange.disabled:focus,
input[type="button"].btn_orange[disabled]:focus, input[type="submit"].btn_orange[disabled]:focus, input.btn_orange[disabled]:focus,
[disabled] input[type="button"].btn_orange:focus, [disabled] input[type="submit"].btn_orange:focus, [disabled] input.btn_orange:focus,
input[type="button"].btn_orange.disabled.focus, input[type="submit"].btn_orange.disabled.focus, input.btn_orange.disabled.focus,
input.btn_orange[disabled].focus, input[type="submit"].btn_orange[disabled].focus, input.btn_orange[disabled].focus,
[disabled] input[type="button"].btn_orange.focus, [disabled] input.btn_orange.focus, [disabled] input.btn_orange.focus,
input[type="button"].btn_orange.disabled:active, input[type="submit"].btn_orange.disabled:active, input.btn_orange.disabled:active,
input[type="button"].btn_orange[disabled]:active, input[type="submit"].btn_orange[disabled]:active, input.btn_orange[disabled]:active,
[disabled] input[type="button"].btn_orange:active, [disabled] input[type="submit"].btn_orange:active, [disabled] input.btn_orange:active {
    background-color: #C8B9A4;
    border-color: #E2CFB5;
    cursor: no-drop;
}
/*------------------------------------------------*/
/* SHADOW - RADIUS */
/*------------------------------------------------*/
.none-radius {
    border-radius: 0px 0px 0px 0px !important;
}

.none-shadow {
    box-shadow: none !important;
}

.shadow-btn-sm {
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.35);
}

/*------------------------------------------------*/
/* HIDDENT */
/*------------------------------------------------*/
@media(max-width:400px) {
    .hidden-400 {
        display: none !important;
    }
}

@media(max-width:1200px) {
    .hidden-1200 {
        display: none !important;
    }
}

/*------------------------------------------------*/
/* VISIBLE */
/*------------------------------------------------*/
@media(max-width:400px) {
    .visible-400 {
        display: block !important;
    }
}

@media(max-width:1200px) {
    .visible-1200 {
        display: block !important;
    }
}




@media (min-width: 768px) {
    .navbar-nav {
        /*float: none !important;*/
        margin: 0;
    }
}

/*------------------------------------------------*/
/* VISIBLE */
/*------------------------------------------------*/

body .form-horizontal  .form-group {
    margin-bottom: 8px;
    margin-right: -5px;
    margin-left: -5px;
}
/*------------------------------------------------*/
/* ICON GROUP */
/*------------------------------------------------*/

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #f4f4f4;
    opacity: 1;
    box-shadow: none;
    border-color: #e1e1e1;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: 12px;
    padding-right: 12px;
}


/*************************/
/* Custom Telerik Rad */
/*************************/

/* RAD PICKER */
.form .RadPicker_Default .riTextBox {
    padding: 4px 6px 4px 15px !important;
    color: #555;
    height: 32px;
    border-radius: 5px;
}

html body .RadInput_Default .riDisabled, html body .RadInput_Disabled_Default {
    background: #eee !important;
}

.form .RadPicker.RadPicker_Default.requirements .riTextBox,
.form .RadSearchBox.requirements .rsbInput {
    background-image: url(/Portals/_default/Skins/HOTRODOANHNGHIEP/img/requirements.png);
    background-repeat: no-repeat;
}

.form .RadSearchBox.form-control {
    padding: 0px;
}

.rcbInput:disabled {
    background: #eee !important;
    cursor: not-allowed !important;
}

.custom-radcombox table tbody {
    width: 100% !important;
    display: block;
}

    .custom-radcombox table tbody tr {
        width: 100% !important;
        display: block;
    }

        .custom-radcombox table tbody tr td {
            width: 100% !important;
            height: 30px !important;
        }

            .custom-radcombox table tbody tr td.rcbInputCell {
                height: 30px !important;
                padding: 0px;
            }


.rcbHeader ul,
.rcbFooter ul,
.rcbItem ul,
.rcbHovered ul,
.rcbDisabled ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: inline-block;
    list-style-type: none;
}

.exampleRadComboBox.RadComboBoxDropDown .rcbHeader {
    padding: 5px 27px 4px 7px;
}

.rcbScroll {
    overflow: scroll !important;
    overflow-x: hidden !important;
}

.rad_header {
    text-align: center;
}

.multipleRowsColumns .rcbItem,
.multipleRowsColumns .rcbHovered {
    float: left;
    margin: 0 1px;
    min-height: 13px;
    overflow: hidden;
    padding: 2px 19px 2px 6px;
    width: 125px;
}

.rcbHeader .col1, .rcbHeader .col2, .rcbHeader .col3, .rcbHeader .col4, .rcbHeader .col5 {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.RadComboBoxDropDown_Simple .rcbHovered {
    padding-bottom: 8px !important;
    padding-top: 8px !important;
}

ul.rcbList li.rcbItem {
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 8px !important;
    padding-top: 8px !important;
}

    ul.rcbList li.rcbItem:hover {
        background-color: #fff0a9;
    }

.custom-radcombox table tbody tr td.rcbInputCell input.form-control {
    width: 100% !important;
    padding: 5px 12px 5px 15px;
    
    font-size: 14px;
    font-style: normal;
    color: rgb(85, 85, 85);
    height: 30px;
}

.RadComboBox_Simple .rcbInputCell, .RadComboBox_Simple .rcbArrowCell {
    border: 1px solid #ccc !important;
    background-position: -1px -13px !important;
}

.custom-radcombox .custom-radcombox table tbody tr td.rcbInputCell input.form-control:hover {
    color: rgb(85, 85, 85);
}

.custom-radcombox table tbody tr td.rcbInputCell input.form-control:focus {
    border-color: #66afe9;
    color: rgb(85, 85, 85);
    outline: 0;
    outline-color: initial;
    outline-style: initial;
    outline-width: 0px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.RadComboBoxDropDown .rcbItem, .RadComboBoxDropDown .rcbHovered, .RadComboBoxDropDown .rcbDisabled, .RadComboBoxDropDown .rcbLoading, .RadComboBoxDropDown .rcbCheckAllItems, .RadComboBoxDropDown .rcbCheckAllItemsHovered {
    font-size: 14px;
    padding: 8px !important;
}

.custom-radcombox.RadSearchBox_Silk .rsbInner {
    height: 24px;
    border-color: #fff;
    /* color: #555; */
    border: 0px;
    background-color: white;
}

.RadSearchBox.custom-radcombox {
    margin: 0;
    padding: 0;
    width: auto;
    text-align: left;
    vertical-align: middle;
    _vertical-align: top;
    white-space: nowrap;
}

    .RadSearchBox.custom-radcombox .rsbInput {
        margin: 0px 0px 0px 0px;
        width: 100%;
        display: -webkit-inline-box;
        height: 33px;
        padding-left: 15px;
    }

        .RadSearchBox.custom-radcombox .rsbInput.rsbEmptyMessage {
            font-size: 14px;
            color: #848383;
            font-style: normal;
        }

.RadPicker_Default .rcCalPopup {
    /*background-color:none !important;
        background-image:url(images/Calendar.png) !important;
        background-repeat:no-repeat;
        background-size:cover;
        width: 23px !important;*/
    /*background-color: none !important;*/
    background-image: url(/Portals/_default/Skins/HOTRODOANHNGHIEP/img/Calendar.png) !important;
    background-repeat: no-repeat;
    /*background-size: cover;*/
    width: 23px !important;
    background-size: 80%;
    /*background-position-x: 0px;*/
    /*background-position: unset;*/
    background-position: center !important;
    padding-left: 10px;
    /*display: inline-block;*/
    position: relative;
}

.RadPicker_Default a.rcCalPopup:hover, .RadPicker_Default a.rcCalPopup:focus, .RadPicker_Default a.rcCalPopup:active {
    background-position: center !important;
    background-color: #ddd;
}

.RadPicker_Default .rcCalPopup:before {
    content: "\e109";
}

@-moz-document url-prefix() {
    .RadPicker_Default .rcCalPopup {
        right: -5px;
    }
}

.RadComboBox_Simple .rcbReadOnly .rcbInputCell {
    background-color: transparent !important;
}

.RadComboBox.custom-radcombox .rcbDisabled {
    opacity: 1;
}

/*------------------------------------------------*/
/*  MARGRIN */
/*------------------------------------------------*/
/*--MARGRIN TOP---*/
.mr-t0 {
    margin-top: 0px !important;
}

.mr-t1 {
    margin-top: 1px !important;
}

.mr-t2 {
    margin-top: 2px !important;
}

.mr-t3 {
    margin-top: 3px !important;
}

.mr-t4 {
    margin-top: 4px !important;
}

.mr-t5 {
    margin-top: 5px !important;
}

.mr-t6 {
    margin-top: 6px !important;
}

.mr-t7 {
    margin-top: 7px !important;
}

.mr-t8 {
    margin-top: 8px !important;
}

.mr-t9 {
    margin-top: 9px !important;
}

.mr-t10 {
    margin-top: 10px !important;
}

.mr-t11 {
    margin-top: 11px !important;
}

.mr-t12 {
    margin-top: 12px !important;
}

.mr-t13 {
    margin-top: 13px !important;
}

.mr-t14 {
    margin-top: 14px !important;
}

.mr-t15 {
    margin-top: 15px !important;
}

.mr-t16 {
    margin-top: 16px !important;
}

.mr-t17 {
    margin-top: 17px !important;
}

.mr-t18 {
    margin-top: 18px !important;
}

.mr-t19 {
    margin-top: 19px !important;
}

.mr-t20 {
    margin-top: 20px !important;
}
/*--MARGRIN RIGHT---*/
.mr-r0 {
    margin-right: 0px !important;
}

.mr-r1 {
    margin-right: 1px !important;
}

.mr-r2 {
    margin-right: 2px !important;
}

.mr-r3 {
    margin-right: 3px !important;
}

.mr-r4 {
    margin-right: 4px !important;
}

.mr-r5 {
    margin-right: 5px !important;
}

.mr-r6 {
    margin-right: 6px !important;
}

.mr-r7 {
    margin-right: 7px !important;
}

.mr-r8 {
    margin-right: 8px !important;
}

.mr-r9 {
    margin-right: 9px !important;
}

.mr-r10 {
    margin-right: 10px !important;
}

.mr-r11 {
    margin-right: 11px !important;
}

.mr-r12 {
    margin-right: 12px !important;
}

.mr-r13 {
    margin-right: 13px !important;
}

.mr-r14 {
    margin-right: 14px !important;
}

.mr-r15 {
    margin-right: 15px !important;
}

.mr-r16 {
    margin-right: 16px !important;
}

.mr-r17 {
    margin-right: 17px !important;
}

.mr-r18 {
    margin-right: 18px !important;
}

.mr-r19 {
    margin-right: 19px !important;
}

.mr-r20 {
    margin-right: 20px !important;
}
/*--MARGRIN LEFT---*/
.mr-l0 {
    margin-left: 0px !important;
}

.mr-l1 {
    margin-left: 1px !important;
}

.mr-l2 {
    margin-left: 2px !important;
}

.mr-l3 {
    margin-left: 3px !important;
}

.mr-l4 {
    margin-left: 4px !important;
}

.mr-l5 {
    margin-left: 5px !important;
}

.mr-l6 {
    margin-left: 6px !important;
}

.mr-l7 {
    margin-left: 7px !important;
}

.mr-l8 {
    margin-left: 8px !important;
}

.mr-l9 {
    margin-left: 9px !important;
}

.mr-l10 {
    margin-left: 10px !important;
}

.mr-l11 {
    margin-left: 11px !important;
}

.mr-l12 {
    margin-left: 12px !important;
}

.mr-l13 {
    margin-left: 13px !important;
}

.mr-l14 {
    margin-left: 14px !important;
}

.mr-l15 {
    margin-left: 15px !important;
}

.mr-l16 {
    margin-left: 16px !important;
}

.mr-l17 {
    margin-left: 17px !important;
}

.mr-l18 {
    margin-left: 18px !important;
}

.mr-l19 {
    margin-left: 19px !important;
}

.mr-l20 {
    margin-left: 20px !important;
}

.mr-l30 {
    margin-left: 30px !important;
}
/*--MARGRIN BOTTOM---*/
.mr-b0 {
    margin-bottom: 0px !important;
}

.mr-b1 {
    margin-bottom: 1px !important;
}

.mr-b2 {
    margin-bottom: 2px !important;
}

.mr-b3 {
    margin-bottom: 3px !important;
}

.mr-b4 {
    margin-bottom: 4px !important;
}

.mr-b5 {
    margin-bottom: 5px !important;
}

.mr-b6 {
    margin-bottom: 6px !important;
}

.mr-b7 {
    margin-bottom: 7px !important;
}

.mr-b8 {
    margin-bottom: 8px !important;
}

.mr-b9 {
    margin-bottom: 9px !important;
}

.mr-b10 {
    margin-bottom: 10px !important;
}

.mr-b11 {
    margin-bottom: 11px !important;
}

.mr-b12 {
    margin-bottom: 12px !important;
}

.mr-b13 {
    margin-bottom: 13px !important;
}

.mr-b14 {
    margin-bottom: 14px !important;
}

.mr-b15 {
    margin-bottom: 15px !important;
}

.mr-b16 {
    margin-bottom: 16px !important;
}

.mr-b17 {
    margin-bottom: 17px !important;
}

.mr-b18 {
    margin-bottom: 18px !important;
}

.mr-b19 {
    margin-bottom: 19px !important;
}

.mr-b20 {
    margin-bottom: 20px !important;
}
/*--MARGRIN---*/
.mr-auto {
    margin: 0 auto !important;
}

.mr-0 {
    margin: 0px !important;
}

.mr-1 {
    margin: 1px !important;
}

.mr-2 {
    margin: 2px !important;
}

.mr-3 {
    margin: 3px !important;
}

.mr-4 {
    margin: 4px !important;
}

.mr-5 {
    margin: 5px !important;
}

.mr-6 {
    margin: 6px !important;
}

.mr-7 {
    margin: 7px !important;
}

.mr-8 {
    margin: 8px !important;
}

.mr-9 {
    margin: 9px !important;
}

.mr-10 {
    margin: 10px !important;
}

.mr-11 {
    margin: 11px !important;
}

.mr-12 {
    margin: 12px !important;
}

.mr-13 {
    margin: 13px !important;
}

.mr-14 {
    margin: 14px !important;
}

.mr-15 {
    margin: 15px !important;
}

.mr-16 {
    margin: 16px !important;
}

.mr-17 {
    margin: 17px !important;
}

.mr-18 {
    margin: 18px !important;
}

.mr-19 {
    margin: 19px !important;
}

.mr-20 {
    margin: 20px !important;
}
/*------------------------------------------------*/
/*  PADDING */
/*------------------------------------------------*/
/*--PADDING TOP---*/
.pd-t0 {
    padding-top: 0px !important;
}

.pd-t1 {
    padding-top: 1px !important;
}

.pd-t2 {
    padding-top: 2px !important;
}

.pd-t3 {
    padding-top: 3px !important;
}

.pd-t4 {
    padding-top: 4px !important;
}

.pd-t5 {
    padding-top: 5px !important;
}

.pd-t6 {
    padding-top: 6px !important;
}

.pd-t7 {
    padding-top: 7px !important;
}

.pd-t8 {
    padding-top: 8px !important;
}

.pd-t9 {
    padding-top: 9px !important;
}

.pd-t10 {
    padding-top: 10px !important;
}

.pd-t11 {
    padding-top: 11px !important;
}

.pd-t12 {
    padding-top: 12px !important;
}

.pd-t13 {
    padding-top: 13px !important;
}

.pd-t14 {
    padding-top: 14px !important;
}

.pd-t15 {
    padding-top: 15px !important;
}

.pd-t16 {
    padding-top: 16px !important;
}

.pd-t17 {
    padding-top: 17px !important;
}

.pd-t18 {
    padding-top: 18px !important;
}

.pd-t19 {
    padding-top: 19px !important;
}

.pd-t20 {
    padding-top: 20px !important;
}

.pd-t30 {
    padding-top: 30px !important;
}
/*--PADDING RIGHT---*/
.pd-r0 {
    padding-right: 0px !important;
}

.pd-r1 {
    padding-right: 1px !important;
}

.pd-r2 {
    padding-right: 2px !important;
}

.pd-r3 {
    padding-right: 3px !important;
}

.pd-r4 {
    padding-right: 4px !important;
}

.pd-r5 {
    padding-right: 5px !important;
}

.pd-r6 {
    padding-right: 6px !important;
}

.pd-r7 {
    padding-right: 7px !important;
}

.pd-r8 {
    padding-right: 8px !important;
}

.pd-r9 {
    padding-right: 9px !important;
}

.pd-r10 {
    padding-right: 10px !important;
}

.pd-r11 {
    padding-right: 11px !important;
}

.pd-r12 {
    padding-right: 12px !important;
}

.pd-r13 {
    padding-right: 13px !important;
}

.pd-r14 {
    padding-right: 14px !important;
}

.pd-r15 {
    padding-right: 15px !important;
}

.pd-r16 {
    padding-right: 16px !important;
}

.pd-r17 {
    padding-right: 17px !important;
}

.pd-r18 {
    padding-right: 18px !important;
}

.pd-r19 {
    padding-right: 19px !important;
}

.pd-r20 {
    padding-right: 20px !important;
}

.pd-r30 {
    padding-right: 30px !important;
}
/*--PADDING LEFT---*/
.pd-l0 {
    padding-left: 0px !important;
}

.pd-l1 {
    padding-left: 1px !important;
}

.pd-l2 {
    padding-left: 2px !important;
}

.pd-l3 {
    padding-left: 3px !important;
}

.pd-l4 {
    padding-left: 4px !important;
}

.pd-l5 {
    padding-left: 5px !important;
}

.pd-l6 {
    padding-left: 6px !important;
}

.pd-l7 {
    padding-left: 7px !important;
}

.pd-l8 {
    padding-left: 8px !important;
}

.pd-l9 {
    padding-left: 9px !important;
}

.pd-l10 {
    padding-left: 10px !important;
}

.pd-l11 {
    padding-left: 11px !important;
}

.pd-l12 {
    padding-left: 12px !important;
}

.pd-l13 {
    padding-left: 13px !important;
}

.pd-l14 {
    padding-left: 14px !important;
}

.pd-l15 {
    padding-left: 15px !important;
}

.pd-l16 {
    padding-left: 16px !important;
}

.pd-l17 {
    padding-left: 17px !important;
}

.pd-l18 {
    padding-left: 18px !important;
}

.pd-l19 {
    padding-left: 19px !important;
}

.pd-l20 {
    padding-left: 20px !important;
}

.pd-l30 {
    padding-left: 30px !important;
}
/*--PADDING BOTTOM---*/
.pd-b0 {
    padding-bottom: 0px !important;
}

.pd-b1 {
    padding-bottom: 1px !important;
}

.pd-b2 {
    padding-bottom: 2px !important;
}

.pd-b3 {
    padding-bottom: 3px !important;
}

.pd-b4 {
    padding-bottom: 4px !important;
}

.pd-b5 {
    padding-bottom: 5px !important;
}

.pd-b6 {
    padding-bottom: 6px !important;
}

.pd-b7 {
    padding-bottom: 7px !important;
}

.pd-b8 {
    padding-bottom: 8px !important;
}

.pd-b9 {
    padding-bottom: 9px !important;
}

.pd-b10 {
    padding-bottom: 10px !important;
}

.pd-b11 {
    padding-bottom: 11px !important;
}

.pd-b12 {
    padding-bottom: 12px !important;
}

.pd-b13 {
    padding-bottom: 13px !important;
}

.pd-b14 {
    padding-bottom: 14px !important;
}

.pd-b15 {
    padding-bottom: 15px !important;
}

.pd-b16 {
    padding-bottom: 16px !important;
}

.pd-b17 {
    padding-bottom: 17px !important;
}

.pd-b18 {
    padding-bottom: 18px !important;
}

.pd-b19 {
    padding-bottom: 19px !important;
}

.pd-b20 {
    padding-bottom: 20px !important;
}

.pd-b30 {
    padding-bottom: 30px !important;
}
/*--PADDING---*/
.pd-0 {
    padding: 0px !important;
}

.pd-1 {
    padding: 1px !important;
}

.pd-2 {
    padding: 2px !important;
}

.pd-3 {
    padding: 3px !important;
}

.pd-4 {
    padding: 4px !important;
}

.pd-5 {
    padding: 5px !important;
}

.pd-6 {
    padding: 6px !important;
}

.pd-7 {
    padding: 7px !important;
}

.pd-8 {
    padding: 8px !important;
}

.pd-9 {
    padding: 9px !important;
}

.pd-10 {
    padding: 10px !important;
}

.pd-11 {
    padding: 11px !important;
}

.pd-12 {
    padding: 12px !important;
}

.pd-13 {
    padding: 13px !important;
}

.pd-14 {
    padding: 14px !important;
}

.pd-15 {
    padding: 15px !important;
}

.pd-16 {
    padding: 16px !important;
}

.pd-17 {
    padding: 17px !important;
}

.pd-18 {
    padding: 18px !important;
}

.pd-19 {
    padding: 19px !important;
}

.pd-20 {
    padding: 20px !important;
}

.pd-30 {
    padding: 30px !important;
}
/* text-align */
.aligncenter {
    text-align: center !important;
}

.alignleft {
    text-align: left !important;
}

.alignright {
    text-align: right !important;
}

.none_pading {
    padding: 0px 0px 0px 0px !important;
}
/*height*/
.height40 {
    height: 40px;
}

.height60 {
    height: 60px;
}

#contentWrapper .col-xs-1, #contentWrapper .col-sm-1, #contentWrapper .col-md-1, #contentWrapper .col-lg-1, #contentWrapper .col-xs-2, #contentWrapper .col-sm-2, #contentWrapper .col-md-2, #contentWrapper .col-lg-2, #contentWrapper .col-xs-3, #contentWrapper .col-sm-3, #contentWrapper .col-md-3, #contentWrapper .col-lg-3, #contentWrapper .col-xs-4, #contentWrapper .col-sm-4, #contentWrapper .col-md-4, #contentWrapper .col-lg-4, #contentWrapper .col-xs-5, #contentWrapper .col-sm-5, #contentWrapper .col-md-5, #contentWrapper .col-lg-5, #contentWrapper .col-xs-6, #contentWrapper .col-sm-6, #contentWrapper .col-md-6, #contentWrapper .col-lg-6, #contentWrapper .col-xs-7, #contentWrapper .col-sm-7, #contentWrapper .col-md-7, #contentWrapper .col-lg-7, #contentWrapper .col-xs-8, #contentWrapper .col-sm-8, #contentWrapper .col-md-8, #contentWrapper .col-lg-8, #contentWrapper .col-xs-9, #contentWrapper .col-sm-9, #contentWrapper .col-md-9, #contentWrapper .col-lg-9, #contentWrapper .col-xs-10, #contentWrapper .col-sm-10, #contentWrapper .col-md-10, #contentWrapper .col-lg-10, #contentWrapper .col-xs-11, #contentWrapper .col-sm-11, #contentWrapper .col-md-11, #contentWrapper .col-lg-11, #contentWrapper .col-xs-12, #contentWrapper .col-sm-12, #contentWrapper .col-md-12, #contentWrapper .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
}

.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

/*font*/
.font {
}

.fz13 {
    font-size: 13px;
}

.fz14 {
    font-size: 14px !important;
}

.fz15 {
    font-size: 15px;
}

.fz16 {
    font-size: 16px;
}

.fz17 {
    font-size: 17px;
}

.fz18 {
    font-size: 18px;
}

.fz19 {
    font-size: 19px;
}

.fz20 {
    font-size: 20px;
}

.fz21 {
    font-size: 21px;
}

.fw-b {
    font-weight: bold;
}

/*none*/
.dpnone {
    display: none;
}
/*Width*/
.w50 {
    width: 50%;
}

.w55 {
    width: 55%;
}

.w40 {
    width: 40%;
}

.w60 {
    width: 60%;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}
/* lineheight */
.lineheight25 {
    line-height: 25px;
}

.lineheight34 {
    line-height: 34px;
}

.lineheight38 {
    line-height: 38px;
}

/*------------------------------------------------*/
/* DISPLAY */
/*------------------------------------------------*/
.dl-block {
    display: block !important;
}

.dl-inline-block {
    display: inline-block !important;
}

.dl-none {
    display: none !important;
}
/*------------------------------------------------*/
/* MIN WIDTH */
/*------------------------------------------------*/
.min-width-10 {
    min-width: 10px;
}

.min-width-20 {
    min-width: 20px;
}

.min-width-30 {
    min-width: 30px;
}

.min-width-40 {
    min-width: 40px;
}

.min-width-50 {
    min-width: 50px;
}

.min-width-60 {
    min-width: 60px;
}

.min-width-70 {
    min-width: 70px;
}

.min-width-80 {
    min-width: 80px;
}

.min-width-90 {
    min-width: 90px;
}

.min-width-100 {
    min-width: 100px;
}

.min-width-110 {
    min-width: 110px;
}

.min-width-120 {
    min-width: 120px;
}

.min-width-130 {
    min-width: 130px;
}

.min-width-140 {
    min-width: 140px;
}

.min-width-150 {
    min-width: 150px;
}

.min-width-160 {
    min-width: 160px;
}

.min-width-170 {
    min-width: 170px;
}

.min-width-180 {
    min-width: 180px;
}

.min-width-190 {
    min-width: 190px;
}

.min-width-200 {
    min-width: 200px;
}

.min-width-210 {
    min-width: 210px;
}

.min-width-220 {
    min-width: 220px;
}

.min-width-230 {
    min-width: 230px;
}

.min-width-240 {
    min-width: 240px;
}

.min-width-250 {
    min-width: 250px;
}

.min-width-260 {
    min-width: 260px;
}

.min-width-270 {
    min-width: 270px;
}

.min-width-280 {
    min-width: 280px;
}

.min-width-290 {
    min-width: 290px;
}

.min-width-300 {
    min-width: 300px;
}

.toast-title {
    font-weight: bold;
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

    .toast-message a,
    .toast-message label {
        color: #ffffff;
    }

        .toast-message a:hover {
            color: #cccccc;
            text-decoration: none;
        }

.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.3em;
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    -webkit-text-shadow: 0 1px 0 #ffffff;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
}

    .toast-close-button:hover,
    .toast-close-button:focus {
        color: #000000;
        text-decoration: none;
        cursor: pointer;
        opacity: 0.4;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
        filter: alpha(opacity=40);
    }
/*Additional properties for button version
     iOS requires the button element instead of an anchor tag.
     If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.toast-top-center {
    top: 0;
    right: 0;
    width: 100%;
}

.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%;
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%;
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%;
}

.toast-top-left {
    top: 12px;
    left: 12px;
}

.toast-top-right {
    top: 12px;
    right: 12px;
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px;
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}

#toast-container {
    position: fixed;
    z-index: 999999;
    /*overrides*/
}

    #toast-container * {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    #toast-container > div {
        position: relative;
        overflow: hidden;
        margin: 0 0 6px;
        padding: 15px 15px 15px 50px;
        width: 300px;
        -moz-border-radius: 3px 3px 3px 3px;
        -webkit-border-radius: 3px 3px 3px 3px;
        border-radius: 3px 3px 3px 3px;
        background-position: 15px center;
        background-repeat: no-repeat;
        -moz-box-shadow: 0 0 12px #999999;
        -webkit-box-shadow: 0 0 12px #999999;
        box-shadow: 0 0 12px #999999;
        color: #ffffff;
        opacity: 0.9;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        filter: alpha(opacity=80);
    }

    #toast-container > :hover {
        -moz-box-shadow: 0 0 12px #000000;
        -webkit-box-shadow: 0 0 12px #000000;
        box-shadow: 0 0 12px #000000;
        opacity: 1;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
        filter: alpha(opacity=100);
        cursor: pointer;
    }

    #toast-container > .toast-info {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
    }

    #toast-container > .toast-error {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
    }

    #toast-container > .toast-success {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
    }

    #toast-container > .toast-warning {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
    }

    #toast-container.toast-top-center > div,
    #toast-container.toast-bottom-center > div {
        width: 300px;
        margin: auto;
    }

    #toast-container.toast-top-full-width > div,
    #toast-container.toast-bottom-full-width > div {
        width: 96%;
        margin: auto;
    }

.toast {
    background-color: #030303;
}

.toast-success {
    background-color: #51a351;
}

.toast-error {
    background-color: #bd362f;
}

.toast-info {
    background-color: #2f96b4;
}

.toast-warning {
    background-color: #f89406;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000000;
    opacity: 0.4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40);
}
/*Responsive Design*/
@media all and (max-width: 240px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 11em;
    }

    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em;
    }
}

@media all and (min-width: 241px) and (max-width: 480px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 18em;
    }

    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em;
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    #toast-container > div {
        padding: 15px 15px 15px 50px;
        width: 25em;
    }
}

/* Generated NGUYEN HOANG TAN TAN TAI * 17-06-2015 * VERSION 1.0 */
/*------------------------------------------------*/
/* FORM */
/*------------------------------------------------*/
/* FORM TYPE*/
.form .form-horizontal .control-label {
    padding-top: 4px;
}

.form .form-control {
    padding: 5px 12px 5px 15px;
    font-size: 14px;
    border-radius: 0px !important;
}

.form .form-inline {
    padding: 2px;
}

.form .form-control.requirements {
    background-image: url(/Portals/_default/Skins/HOTRODOANHNGHIEP/img/requirements.png);
    background-repeat: no-repeat;
    background-position-y: 1px;
}

.form .form_checkboxlist.requirements {
    background-image: url(/Portals/_default/Skins/HOTRODOANHNGHIEP/img/requirements.png);
    background-repeat: no-repeat;
    background-position-y: -4px;
    padding-left: 18px;
    display: block;
}

    .form .form_checkboxlist.requirements td {
        padding-right: 30px;
    }

.form-control {
    height: 32px;
}

/*CHECKBOX - RADIO*/
.form .checkbox, .form .radio {
    min-height: 31px;
}

    .form .checkbox input[type=checkbox], .form .checkbox-inline input[type=checkbox], .form .radio input[type=radio], .form .radio-inline input[type=radio] {
        margin-left: 0px;
        position: relative;
        top: 2px;
        margin-right: 5px;
    }

span .batbuoc {
    color: red;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    top: 5px;
}

@media (max-width: 767px) {
    .form .form-inline .RadPicker.RadPicker_Default {
        width: 100% !important;
    }

    .form .form-inline .form-control {
        width: 100% !important;
    }

    .form .form-inline .RadComboBox.RadComboBox_Simple {
        width: 100% !important;
    }
}
/*------------------------------------------------*/
/* END FORM */
/*------------------------------------------------*/

/*------------------------------------------------*/
/* PANEL */
/*------------------------------------------------*/
.panel.panel-white {
    /*box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.35);*/
    border: 1px solid #d2d6de;
}

    .panel.panel-white .panel-heading {
        position: relative;
        background: #F7F7F7;
    }

        .panel.panel-white .panel-heading a h4:after {
            position: absolute;
            width: 40px;
            height: 100%;
            z-index: 0;
            font-size: 16px;
            color: #3c8dbc;
            border-left: 1px solid #eee;
            padding-top: 10px;
            right: 0px;
            padding-left: 10px;
            top: 0px;
            display: inline-block;
            font-family: 'Glyphicons Halflings';
            font-style: normal;
            font-weight: 400;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .panel.panel-white .panel-heading a.collapsed h4:after {
            content: "\e259";
        }

        .panel.panel-white .panel-heading a h4:after {
            content: "\e260";
        }

        .panel.panel-white .panel-heading a .panel-title {
            color: #777;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: bold;
        }
/*------------------------------------------------*/
/* END PANEL */
/*------------------------------------------------*/
/*!
     * START DANHSACH
     */
.danhsach {
    width: 100%;
    padding: 6px 10px;
}

    .danhsach > table {
        width: 100%;
        margin-bottom: 10px;
    }

.panel_card .danhsach > table {
    margin-bottom: 0px;
}

    .panel_card .danhsach > table > tbody > tr:last-child {
        text-align: right;
    }

.danhsach table > tbody > tr {
    min-height: 35px;
}

    .danhsach table > tbody > tr.tieude, .danhsach table > tbody > tr.tieude > th {
        text-align: center;
        vertical-align: middle;
        font-size: 14px;
        min-height: 40px !important;
        font-weight: bold;
    }

    .danhsach table > tbody > tr.tieude2 {
        text-align: center;
        vertical-align: middle;
        font-size: 14px;
        min-height: 40px !important;
        font-weight: bold;
    }

        .danhsach table > tbody > tr.tieude2:hover {
            background: #FCFAFA !important;
        }

        .danhsach table > tbody > tr.tieude2 > td {
            height: 25px;
            border-top: 1px solid #ddd;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }

            .danhsach table > tbody > tr.tieude2 > td:first-child {
                border-left: 1px solid #F0EFEF;
            }

            .danhsach table > tbody > tr.tieude2 > td:last-child {
                border-right: 1px solid #F0EFEF;
            }

    .danhsach table > tbody > tr.tieude:hover {
        background: #FCFAFA !important;
    }

    .danhsach table > tbody > tr.tieude > td,
    .danhsach table > tbody > tr.tieude > th,
    .danhsach table > thead > tr.tieude > th,
    .danhsach table > thead > tr.tieude > td {
        height: 36px;
        border-top: 1px solid #ddd;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        background: #eee;
        text-align: center;
        color: #333;
    }

        .danhsach table > tbody > tr.tieude > td:first-child, .danhsach table > tbody > tr.tieude > th:first-child {
            border-left: 1px solid #F0EFEF;
        }

        .danhsach table > tbody > tr.tieude > td:last-child, .danhsach table > tbody > tr.tieude > th:last-child {
            border-right: 1px solid #F0EFEF;
        }

.danhsach table {
    border: 0;
}

    .danhsach table > tbody > tr > td {
        height: 36px;
        border-top: 0px;
        border-bottom: 1px solid #ddd;
        border-left: 1px solid #F0EFEF;
        border-right: 1px solid #F0EFEF;
        padding: 5px;
        position: relative;
    }

        .danhsach table > tbody > tr > td > a {
            color: #444;
        }

.label {
    position: relative;
    top: -10px;
    font-size: 60%;
    line-height: 24px;
    left: -3px;
}

.danhsach table > tbody > tr:hover {
    cursor: pointer;
    background: #EFEFEF !important;
}

.danhsach table > tbody > tr.tieude:hover {
    cursor: default;
}

.danhsach table > tbody > tr:nth-of-type(odd) {
    background-color: #FCFAFA;
}

.danhsach table > tbody > tr.DarkGray-bg,
.danhsach table > tbody > tr.DarkGray-bg:hover {
    background-color: darkgray !important;
}

.danhsach table > tbody > tr > td .icon-xem,
.danhsach table > tbody > tr > td .icon-sua,
.danhsach table > tbody > tr > td .icon-user,
.danhsach table > tbody > tr > td .icon-in,
.danhsach table > tbody > tr > td .icon-an,
.danhsach table > tbody > tr > td .icon-hien,
.danhsach table > tbody > tr > td .icon-link {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    justify-content: center;
    align-items: center;
}

.danhsach table > tbody > tr > td .number-link {
    width: 100%;
    height: 100%;
    display: block;
}

.ds-nopointer table > tbody > tr:hover {
    cursor: default;
}
/*!
     * END DANHSACH
     */
span.numpager {
    background: #eee;
}

.icon-sua, .icon-xoa, .icon-user, .icon-in, .icon-an, .icon-hien {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings' !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
}

.icon-xem::before {
    content: "\e003";
    color: #B5B5B5;
}

.icon-sua::before {
    content: "\270f";
    color: #D27D0C;
}

.icon-xoa::before {
    content: "\e014";
    color: rgb(203, 5, 5);
}

.icon-user:before {
    content: "\e008";
    color: #006261;
}

.icon-in:before {
    content: "\e045";
    color: #AC0C38;
}

.icon-hien:before {
    content: "\e013";
    color: #229D53;
}

.icon-an:before {
    content: "\e013";
    color: #A7121E;
}

.baoloi {
    padding: 5px 10px 5px 15px;
    margin: 10px 0;
    border: 1px solid #eee;
    border-left-width: 2px;
    border-radius: 0px;
    border-left-color: #B20A04;
    color: #B20A04 !important;
    font-size: 14px;
}

    .baoloi ul {
        list-style: none;
        margin: 7px 0px 7px 0px !important;
    }

        .baoloi ul li {
            list-style: none;
        }

.icon-item {
    width: 16.66666%;
    height: 130px;
    padding: 10px;
    float: left;
}

    .icon-item * {
        webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .icon-item .icon-content {
        width: 100%;
        height: 100%;
        background: #fff;
        /*box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);*/
        border-radius: 3px;
        cursor: pointer;
        text-align: center;
    }

        .icon-item .icon-content:hover {
            box-shadow: 0px 4px 10px 0 rgba(0,0,0,0.1),0px 2px 10px 0px rgba(0,0,0,0.1);
        }

        .icon-item .icon-content a.icon-link img {
            width: 35px;
            height: 35px;
            margin: 15px;
        }

        .icon-item .icon-content a.icon-link {
            display: block;
        }

            .icon-item .icon-content a.icon-link .icon-tile {
                font-size: 14px;
                color: #CD8115;
                /*text-transform:uppercase;*/
            }





table.table1 {
    border-right: #333333 1px solid;
    border-top: #333333 1px solid;
    border-left: #333333 1px solid;
    border-bottom: #333333 1px solid;
    border-collapse: collapse;
    font-size: 7pt;
    font-family: Arial;
}

    table.table1 td {
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #333333 #333333 #333333 #333333;
    }

    table.table1 > tbody > tr {
        height: 12pt !important;
    }

        table.table1 > tbody > tr.tieudein {
            text-align: center;
            vertical-align: middle;
            font-size: 8pt;
            height: 20px !important;
            font-weight: bold !important;
            background-color: darkgray !important;
            line-height: 14px;
        }

.tablein {
    border-right: #eeeeee 1px solid;
    border-top: #eeeeee 1px solid;
    border-left: #eeeeee 1px solid;
    border-bottom: #eeeeee 1px solid;
    border-collapse: collapse;
    background-color: white;
    font-size: 7pt;
    font-family: Arial;
}

    .tablein > tbody > tr {
        padding: 1px;
    }

    .tablein td {
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #eeeeee #eeeeee #eeeeee #eeeeee;
    }

.tablethongtin {
    border-right: #eeeeee 1px solid;
    border-top: #eeeeee 1px solid;
    border-left: #eeeeee 1px solid;
    border-bottom: #eeeeee 1px solid;
    border-collapse: collapse;
    background-color: white;
}

    .tablethongtin > tbody > tr {
        padding: 1px;
    }

    .tablethongtin td {
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #eeeeee #eeeeee #eeeeee #eeeeee;
    }

.tabletonghop {
    border-right: #969090 1px solid;
    border-top: #969090 1px solid;
    border-left: #969090 1px solid;
    border-bottom: #969090 1px solid;
    border-collapse: collapse;
    background-color: white;
}

    .tabletonghop > tbody > tr {
        padding: 1px;
    }

    .tabletonghop td {
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #969090 #000000 #969090 #000000;
        height: 22pt;
        vertical-align: bottom;
        font-size: 7pt;
        font-family: Arial;
    }

    .tabletonghop tr:last-child td {
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #000000 #000000 #000000 #000000;
    }

.tieudedg td {
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    min-height: 40px !important;
    font-weight: bold !important;
    border-width: 1px 1px 1px 1px;
    padding: 1px 1px 1px 1px;
    border-style: solid solid solid solid;
    border-color: #000000 #000000 #000000 #000000;
}

.tieude2 td {
    text-align: center;
    vertical-align: middle;
    font-size: 8pt;
    height: 25px !important;
    font-weight: bold !important;
    font-family: Arial;
    border-width: 1px 1px 1px 1px;
    padding: 1px 1px 1px 1px;
    border-style: solid solid solid solid;
    border-color: #000000 #000000 #000000 #000000;
}

.DarkGray-bg,
.DarkGray-bg:hover {
    background-color: #CCCCCC !important;
    font-weight: bold !important;
}
/**/
/*Table Socai*/
/**/

.tablesocai {
    border-right: #969090 1px solid;
    border-top: #969090 1px solid;
    border-left: #969090 1px solid;
    border-bottom: #969090 1px solid;
    border-collapse: collapse;
    background-color: white;
}

    .tablesocai tr.tieudesocai td, .tablesocai tr.tieude td {
        text-align: center;
        vertical-align: middle;
        font-size: 7pt;
        line-height: 12px !important;
        height: auto !important;
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #000000 #000000 #000000 #000000;
        font-family: Arial;
        font-weight: bold !important;
        background-color: #CCCCCC !important;
    }

    .tablesocai tr td {
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #969090 #000000 #969090 #000000;
        vertical-align: bottom;
        height: 20pt;
        font-size: 7pt;
        font-family: Arial;
        line-height: 12px;
    }

    .tablesocai tr:last-child td {
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #000000 #000000 #000000 #000000;
    }
/*Tong hop*/
.tabletonghop {
    border-right: #969090 1px solid;
    border-top: #969090 1px solid;
    border-left: #969090 1px solid;
    border-bottom: #969090 1px solid;
    border-collapse: collapse;
    background-color: white;
}

    .tabletonghop tr.tieudesocai td, .tabletonghop tr.tieude td {
        text-align: center;
        vertical-align: middle;
        font-size: 7pt;
        line-height: 20px !important;
        height: auto !important;
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #000000 #000000 #000000 #000000;
        font-family: Arial;
        font-weight: bold !important;
    }

    .tabletonghop tr td {
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #969090 #000000 #969090 #000000;
        vertical-align: bottom;
        height: 20pt;
        font-size: 7pt;
        font-family: Arial;
        line-height: 12px;
    }

    .tabletonghop tr:last-child td {
        border-width: 1px 1px 1px 1px;
        padding: 1px 1px 1px 1px;
        border-style: solid solid solid solid;
        border-color: #000000 #000000 #000000 #000000;
    }


/*!
     * START GD_DIEMTIEN_THONGTINTAIKHOAN
     */
.form_view_profile {
    padding-top: 0px;
    background: #F2F2F2;
}

.user_avartar_image {
    border: 1px solid #eee;
    box-shadow: 2px 4px 10px #B0ADAD;
    margin-right: 30px;
    width: 165px;
}

.user_fullname {
    font-size: 16px;
    font-weight: bold;
}

.form.form-capnhat .val_profile,
.form.form-capnhat .lbl_profile {
    line-height: 32px;
}

.form.form-capnhat .lbl_profile {
    text-align: right;
    font-weight: bold;
    padding-right: 10px !important;
}

.form.form-capnhat .val_profile {
    text-align: left;
}

.form.form-capnhat .val_form,
.form.form-capnhat .lbl_form {
    line-height: 28px;
    MARGIN-BOTTOM: 10PX;
}

.form.form-capnhat .lbl_form {
    text-align: right;
    padding-right: 10px !important;
}

.form.form-capnhat .val_form {
    text-align: left;
}

.panel_card {
    margin: 10px;
}

.panel.panel_card > .panel-heading {
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    font-size: 15px;
    padding: 10px 10px 10px 10px;
    font-weight: bold;
}

.panel.panel_card {
    box-shadow: 2px 4px 10px #B0ADAD;
    border: 0px;
}

    .panel.panel_card > .panel-body {
        padding-bottom: 5px;
        border-radius: 0px 0px 0px 0px;
        padding: 0px;
    }

.sodiem,
.sotien,
.sotietkiem {
    position: relative;
    display: inline-block;
    text-align: left;
    font-size: 36px;
    line-height: 50px !important;
    padding-left: 10px;
    color: #fff;
}

.sodiem_dvt,
.sotien_dvt,
.sotietkiem_dvt {
    display: none;
}

.form .panel.panel_card input[type="button"],
.form .panel.panel_card input[type="submit"] {
    margin-top: 5px;
    border-radius: 0px;
    margin-bottom: 5px;
    box-shadow: 2px 4px 6px #D1CECE;
}

@media (min-width: 1200px) {
    .form .panel.panel_card input[type="button"],
    .form .panel.panel_card input[type="submit"] {
        width: 55%;
    }
}

@media (max-width: 1200px) {
    .form .panel.panel_card input[type="button"],
    .form .panel.panel_card input[type="submit"] {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .form .panel.panel_card input[type="button"],
    .form .panel.panel_card input[type="submit"] {
        width: 92%;
        padding: 8px 10px;
    }
}

@media (max-width: 600px) {
    .form .panel.panel_card input[type="button"],
    .form .panel.panel_card input[type="submit"] {
        width: 70%;
        padding: 12px 10px;
    }

    .form .panel.panel_card {
        padding-bottom: 10px;
    }
}

@media (max-width: 500px) {
    .form .panel.panel_card input[type="button"],
    .form .panel.panel_card input[type="submit"] {
        padding: 8px 10px;
        width: 80%;
    }
}

@media (min-width: 601px) {
    .panel_sotietkiem > .panel-body,
    .panel_tuitien > .panel-body,
    .panel_tuidem > .panel-body {
        min-height: 150px;
    }
}

.laixuathientai {
    color: #fff;
}

.ThongBaoChuaCoSoTietKiem {
    font-size: 14px;
    color: #fff;
    margin-top: 5px;
    position: relative;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.ThongBaoChuaCoSoTietKiem_GoiY, .ThongBaoChuaCoThongTinATM {
    padding: 0px 10px;
    display: block;
    color: #fff;
    margin-bottom: 5px;
}
/*!
     * END GD_DIEMTIEN_THONGTINTAIKHOAN
     */
.panel.panel_card_type_form > .panel-heading {
    font-weight: bold;
    border-radius: 0px 0px 0px 0px;
}

.panel.panel_card_type_form > .panel-body {
    padding-bottom: 15px;
    border-radius: 0px 0px 0px 0px;
}

.panel.panel_card_type_form {
    margin: 10px;
    box-shadow: 1px 1px 4px #CFCFCF;
    padding: 0px 10px 0px 10px;
}

.panel_card.panel_tuidem {
    background-color: #29b6d8;
    border: 1px solid #22b7bb;
}

    .panel_card.panel_tuidem .panel-heading {
        /*background-color: #28ADCE;*/
        color: #fff;
        font-size: 17px;
    }

.panel_card.panel_tuitien {
    background-color: #66c796;
    border: 1px solid #53c077;
}

    .panel_card.panel_tuitien .panel-heading {
        color: #fff;
        font-size: 17px;
        /*background-color: #5AB989;*/
    }

.panel_card.panel_sotietkiem {
    background-color: #df6a78;
    border: 1px solid #da557b;
}

    .panel_card.panel_sotietkiem .panel-heading {
        /*background-color: #D26370;*/
        color: #fff;
        font-size: 17px;
    }

    .panel_card.panel_sotietkiem .lbl_profile,
    .panel_card.panel_sotietkiem .val_profile {
        color: #fff;
        line-height: 26px;
    }

@media(max-width:600px) {
    .row .inline600 {
        float: none;
        width: 100%;
    }
}

@media(max-width:768px) {
    /*.form .alignright
        {
            text-align:left;
        }*/

}

/*!
     * START BTN TRANSPERENT WHITE BORDER
     */
.form input.transperent_white, .form input.transperent_white, .form input.transperent_white {
    color: #fff;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.14) !important;
}

.form input[type="button"].transperent_white:hover, .form input[type="submit"].transperent_white:hover, .form input[type="reset"].transperent_white:hover .form input[type="button"].transperent_white:focus, .form input[type="submit"].transperent_white:focus, .form input[type="reset"].transperent_white:focus .form input[type="button"].transperent_white:active, .form input[type="submit"].transperent_white:active, .form input[type="reset"].transperent_white:active .form input[type="button"].transperent_white.active, .form input[type="submit"].transperent_white.active, .form input[type="reset"].transperent_white.active .form input[type="button"].transperent_white.focus, .form input[type="submit"].transperent_white.focus, .form input[type="reset"].transperent_white.focus {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form input[type="button"].transperent_white.disabled, .form input[type="submit"].transperent_white.disabled, .form input.transperent_white.disabled,
.form input[type="button"].transperent_white[disabled], .form input[type="submit"].transperent_white[disabled], .form input.transperent_white[disabled],
.form[disabled] input[type="button"].transperent_white, .form[disabled] input[type="submit"].transperent_white, .form[disabled] input.transperent_white,
.form input[type="button"].transperent_white.disabled:hover, .form input[type="submit"].transperent_white.disabled:hover, .form input.transperent_white.disabled:hover,
.form input[type="button"].transperent_white[disabled]:hover, .form input[type="submit"].transperent_white[disabled]:hover, .form input.transperent_white[disabled]:hover,
.form[disabled] input[type="button"].transperent_white:hover, .form[disabled] input[type="submit"].transperent_white:hover, .form[disabled] input.transperent_white:hover,
.form input[type="button"].transperent_white.disabled:focus, .form input[type="submit"].transperent_white.disabled:focus, .form input.transperent_white.disabled:focus,
.form input[type="button"].transperent_white[disabled]:focus, .form input[type="submit"].transperent_white[disabled]:focus, .form input.transperent_white[disabled]:focus,
.form[disabled] input[type="button"].transperent_white:focus, .form[disabled] input[type="submit"].transperent_white:focus, .form[disabled] input.transperent_white:focus,
.form input[type="button"].transperent_white.disabled.focus, .form input[type="submit"].transperent_white.disabled.focus, .form input.transperent_white.disabled.focus,
.form input.transperent_white[disabled].focus, .form input[type="submit"].transperent_white[disabled].focus, .form input.transperent_white[disabled].focus,
.form[disabled] input[type="button"].transperent_white.focus, .form[disabled] input.transperent_white.focus, .form[disabled] input.transperent_white.focus,
.form input[type="button"].transperent_white.disabled:active, .form input[type="submit"].transperent_white.disabled:active, .form input.transperent_white.disabled:active,
.form input[type="button"].transperent_white[disabled]:active, .form input[type="submit"].transperent_white[disabled]:active, .form input.transperent_white[disabled]:active,
.form[disabled] input[type="button"].transperent_white:active, .form[disabled] input[type="submit"].transperent_white:active, .form[disabled] input.transperent_white:active {
    background-color: rgba(228, 225, 225, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: no-drop;
}

.form .panel.panel_card input[type="button"],
.form .panel.panel_card input[type="submit"] {
    margin-top: 5px;
    border-radius: 0px;
    margin-bottom: 5px;
    box-shadow: 2px 4px 6px #D1CECE;
}

.form input.btn-print:before {
    content: "\e045";
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/*---REPONSIVE---*/
@media (min-width: 1200px) {
    .form .panel.panel_card input[type="button"],
    .form .panel.panel_card input[type="submit"] {
        width: 55%;
    }
}

@media (max-width: 1200px) {
    .form .panel.panel_card input[type="button"],
    .form .panel.panel_card input[type="submit"] {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .form .panel.panel_card input[type="button"],
    .form .panel.panel_card input[type="submit"] {
        width: 92%;
        padding: 8px 10px;
    }
}

@media (max-width: 600px) {
    .form .panel.panel_card input[type="button"],
    .form .panel.panel_card input[type="submit"] {
        width: 70%;
        padding: 12px 10px;
    }

    .form .panel.panel_card {
        padding-bottom: 10px;
    }
}

@media (max-width: 500px) {
    .form .panel.panel_card input[type="button"],
    .form .panel.panel_card input[type="submit"] {
        padding: 8px 10px;
        width: 80%;
    }
}

@media (min-width: 601px) {
    .panel_sotietkiem > .panel-body,
    .panel_tuitien > .panel-body,
    .panel_tuidem > .panel-body {
        min-height: 150px;
    }
}
/*!
     * END BTN TRANSPERENT WHITE BORDER
     */
/*!
     * START PAGING
     */
.paping a.paging_item, .paping span, .paping .paging_btn {
    display: inline-block;
    position: relative;
    width: 25px;
    height: 30px;
    text-align: center;
    line-height: 29px;
    color: #4C4A4A;
    margin-left: 2px;
    font-size: 14px;
    margin-right: 2px;
}

.paping a.paging_item {
    border: 1px solid #E0E0E0;
    color: #4C4A4A;
}

.paping span {
    border: 1px solid #E0E0E0;
    color: #FFFFFF;
    background: #00923f;
}

.paping .paging_btn {
    /*font-weight: bold;*/
    font-size: 14px;
    color: #333;
}

    .paping .paging_btn.aspNetDisabled {
        color: #757574;
    }

.paping .ddl_pagesize {
    width: 65px;
}

.paping .paging_label {
    line-height: 29px;
    color: #000;
    margin-left: 7px;
    margin-right: 3px;
    float: right;
}

input[type=checkbox] {
    width: 16px;
    height: 16px;
}
/* Font-awesome */
.fa {
    font-size: 16px;
    padding-right: 5px;
}

.icon_upload {
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.custom_ds_file table.Grid {
    border-top: 1px solid rgba(221, 221, 221, 0.81);
}

.footer {
    background-color: #FFEBCD !important;
}

.chkDoiTac input {
    width: 15px;
    height: 15px;
    float: left;
}

.lblDT {
    float: left;
    padding-top: 1px;
    padding-left: 5px;
    padding-right: 20px;
}

.chkTT > input {
    display: none;
}

.chkTT > label {
    cursor: pointer;
    float: right;
}

.color_red {
    color: #B20A04;
}


/*Css form tong hop*/
.icon_sum {
    font-size: 25px;
    padding-right: 0px;
}

.info-box {
    background-color: #fff !important;
    border-radius: 0px;
    min-height: 103px;
    box-shadow: 2px 2px 8px #CCC;
}

.info-box-icon {
    width: 69px;
    height: 69px;
    line-height: 52px;
}

.info-box-content {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 0px;
    width: 100%;
    display: block;
    text-align: left;
    vertical-align: middle;
}

    .info-box-content * {
        vertical-align: middle;
    }

.info-box-number {
    font-size: 14px;
}

.info-box-text {
    text-transform: none;
    padding-bottom: 5px;
    padding-top: 5px;
}

.border_green {
    border-top: 4px solid #5DB56A;
}

.border_orange {
    border-top: 4px solid #ffa600;
}

.border_red {
    border-top: 4px solid #ff0000;
}

.border_blue {
    border-top: 4px solid #0182c6;
}

.red {
    color: #ff0000;
}

.green {
    color: #5DB56A;
}

.orange {
    color: #ffa600;
}

.blue {
    color: #0182c6;
}

#dnn_ContentLeft {
    padding-left: 0px;
    padding-right: 2px;
}

#dnn_ContentRight {
    padding-right: 0px;
    padding-left: 2px;
}

.danhsach {
    padding-left: 2px;
    padding-right: 2px;
}

.reponsive_danhsach {
    min-height: 530px;
}

.view_more {
    text-align: right;
    color: #006ca5;
    font-weight: bold;
    position: absolute;
    right: 5px;
    bottom: 10px;
}

.title-box {
    font-size: 15px;
    font-weight: bold;
}

.title-name {
    margin-left: 3px;
}

.giatri {
    font-weight: bold;
    float: right;
}

.radius_2 {
    border-radius: 2px !important;
}

.event_dropmenu {
    min-width: 120px;
}

.color_blue {
    color: #0182c6;
}

.color_red {
    color: #ff0000;
}

.color_orange {
    color: #D27D0C;
}

.color_green {
    color: #5DB56A;
}

.menu_left_right .custom_icon_l_r {
    border: 1px solid #0182c6;
    border-radius: 1px;
    padding: 5px;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: -4px;
    font-size: 16px;
    color: #0182c6;
}

    .menu_left_right .custom_icon_l_r:hover {
        color: #FFF;
        background: #0182c6;
    }

.menu_left_right .T-I-T {
    color: #505050;
    font-size: 15px;
    margin-left: 5px;
    margin-right: 5px;
}

.btn_custom {
    width: 115px;
    height: 35px;
    visibility: visible;
    border: 1px solid #ccc;
    border-radius: 1px;
    box-shadow: 2px 2px 8px #ccc !important;
    margin-right: 10px;
    min-width: 100px;
    background: #fff;
}

.menu_left_right .custom_icon_edit {
    border: 1px solid #d68100;
    border-radius: 1px;
    padding: 5px;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: -4px;
    font-size: 16px;
    color: #e68b00;
}

    .menu_left_right .custom_icon_edit:hover {
        color: #FFF;
        background: #e68b00;
    }

.btn-group1 a.custom_icon_search {
    padding: 6px 10px 6px 10px !important;
    border-right: none;
    background-color: #FFF !important;
    margin-right: -5px;
    border-radius: 2px 0px 0px 2px !important;
    background-color: #fdfdfd !important;
}

.custom_button_dropdown {
    border-radius: 0px 2px 2px 0px !important;
    padding: 6px 12px 6px 12px !important;
    background-color: #fdfdfd !important;
}

.icon_ketthuc {
    color: transparent !important;
    font-size: 25px;
    width: 5px;
    border: 1px solid #d27e00;
    background: #ffa500;
}

.icon_quahan {
    color: transparent !important;
    font-size: 25px;
    width: 5px;
    border: 1px solid #ff0000;
    background: #ff0000;
}

.icon_chuaketthuc {
    color: transparent !important;
    font-size: 25px;
    width: 5px;
    border: 1px solid #008000;
    background: #008000;
}

.dnnFormPopup .ui-dialog-titlebar {
    padding: 8px 0 8px 8px !important;
}

.label-normal {
    font-weight: normal;
    text-align: left !important;
}

form {
    margin-bottom: 0px !important;
}

a:link, a:hover, a:active, a:visited {
    text-decoration: none !important;
}

.row {
    position: relative;
    margin: 0px !important;
    padding: 0px !important;
}

.main-header {
    z-index: 851;
}

ul.sidebar-menu li a img {
    padding-right: 10px;
    width: 25px;
    margin-left: -2px;
}

    ul.sidebar-menu li a img.icon {
        margin-left: -10px;
    }



/*.skin-red .main-header .navbar {
        background-color: #006261;
    }

    .skin-red .main-header .logo {
        background-color: rgba(0, 98, 97,0.8);
        color: #fff;
        border-bottom: 0 solid transparent;
    }

        .skin-red .main-header .logo:hover {
            background-color:  rgba(0, 98, 97,0.8);
        }

    .skin-red .sidebar-menu > li:hover > a, .skin-red .sidebar-menu > li.active > a {
        color: #fff;
        background: #1e282c;
        border-left-color: #006261;
    }

    .skin-red .main-header .navbar .sidebar-toggle:hover {
        background-color: #047137;
    }*/

.sidebar-menu .treeview-menu > li > a {
    padding: 5px 5px 5px 22px;
    display: block;
    font-size: 14px;
}

.content-wrapper, .right-side {
    min-height: 100%;
    background-color: transparent;
    z-index: 800;
}

li.treeview {
    white-space: normal;
}

.form .RadPicker_Default .riTextBox {
    border-radius: 0px !important;
    border-color: #ccc !important;
}

table.rdoList-3-col tr td label {
    margin-right: 15px !important;
    font-weight: normal !important;
}

.RadTabStripTop_Default .rtsLevel .rtsLink, .RadTabStripTop_Default .rtsLevel .rtsOut, .RadTabStripBottom_Default .rtsLevel .rtsLink, .RadTabStripBottom_Default .rtsLevel .rtsOut, .RadTabStripTop_Default_Baseline .rtsLevel, .RadTabStripBottom_Default_Baseline .rtsLevel {
    background-image: none !important;
}

.customTab {
    margin-top: 5px !important;
}

@media (min-width: 768px) {
    .col-sm-2-custom {
        padding-right: 0px !important;
    }

    .form-horizontal .label-chitiet {
        text-align: right;
    }
}

@media (max-width: 767px) {
    .pageCustom {
        text-align: right;
        margin-top: 10px;
    }

    .form-horizontal .label-chitiet {
        text-align: left !important;
    }

    .riEnabled {
        width: 100% !important;
    }

    .col-linhvuc {
        margin-right: -40px !important;
    }

    table .chk-col-2 tr td label {
        margin-right: -5px !important;
    }

    form .form_checkboxlist.requirements td {
        padding-right: 25px !important;
    }

    .trangChu-cl-6 {
        padding: 1px !important;
    }

    .content {
        padding: 0px !important;
    }

    .dgtrangchu {
        padding: 0px !important;
    }

    .box-body {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media (max-width: 375px) {
    .lblPageSize {
        display: none;
    }
}

@media (max-width: 991px) {
    .btn_them {
        margin-top: 5px;
    }

    .slDate {
        width: 200px !important;
    }

    .col-md-10 {
        margin: 0px 0px 0px -30px;
    }

    .custom-mr {
        margin-top: 10px;
    }

    .col-md-10 .form-horizontal .label-chitiet {
        text-align: left !important;
    }
}

@media (min-width:826px) and (max-width: 885px ) {
    .nameWebsite {
        font-size: 11px;
    }
}

@media (min-width:768px) and (max-width: 825px ) {
    .nameWebsite {
        font-size: 10px;
    }
}

@media (max-width: 550px) {
    .nameWebsite {
        display: none;
    }
}

@media (max-width: 630px) {
    .nameWebsite {
        font-size: 11px;
    }
}

@media (min-width: 991px) {
    .form-horizontal .label-chitiet {
        text-align: right !important;
    }

    .trangChu-cl-6 {
        padding: 4px !important;
    }
}

.form-horizontal .label-chitiet {
    font-weight: bold;
}

.rcCalPopup {
    border: 1px solid #ccc !important;
    margin-left: 0px !important;
    border-left: 0px !important;
    height: 23px !important;
    margin-right: -1px !important;
    zoom: 1.4;
    -ms-zoom: 1.4;
    -moz-transform: scale(1.4,1.4);
}

table .chk-col-2 tr td label {
    font-weight: normal !important;
    margin-left: 5px !important;
}

table .chk-col-4 tr td label {
    font-weight: normal !important;
    margin-left: 0px !important;
    margin-right: 30px !important;
}

.RadTabStrip_Default {
    width: 100%;
    background-color: #f4f4f4;
}

.rtsSelected {
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-bottom: none !important;
}

.rtsAfter, .rtsBefore {
    margin-top: 2px;
    border: 1px solid #ccc !important;
    border-bottom: none !important;
}

.ct_gly > .glyphicon {
    font-size: 14px;
}

input[type="file" i]::-webkit-file-upload-button {
    padding: 7px 10px !important;
    background-color: #fff !important;
    color: #036 !important;
    border: 1px solid #ccc !important;
    text-shadow: 0 1px 0 #fff !important;
    cursor: pointer;
}

.nameWebsite {
    float: left;
    background-color: transparent;
    background-image: none;
    padding: 17px 10px;
    color: #fff;
    font-weight: bold;
    position: absolute;
}

.logo {
    padding: 0px !important;
}

.main-header .sidebar-toggle {
    padding-top: 17px !important;
}

@media (max-width: 767px) {
    .main-sidebar, .left-side {
        padding-top: 50px !important;
    }
}

.LoginTemplate {
    width: 500px !important;
    margin: 50px auto !important;
}

    .LoginTemplate .LoginPanel {
        width: 100% !important;
    }

    .LoginTemplate #dnn_ctr_Login_pnlLogin {
        padding: 0px !important;
    }

    .LoginTemplate .dnnForm .dnnFormItem {
        margin-top: 3px !important;
    }

    .LoginTemplate .form-control {
        border-radius: 0px !important;
    }

    .LoginTemplate .btn {
        border-radius: 0px !important;
    }

    .LoginTemplate .dnnForm .dnnActions {
        padding-top: 0px !important;
    }

    .LoginTemplate .dnnForm .dnnLabel + span {
        white-space: inherit;
        margin: 0px;
    }

tr.paping td {
    background: #eee !important;
}

.subNav.advanced dl ul li {
    width: auto !important;
}

.ranges ul li.active {
    color: #0088CC;
    background-color: #F5F5F5;
    border: 0px;
}

    .ranges ul li.active:hover {
        color: #fff;
        background-color: #0088CC;
    }

.box {
    border: 1px solid #ccc;
    border-top: 3px solid #ccc;
}

    .box.box-primary {
        border-color: #3c8dbc;
    }

    .box.box-success {
        border-color: #00a65a;
    }

    .box.box-info {
        border-color: #00C0EF;
    }

    .box.box-danger {
        border-color: #DD4B39;
    }

    .box.box-warning {
        border-color: #F39C12;
    }

@media (min-width: 768px) {
    .form-horizontal .control-label {
        padding-top: 4px;
    }
}

input.txt_daterangepicker
{
    padding-right:40px;
    background-image:url(images/Calendar.png);
    background-position:right;
    background-size:contain;
    background-repeat:no-repeat;
}
input.txt_daterangepicker:hover
{
    cursor:pointer;
}