﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.button1 {
    background-color: #83AE33;
    color: white;
}

    .button1:hover {
        background-color: white;
        color: black;
        border: 1px solid #83AE33;
    }

.button1none {
    background-color: #83AE33;
    color: white;
    display: none;
}

    .button1none:hover {
        background-color: white;
        color: black;
        border: 1px solid #83AE33;
    }

.button2 {
    background-color: #D8D3D5;
    color: black;
}

    .button2:hover {
        background-color: white;
        color: black;
        border: 1px solid #D8D3D5;
    }

.button3 {
    background-color: #83AE33;
    color: white;
    width: 100%;
    border: 1px solid #83AE33;
}

    .button3:hover {
        background-color: white;
        color: black;
        border: 1px solid #83AE33;
    }

.button4 {
    background-color: #8ea6ff;
    color: white;
    width: 100%;
    border: 1px solid #8ea6ff;
}

    .button4:hover {
        background-color: white;
        color: black;
        border: 1px solid #8ea6ff;
    }

button:focus {
    outline: 1px dotted;
    outline: 0px auto -webkit-focus-ring-color !important;
}

.btn {
    width: 100px;
    margin: 0px 0px 5px 15px;
}

.TableAis thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #B3E363;
    background: #F2F6EB;
}

.TableAis td, .TableAis th {
    padding: .75rem;
    vertical-align: top;
}

.TableAis td {
    border-bottom: 2px solid #B3E363;
}

.modalAction {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modalAction-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 35%;
}

/* The Close Button */
.closeAction {
    background-color: #D41324;
    color: white;
}

    .closeAction:hover,
    .closeAction:focus {
        background-color: white;
        color: black;
        border: 1px solid #D8D3D5;
    }

.dropdown-menu .dropdown-toggle:after {
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
}

.dropdown-menu .dropdown-menu {
    margin-left: 0;
    margin-right: 0;
}

.dropdown-menu li {
    position: relative;
}

.nav-item .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.nav-item .submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu > li:hover {
    background-color: #f1f1f1
}

    .dropdown-menu > li:hover > .submenu {
        display: block;
    }

.navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
    border: 2px solid #83ae33;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    background-color: #83ae33;
}

ul.submenu.dropdown-menu {
    right: 100% !important;
    left: unset;
}

ul.submenu.dropdown-menu-1 {
    left: 100% !important;
    right: unset;
}

.groove {
    border-style: groove;
    border-color: transparent;
}

.groove2 {
    border-style: groove;
    border-color: transparent;
    background: #2c8ada1f;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
}

input {
    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
}

    input[type=text] {
        width: 100%;
    }

    input[type=submit] {
        background-color: DodgerBlue;
        color: #fff;
    }

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            /*when hovering an item:*/
            background-color: #e9e9e9;
        }

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

#divlayout1 {
    display: flex;
    -ms-flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    width: 100%;
    border-bottom: 5px #83AE33 solid;
}

#divlayout2 {
    position: absolute;
    right: 20px;
    top: 10px
}

#LogoFinal1 {
    opacity: 1;
    width: 237px;
    margin-left: 22%;
}

#divnavbar {
    position: absolute;
    left: 33.6%;
    top: 45px;
}

.img-menu {
    width: 85px;
}

.fa fa-caret-left {
    padding: 5px
}

.nav-link text-dark {
    padding: 0
}

#_LoginPartial1 {
    width: 34px;
    height: 32px;
    border-radius: 30px
}

#_LoginPartial2 {
    color: #74A634 !important;
    font-weight: bold
}

#_LoginPartial3 {
    color: #74A634 !important;
    font-weight: bold
}

#_LoginPartial4 {
    color: #74A634 !important;
    font-weight: bold
}

.pb-3 {
    overflow: hidden
}

.TableAis {
    width: 98%;
}

.imghome1 {
    width: 100%;
    padding-left: 20px
}

.imghome2 {
    width: 20px;
    height: 25px
}

.labelhome1 {
    color: #AC121F;
    font-size: 1.25rem;
    font-weight: bold
}

.divhome1 {
    padding: 0 2%
}

.aligncenter {
    text-align: center;
}

.alignLeft {
    text-align: left;
}

.alignright {
    text-align: right;
}

.tdwidth12 {
    width: 12%
}

.tdwidth28 {
    width: 28%
}

.tdwidth32 {
    width: 32%
}

.tdwidth40 {
    width: 40%
}

.inputlogin {
    border-radius: 30px;
    border: 0px solid #ffffff;
    background-color: #e9ecef;
    height: 50px;
}

.btnlogin {
    border-radius: 30px;
    height: 50px;
}

.divloginmain {
    padding: 0 6%
}

.imglogin {
    opacity: 1;
    width: 533px;
}

.inputstyle1 {
    border-radius: 30px;
    border: 0px solid #ffffff;
    background-color: #e9ecef;
    height: 50px;
}

.padding10 {
    padding: 10px;
}

.btnlogin {
    border-radius: 30px;
    height: 50px;
}

.bg-info {
    background-color: #83ae33 !important;
}

borderradius25 {
    border-radius: .25rem;
}

.height30 {
    height: 30px;
}

.width95 {
    width: 95%;
}

.margintop7 {
    margin-top: 7px;
}

.margintop10 {
    margin-top: 10px;
}

.paddingtop20 {
    padding-top: 20px;
}

.bg2c8ada1f {
    background: #2c8ada1f;
}

.imgopc58 {
    opacity: 5.8;
    width: 10%;
}

.padding13 {
    padding: 13px
}

.positionabsolutemarginleft {
    position: absolute;
    margin-left: 15px;
}

.inputdisplayunsetandborder {
    display: unset;
    border: 1px solid #73A434;
}

.validation {
    color: red;
    position: absolute;
}

.textalign-left {
    text-align: left;
}

.textalign-right {
    text-align: right;
}

.textalign-center {
    text-align: center;
}

.padding0606 {
    padding: 0px 6% 0px 6%;
}

.width10 {
    width: 10%;
}

.width100 {
    width: 100%;
}

.width100contents {
    width: 100%;
    display: contents;
}

.colorlimegreen {
    color: limegreen;
}

.borderbgnone {
    border: none;
    background: none;
}

.colorred {
    color: red;
}

.displaynone {
    display: none;
}

.padding06 {
    padding: 0px 6%;
}

.padding45 {
    padding: 0px 45%;
}

.width30 {
    width: 30%;
}

.width85 {
    width: 85%;
}

.lineheightimportant20 {
    line-height: 20px;
}

input[type="search"] {
    border: 2px solid #83ae33;
    border-radius: 7px;
    padding: 5px;
    background-color: #ffffff;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

    /* Style the buttons inside the tab */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        font-size: 17px;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #98c348;
            color: #fff;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #83ae33;
            color: #fff;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.margin066 {
    margin: 0 6.6%;
}

.borderlrb0 {
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
}

.paddingtop30 {
    padding-top: 30px;
}

.width15 {
    width: 15%;
}

.width20 {
    width: 20%;
}

.fullScreen {
    background-color: white;
    opacity: 0.8;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    margin: auto;
    z-index: 99999;
}

.loader {
    margin-left: 45%;
    margin-top: 20%;
    /* border: 16px solid #c6c6c6;
        border-radius: 50%;
        border-top: 16px solid #ED1818;
        width: 120px;
        height: 120px;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;*/
}

.groove {
    border-style: groove;
    border-color: transparent;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: flex;
}

input {
    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
}

    input[type=text] {
        width: 100%;
    }

    input[type=submit] {
        background-color: DodgerBlue;
        color: #fff;
    }

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            /*when hovering an item:*/
            background-color: #e9e9e9;
        }

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.colorais {
    color: #74A634;
}

.padding5 {
    padding: 5px;
}

.fontweightbold {
    font-weight: bold;
}

.padding001010 {
    padding: 0 0 10px 10px;
}

.whremandcolor {
    width: 10rem;
    height: 10rem;
    color: #83AE33;
}

.colorandfont19 {
    color: #74A634;
    font-size: 19px;
}

.borderais {
    border: 1px solid #73A434;
}

.margin0 {
    margin: 0px;
}

.width16 {
    width: 16%;
}

.vertical-align-middle {
    vertical-align: middle;
}

.btnbold {
    color: white;
    background: #74A634;
    border: none;
    font-weight: bold;
}

.bgpadding12 {
    background: #c1bfc0;
    padding: 12px;
}

.colorwhite {
    color: white;
}

.color0366d6 {
    color: #0366d6;
}

.padding3018 {
    padding: 30px 18px;
}

.padding313 {
    padding: 3px 13px;
}

.marginleft5 {
    margin-left: 5px;
}

.width150 {
    width: 150px;
}

.width480 {
    width: 480px;
}

.paddingleft20 {
    padding-left: 20px;
}

.width12 {
    width: 12%;
}

.padding00 {
    padding: 0 0px;
}

.width50 {
    width: 50%;
}

.margin-bottom5px {
    margin-bottom: 5px;
}

.width70aisradius {
    width: 70%;
    border: 1px solid #73A434;
    border-radius: .25rem;
}

.imgw110h100 {
    width: 110px;
    height: 100px;
}

.color74A634 {
    color: #74A634;
}

.colorFF0016 {
    color: #FF0016;
}

.colorffeb00ab {
    color: #ffeb00ab;
}

.fontsize30 {
    font-size: 30px;
}

.cursorpointer {
    cursor: pointer;
}

.padding412 {
    padding: 4px 12px;
}

.padding012 {
    padding: 0 12px;
}

.padding447000 {
    padding: 44px 70px 0px 0px !important
}

.marginleft0 {
    margin-left: 0px;
}

.height32 {
    height: 32px;
}

.width25 {
    width: 25%;
}

.bordernone {
    border: none;
}

.bg74a634 {
    background: #74A634;
}

.positionab {
    position: absolute;
}

.marginleft6 {
    margin-left: 6px;
}

.width90px {
    width: 90px;
}

.width130 {
    width: 130px;
}

.floatr {
    float: right;
}

.paddingtop10 {
    padding-top: 10px;
}

.width120px {
    width: 120px
}

.roleh1 {
    background-color: #83ae33 !important;
    color: white;
}

.TokenID {
    display: none;
}

.Verify {
    text-align: center;
    vertical-align: middle;
}

.spen74A634 {
    color: #74A634;
    font-size: 19px
}

.spenffcc33f5 {
    color: #ffcc33f5;
    font-size: 19px
}

.spenFF0016 {
    color: #FF0016;
    font-size: 19px
}

.fileoutput {
    color: #0577FA;
}

.logColorAC121F {
    color: #AC121F;
}

.logColor74A634 {
    color: #74A634;
}

.tbOLTID {
    display: none;
}

.tbSiteCode {
    display: none;
}

.tbVillageID {
    display: none;
}

.tbProvinceID {
    display: none;
}

.tbPostCode {
    display: none;
}

.tbKMZFileID {
    display: none;
}

.Imagepopup {
    cursor: pointer;
}

#appear_image_div {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    opacity: 0.7;
    background-color: #002447;
}

/* Modal Content */
.modalAction-contentimg {
    margin: auto;
    border: 1px solid #888;
    width: 35%;
}

#appear_image {
    display: block;
    margin: auto;
    position: relative;
    width: 100%;
}

#close_image {
    position: fixed;
    z-index: 12;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

    #close_image:hover {
        opacity: 0.7;
    }

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,21,0.125);
    border-radius: .25rem;
    box-shadow: 0 1px 1px 0 rgba(60,75,100,.14),0 2px 1px -1px rgba(60,75,100,.12),0 1px 3px 0 rgba(60,75,100,.20)
}

    .card:not([class*=border]) {
        border: 0
    }

    .card > hr {
        margin-right: 0;
        margin-left: 0
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-left-radius: calc(0.25rem - 1px);
            border-top-right-radius: calc(0.25rem - 1px)
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-right-radius: calc(0.25rem - 1px);
            border-bottom-left-radius: calc(0.25rem - 1px)
        }

        .card > .card-header + .list-group, .card > .list-group + .card-footer {
            border-top: 0
        }

.card-body {
    flex: 1 1 auto;
    padding: 1rem;
    color: var(--cui-card-color,unset)
}

.card-title {
    margin-bottom: .5rem
}

.card-subtitle {
    margin-top: -.25rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

html:not([dir=rtl]) .card-link + .card-link {
    margin-left: 1rem
}

*[dir=rtl] .card-link + .card-link {
    margin-right: 1rem
}

.card-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    color: unset;
    background-color: rgba(0,0,21,0.03);
    border-bottom: 1px solid rgba(0,0,21,0.125)
}

    .card-header:first-child {
        border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0
    }

.card-footer {
    padding: .5rem 1rem;
    color: unset;
    background-color: rgba(0,0,21,0.03);
    border-top: 1px solid rgba(0,0,21,0.125)
}

    .card-footer:last-child {
        border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)
    }

.card-header-tabs {
    margin-right: -.5rem;
    margin-bottom: -.5rem;
    margin-left: -.5rem;
    border-bottom: 0
}

.card-header-pills {
    margin-right: -.5rem;
    margin-left: -.5rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: calc(0.25rem - 1px)
}

.card-img, .card-img-top, .card-img-bottom {
    width: 100%
}

.card-img, .card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px)
}

.card-img, .card-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px)
}

.card-group > .card {
    margin-bottom: .75rem
}

@media(min-width:576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap
    }

        .card-group > .card {
            flex: 1 0 0%;
            margin-bottom: 0
        }

    html:not([dir=rtl]) .card-group > .card + .card {
        margin-left: 0;
        border-left: 0
    }

    *[dir=rtl] .card-group > .card + .card {
        margin-right: 0;
        border-right: 0
    }

    html:not([dir=rtl]) .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    *[dir=rtl] .card-group > .card:not(:last-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .card-group > .card:not(:last-child) .card-img-top, .card-group > .card:not(:last-child) .card-header {
        border-top-right-radius: 0
    }

    .card-group > .card:not(:last-child) .card-img-bottom, .card-group > .card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0
    }

    html:not([dir=rtl]) .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    *[dir=rtl] .card-group > .card:not(:first-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .card-group > .card:not(:first-child) .card-img-top, .card-group > .card:not(:first-child) .card-header {
        border-top-left-radius: 0
    }

    .card-group > .card:not(:first-child) .card-img-bottom, .card-group > .card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0
    }
}

.bg-primary-gradient {
    background-color: #1f1498;
    background-image: linear-gradient(45deg,var(--cui-primary-start,#321fdb) 0%,var(--cui-primary-stop,#1f1498 100%))
}

.bg-secondary-gradient {
    background-color: #fff;
    background-image: linear-gradient(45deg,var(--cui-secondary-start,#c8d2dc) 0%,var(--cui-secondary-stop,#fff 100%))
}

.bg-success-gradient {
    background-color: #1b9e3e;
    background-image: linear-gradient(45deg,var(--cui-success-start,#2eb85c) 0%,var(--cui-success-stop,#1b9e3e 100%))
}

.bg-info-gradient {
    background-color: #2982cc;
    background-image: linear-gradient(45deg,var(--cui-info-start,#39f) 0%,var(--cui-info-stop,#2982cc 100%))
}

.bg-warning-gradient {
    background-color: #f6960b;
    background-image: linear-gradient(45deg,var(--cui-warning-start,#f9b115) 0%,var(--cui-warning-stop,#f6960b 100%))
}

.bg-danger-gradient {
    background-color: #d93737;
    background-image: linear-gradient(45deg,var(--cui-danger-start,#e55353) 0%,var(--cui-danger-stop,#d93737 100%))
}

.bg-light-gradient {
    background-color: #fff;
    background-image: linear-gradient(45deg,var(--cui-light-start,#e3e8ed) 0%,var(--cui-light-stop,#fff 100%))
}

.bg-dark-gradient {
    background-color: #212333;
    background-image: linear-gradient(45deg,var(--cui-dark-start,#3c4b64) 0%,var(--cui-dark-stop,#212333 100%))
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

marginleft5 {
    margin-left: 5px;
}

.refreshpage {
    color: #F4E821;
}

.highcharts-container {
    position: relative;
    min-height: 150px;
    padding-left: 10px;
}

#container {
    height: 400px;
}

.highcharts-figure,
.highcharts-data-table table {
    min-width: 310px;
    max-width: 800px;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

.highcharts-titleDetail {
    color: rgb(51, 51, 51);
    font-size: 18px;
    fill: rgb(51, 51, 51);
}

.highcharts-LabelDetail {
    display: block;
    text-align: center;
    padding-top: 30px;
    font-size: 24pt;
    color: #28669d;
}
.highcharts-figure,
.highcharts-data-table table {
    min-width: 320px;
    max-width: 700px;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}
