@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 15px;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    cursor: auto;
    width: 100%;
    line-height: 180%;
    color: #000;
    font-size: 1rem;
}
/*remove highlight color touch on mobile*/
input,textarea,button,select,div,a,span
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a, input, div, select, textarea, img, button
{
    outline: none;
    -webkit-appearance: none;
}
a:focus, a:visited, input:focus, select:focus, textarea:focus, button:focus
{
    outline: none !important;
    box-shadow: none;
}
ol, ul {
    list-style: none;
}
.hidden-scroll, .hidden-scroll body
{
    overflow: hidden !important;
}
a {
    text-decoration: none;
    cursor: pointer;
}
a:hover, button:hover
{
    text-decoration: none;
    opacity:0.7;
    filter:alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
}
.container {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    z-index: 10;
}
.main-color
{
    color: #0288D1;
}
.red-color
{
    color: #ff0000;
}
.green-color
{
    color: #00FF00;
}
.cursor
{
    cursor: pointer;
}
.float-left
{
    float: left;
}
.float-right
{
    float: right;
}
.text-bold
{
    font-weight: 700;
}
.form-control:focus
{
    border-color:#0288D1 !important;
    outline: 0;
    /*box-shadow: 0 0 0 .1rem #0288D120;*/
    box-shadow: none;
}
.btn
{
    color: #fff !important;
}
.btn-normal
{
    min-width: 100px;
}
.btn-action
{
    padding: .375rem 3rem;
}
.btn-primary, .btn-primary:hover
{
    background-color: #0288D1;
    border-color: #0288D1;
}
.btn-grey
{
    background-color: #808080;
    border-color: #808080;
    color: #fff;
}
.btn-grey:hover
{
    color: #fff;   
}
.btn-radius
{
    border-radius: .25rem !important;
}
.txt-large
{
    font-size: 1.2rem;
}
.required
{
    color: #ff0000;
}
h2
{
    font-size: 1.3rem;
}
h3
{
    font-size: 1.2rem;
}
.tbl
{
    display: table;
    width: 100%;
    border-collapse: collapse;
}
.tbl-row
{
    display: table-row;
}
.tbl-cell
{
    display: table-cell;
    padding: 5px;
}
.tbl-border 
{
    width: 100%;
}
.tbl-border td
{
    border: 1px solid #ccd0d4;
    padding: 5px;
    word-break: break-all;
}
.btn-group-action
{
    padding-left: 5px;
    padding-right: 5px;;
}
/*
==============================================================
========================= Header =============================
==============================================================
*/
.header
{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 44px;
    line-height: 44px;
    border-bottom: 1px solid #ccc;
    /*padding-left: 255px;*/
    padding-left: 20px;
    background: #0288D1;
    z-index: 1000;
}
.header .topnav
{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 46px;
}
.header .topnav .menutoggle {
    background: none;
    color: #2b2e33;
    height: 100%;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    display: inline-block;
}
.header .topnav .menutoggle::after {
    content: "";
    display: block;
    height: 100%;
    width: 1px;
    position: absolute;
    bottom: 2px;
    right: -2px;
    background: #dddddd50;
    z-index: 10;
}
.header .right
{
    /*display: none;*/
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
.header .right ul li.user-info
{
    text-align: right;
}
.header .right ul li.user-info span
{
    color: #fff;
    padding-right: 15px;
}
.header .right ul li ul
{
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    padding: 12px 15px;
    border-radius: 0px 0px 4px 4px;
    display: none;
}
.header .right ul li ul li
{
    line-height: 100%;
    text-align: left;
}
.header .right ul li ul a
{
    color: #000;
}
.header .right ul li.user-info:hover ul
{
    display: block;
}
.title-page
{
    color: #fff;
}
@media(max-width: 768px)
{
    .header
    {
        padding-left: 15px;
        z-index: 160;
    }
    .header .page-title
    {
        display: none;
    }
    .header .topnav
    {
        display: block !important;
    }
    .header .right
    {
        display: block;
    }
    .title-page
    {
       display: none;
    }
}
/*
==============================================================
========================= End header =========================
==============================================================
*/

/*
==============================================================
========================= Sidebar ============================
==============================================================
*/
.main-sidebar
{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 240px;
    z-index: 1010;
    border-right: 1px solid #e7e7e7;
    background: #f8f8f8;
}
.main-sidebar .content
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
}
.main-sidebar.sidebar-cusid .content
{
    bottom: 115px;
}
.main-sidebar .content h2
{
    background: #0288D1;
    font-weight: 600;
    color: #fff;
    font-size: 1.2rem;
    padding: 7px 10px;
    border-bottom: 1px solid #ddd;
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.main-sidebar a
{
    color: #000;
}
.main-sidebar .content h2 a
{
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    display: block;
}
.main-sidebar ul
{
    margin: 0;
    padding: 0;
}
.main-sidebar ul li
{
    width: 100%;
}
.main-sidebar ul li a
{
    padding: 7px 15px;
    display: block;
    border-bottom: 1px solid #e7e7e7;
}
.main-sidebar ul li>a:hover, .main-sidebar ul li.active>a
{
    background: #0288D1;
    color: #fff;
}
.main-sidebar ul li ul li a
{
    padding-left: 25px;
}
.mask-content
{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.7);
    z-index: 190;
}
@media(min-width: 768px)
{
    .mask-content
    {
        display: none;
    }
    .main-sidebar
    {
        left: 0px !important;
    }
}
@media(max-width: 768px)
{
    .main-sidebar
    {
        border-right: none;
    }
    .main-sidebar .bottom
    {
        display: none;
    }
    .main-sidebar .content
    {
        bottom: 0 !important;
    }
    .main-sidebar
    {
        position: fixed;
        left: -100%;
    }
    .mask-content
    {
        display: block;
    }
}
/*
==============================================================
========================= End Sidebar ========================
==============================================================
*/

/*
==============================================================
========================= Toolbar ============================
==============================================================
*/
.toolbar
{
    display: inline-table;
    width: 100%;
    padding: 15px 0px 0px 0px;
    
}
.toolbar.toolbar-border
{
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
.toolbar .btn
{
    border-radius: 0px .25rem .25rem 0px;
}
.toolbar .btn i
{
    position: relative;
    right: 3px;
    bottom: 1px;
}
.btn-action
{
    display: inline-block;
    padding: .375rem .75rem;
    background: #0288D1;
    color: #fff !important;
    border-radius: 0.25rem;
    min-width: 100px;
    text-align: center;
}
.btn-action i
{
    margin-right: 3px;
}
.toolbar-footer
{
    position: fixed;
    left: 0;
    right: 0px;
    bottom: 0px;
    padding-left: 15px;
    padding-right: 15px;
    border-top: 1px solid #ddd;
    padding: 7px 15px;
    z-index: 300;
    background: #fff;
}
@media(max-width: 768px)
{
    .sp-toolbar
    {
        border-bottom: 1px solid #ddd;
        margin-bottom: 0px;
        padding: 10px 0px 10px;
    }
    .sp-toolbar h2
    {
        font-size: 1.2rem;
        padding-top: 6px;  
    }
}
/*
==============================================================
========================= End toolbar ========================
==============================================================
*/

/*
==============================================================
========================= Data table =========================
==============================================================
*/
table.display
{
    width: 100%;
}
.data-table
{
    margin-top: 15px;
}
.data-table thead tr th {
    /*border-top: 1px solid #ddd;*/
    border-bottom: none !important;
}
.dataTables_scrollHead
{
    border-top: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
}
table.dataTable thead th, table.dataTable thead td, .dataTables_wrapper.no-footer .dataTables_scrollBody
{
    border-bottom: 1px solid #ddd;
}
table.dataTable thead th, table.dataTable thead td
{
    padding: 8px 18px 8px 8px;
}
table.display thead th
{
    vertical-align: middle;
}
/*table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc
{
    background-image: none;
}*/
.data-table a.btn
{
    color: #fff;
}
.data-table .tbl-row-del td{
    background: #ff0000 !important;
}
#pagination
{
    display: inline-table;
    width: 100%;
    margin: 15px 0px 0px;
    text-align: right;
}
#pagination nav
{
    display: inline-block;
}
.pagination a
{
    color: #000;
}
.pagination .page-item.active .page-link
{
    background-color: #0288D1;
    border-color: #0288D1;
}
/*
==============================================================
========================= End data table =====================
==============================================================
*/

/*
==============================================================
========================= Control ============================
==============================================================
*/
input[type="checkbox"]:checked,
input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
input[type="checkbox"]:checked + label,
input[type="checkbox"]:not(:checked) + label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    line-height: 24px;
    display: inline-block;
    color: #393939;
}
input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 18px;
    height: 18px;
    border: 1px solid #393939;
    border-radius: 3px;
    background: #fff;
}
input[type="checkbox"]:checked + label:before {
    background: #327bde;
}
input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:not(:checked) + label:after {
  content: '';
  left: 6px;
  top: 10px;
  width: 7px;
  height: 12px;
  border: solid white;
      background: #327bde;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
}
input[type="checkbox"]:not(:checked) + label:after {
    content: "";
    position: absolute;
    display: none;
}
input[type="checkbox"]:checked + label:after {
    content: "";
    position: absolute;
    display: block;
}
.checkbox-row input[type="radio"]:checked,
.checkbox-row input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.checkbox-row input[type="radio"]:checked + label,
.checkbox-row input[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    line-height: 24px;
    display: inline-block;
    color: #393939;
}
.checkbox-row input[type="radio"]:checked + label:before,
.checkbox-row input[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: -12px;
    width: 18px;
    height: 18px;
    border: 1px solid #393939;
    border-radius: 50%;
    background: #fff;
}
.checkbox-row input[type="radio"]:checked + label:after,
.checkbox-row input[type="radio"]:not(:checked) + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: -7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #327bde;
}
.checkbox-row input[type="radio"]:not(:checked) + label:after {
    display: none;
}
.checkbox-row input[type="radio"]:checked + label:after {
    display: block;
}
.input-group.date .input-group-text
{
    padding: .375rem .67rem;
}
.form-control.is-invalid, .was-validated .form-control:invalid
{
    padding-right: .75rem;
    background-image: none;
}
.input-group-addon
{
    position: relative;
    top: 4px;
}
.input-group-text-right
{
    border-radius: 0 .25rem .25rem 0 !important;
}
.invalid-default
{
    color: #dc3545;
}
table tbody .checkbox-row
{
    position: relative;
    left: -8px;
}
.checkbox-row input[type="checkbox"]:checked + label:before,
.checkbox-row input[type="checkbox"]:not(:checked) + label:before
{
    top: -12px;
}
input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:not(:checked) + label:after
{
    top: -11px;
}
.custom-checkbox input[type="checkbox"]:checked + label::after, 
.custom-checkbox input[type="checkbox"]:not(:checked) + label::after
{
    top: 10px;
}
.custom-radio .custom-control-label::before
{
    top: 6px;
    width: 16px;
    height: 16px;
}
.custom-radio .custom-control-label::after
{
    top: 6px;
    width: 16px;
    height: 16px;
}
.rd-group
{
    display: inline-table;
    width: 100%;
}
.rd-group .custom-radio
{
    display: inline-block;
    margin: 0px 10px 0px 20px;
}
/*
==============================================================
======================== End Control =========================
==============================================================
*/
/*
==============================================================
========================= Login ==============================
==============================================================
*/
.login-page
{
    margin-top: 5%;
}
.login-page .card-header
{
    font-size: 1.2rem;
}
.login-page .intro
{
    margin: 20px 0px 20px;
}
/*
==============================================================
========================= Page content =======================
==============================================================
*/
.content-wrapper
{
    position: absolute;
    top: 44px;
    right: 0;
    bottom: 0;
    /*left: 240px;*/
    left: 0;
    overflow: auto;
}
.content-toolbar-footer
{
    bottom: 55px;
}
.page-content
{
    padding-top: 20px;
    padding-bottom: 20px;
}
.confirm-dialog .bootbox-body, .alert-dialog .bootbox-body
{
    /* padding: 1.2rem 1rem; */
}
.alert-medium-dialog .modal-dialog
{
    max-width: 700px;
}
.modal.modal-static .modal-dialog
{
    transform: scale(1);
}
.bootbox .btn
{
    min-width: 100px;
}
.group-intro
{
    margin: 90px 0px 40px 0px;
}
.customer-register .card
{
    border: none;
}
.customer-register .card .card-body
{
    padding: 0;
}
.customer-register .tbl
{
    border: 1px solid #ddd;
    border-bottom: none;
}
.customer-register .card .tbl-cell
{
    border-bottom: 1px solid #ccc;
}

@media(min-width: 768px)
{
    .d-pc-none
    {
        display: none;
    }
    .d-sp-none
    {
        display: block;
    }
}
@media(max-width: 768px)
{
    body
    {
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        padding-top: 44px;
    }
    .d-pc-none
    {
        display: block;
    }
    .d-sp-none
    {
        display: none;
    }
    .login-page
    {
        margin-top: 0px;
    }
    .content-wrapper
    {
        left: 0;
    }
    .page-content
    {
        padding-top: 0px;
    }
    .group-intro {
        margin: 30px 0px 15px 0px;
    }
}
/* ==============================================================
* =========================== select ============================
* ===============================================================
*/
.select2-container {
    z-index: 10;
}
.select2-container--open {
    z-index: 3000;
}
.control-select-full {
    width: 100%;
}
.select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple {
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
}
.select2-container .select2-selection--single {
    height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px !important;
    color: #000;
    padding-right: 45px !important;
    text-align: left;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    position: relative;
    bottom: 3px;
    line-height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
    width: 40px;
    top: 0;
    right: 0;
    border: 1px solid #ced4da;
    background: #e9ecef;
    border-radius: 0px .25rem .25rem 0px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #000 transparent transparent transparent;
    border-width: 8px 6px 0 6px;
    margin-left: -7px;
    margin-top: -4px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0px 6px 8px 6px;
    border-color: transparent transparent #000 transparent;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    z-index: 100;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 40px;
    text-align: center;
    color: #000;
    line-height: 35px;
    border: 1px solid #ced4da;
    background: #e9ecef;
    border-radius: 0px .25rem .25rem 0px;
}
.select2-container {
    width: 100% !important;
    margin-bottom: 5px;
}
.select2-container--default:not(.select2-container--disabled) *:focus, .select2-container--default.select2-container--focus:not(.select2-container--disabled) .select2-selection--multiple {
    color: #495057;
    border-color: #80bdff;
    outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--single, .select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #e9ecef;
    opacity: 1;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #ced4da;
}
.select2-container--default .select2-search--inline .select2-search__field {
    width: initial!important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #ccc;
}
#tbl-detail-list .select2-container
{
    position: relative;
    top: 3px;
}
.select2-error .select2-selection
{
    border: 1px solid #ff0000 !important;
}

.select2-dropdown-checkbox .select2-results__option
{
    display: flex !important;
    position: relative;
    padding-left: 30px !important;
}
.select2-dropdown-checkbox .select2-results__option::before{
    content: "";
    display: inline-block;
    position: absolute;
    height: 20px;
    width: 20px;
    border: 2px solid #e9e9e9;
    border-radius: 3px;
    background-color: #fff;
    margin-right: 5px;
    vertical-align: middle;
    top: 50%;
    left: 5px;
    margin-top: -10px;
}
.select2-dropdown-checkbox .select2-results__option[aria-selected='true']::before{
    font-family:fontAwesome;
    content: "\f00c";
    color: #fff;
    background-color: #007b9d;
    border: 0;
    display: inline-block;
    padding-left: 3px;
}
.fls-hidden-selection .select2-selection__choice
{
    display: none;
}
.select-examine-time .select2-container
{
    position: relative;
    top: 10px;
}
.ReactVirtualized__Table .select2-selection{
    position: relative;
}
ul[aria-multiselectable=true] .select2-results__option[aria-selected=true] {
    display: none;
}
.select2-dropdown-checkbox ul[aria-multiselectable=true] .select2-results__option[aria-selected=true] {
    display: block;
}
.select2-dropdown-checkbox .select2-results__option.select2-results__message::before
{
    content: none;
}
.select2-dropdown-checkbox .select2-results__option.select2-results__message
{
    padding-left: 5px !important;
}

.input-group .select2.select2-container {
    margin-bottom: 0px !important;
}
.input-group .select2-selection {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.select2-container--default .select2-search--inline .select2-search__field{
    color: #ccc;
}
.btn-disabled{
    opacity: 0.7;
    cursor: not-allowed !important;
}
.row-line
{
    border-bottom: 1px solid #ccc;
    display: inline-block;
    width: 100%;
    line-height: 100%;
}
.row-line:last-child
{
    border: none;
}
.th-link-name
{
    width: auto !important;
    min-width: 120px;
    max-width: 280px;
    word-break: break-all;
}
.tbl-col-langs
{
    text-align: center;
    width: 100%;
}
.tbl-col-langs span,
.tbl-col-langs a
{
    display: inline-block;
    margin: 0px 5px;
    width: 30px;
    color: #0288D1;
    line-height: 100%;
    padding: 3px 5px;
}
.tbl-col-langs span img
{
    width: 100%;
}
.dataTables_scrollBody .tbl-col-langs
{
    padding-right: 10px;
}
.not-translate,
.not-translate textarea
{
    color: #ff0000;
}
/*
* ======================================================================================
* ====================================== Reports =======================================
* ======================================================================================
*/
.generate-report .container
{
    max-width: 1400px;
}
.generate-report form
{
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}
.tab-content
{
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}
.tab-content .tab-title
{
    display: inline-block;
    width: 100%;
    background: #0288D1;
    color: #fff;
    padding: 6px 15px;
    position: relative;
    cursor: pointer;
}
.tab-content .tab-title:before
{
    content: "\f0dd";
    font-family: FontAwesome;
    position: absolute;
    font-size: 20px;
    width: 20px;
    height: 20px;
    top: -1px;
    bottom: 0;
    height: 100%;
    right: 0px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    -webkit-justify-content: right;
    justify-content: right;
    -webkit-box-align: right;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-right: 15px;
}

.tab-content .tab-content-inner
{
    display: inline-block;
    width: 100%;
    border: 1px solid #ccc;
    padding: 15px;
}
.tab-content .tab-content-close
{
    display: none;
}
.working-image
{
    display: inline-block;
    width: 100%;
}
.tbl-default table
{
    width: 100%;
}
.tbl-default th
{
    font-weight: bold;
}
.tbl-default th, .tbl-default td
{
    border: 1px solid #ccd0d4;
    vertical-align: middle;
    padding: 5px;
}
.add-row-group
{
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}
.add-row-group .btn-action {
    font-size: .8rem;
    padding: 3px 8px;
    min-width: auto;
}
.col-header
{
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    width: 100%;
}
.group-content
{
    display: inline-block;
    width: 100%;
    border: 1px solid #ccc;
}
.group-content .group-title,
.group-content .group-content-inner
{
    display: inline-block;
    width: 100%;
}
.group-content .group-title
{
    padding: 6px 15px;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
}
.group-content .group-content-inner
{
    padding: 15px;
}

.menu-left
{
    display: flex;
}
.menu-left a
{
    color: #FFF;
    margin-right: 20px;
}
.menu-left a i
{
    margin-right: 5px;
}
.menu-left .menu-li
{
    position: relative;
}
.menu-left .container-menu
{
    position: absolute;top: 100%;left: 0;border:1px solid #d3d3d3;padding: 0 10px; white-space: nowrap;background: #FFF;
    display: none;
}
.menu-left .container-menu > a 
{
    display: flex;
}
.menu-li:hover .container-menu
{
    display: block;
}
