/* CSS Document */

body {
    /* position: relative;*/
    background-color: #FFFFFF;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    padding: 2rem 0rem;
}



/*a:visited {
    color: #F0581C !important;
}*/

a:hover, a:active {
    color: #F0581C !important;
}

/* ####### responsive layout CSS ####### */

@media (max-width: 720px) {
    /* Top Level link style */
    .droplinetabs > li > a {
        border-radius: 0;
        margin-top: 5px;
    }

}

ul.nav li a, ul.nav li a:visited {
    color: #F0581C !important;
}

ul.nav li a:hover, ul.nav li a:active {
    color: #F0581C !important;
}

ul.nav li.active a {
    color: #F0581C !important;
}

.tick {
    color: #006600;
    font-size: 30px;
    font-weight: bold;

}

.cross {
    color: #FF0000;
    font-size: 30px;
    font-weight: bold;

}

#bodyDisplay {

    /*overflow-y: auto;*/
    width: auto;
    height: auto;;

    /* scrollY: true;
     overflow-x:auto;margin: 0 auto;scrollX: true;*/
}

th.rotate {
    /* Something you can count on */
    height: 140px;
    white-space: nowrap;
}

th.rotate > div {
    transform: /* Magic Numbers */ translate(25px, 51px) /* 45 is really 360 - 45 */ rotate(315deg);
    width: 30px;
}

th.rotate > div > span {
    border-bottom: 1px solid #ccc;
    padding: 5px 10px;
}

#reportNonTabulated14 td {

    font-size: 14px;

    font-family: 'Open Sans', sans-serif;

    letter-spacing: normal;

    line-height: 20px;

    padding: 5px;

    border-bottom-width: 0px;

    border-bottom-style: none;

    border-bottom-color: #FFFFFF;

    /*border-bottom-color: #E1E1E1;*/

}

.dash_iframe {
    border: 1px #CCCCCC;
}

#ReportLogsContacts {
    /*font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;*/
    font-family: 'Open Sans', sans-serif;
    border-collapse: separate;
    width: 100%;
    table-layout: auto; /**/
}

#ReportLogsContacts td, #ReportLogsContacts th {
    /**/
    padding: 2px;
    height: 30px;
    font-size: 12px;
    width: 1px;
    white-space: inherit;

}

#ReportLogsContacts tr:nth-child(even) {
    background-color: #f4f1c2;
}

#ReportLogsContacts th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #AE6F60;
    width: 1px;
    white-space: normal;
    color: white; /*#666666#311607#993300*/

}

#ReportLogs {
    /*font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;*/
    font-family: 'Open Sans', sans-serif;
    border-collapse: separate;
    width: 100%;

    table-layout: auto;
}

#ReportLogs td, #ReportLogs th {
    /*border: 1px solid #ddd;*/
    padding: 2px;
    width: 1px;
    white-space: normal;
    /*height:30px;*/
    font-size: 14px;

}

#ReportLogs tr:nth-child(odd) {
    background-color: #f4f1c2;
}

#ReportLogs th {
    padding-top: 13px;
    padding-bottom: 13px;
    text-align: left;
    background-color: #AE6F60;
    color: white;
    white-space: normal;
    /*#666666#311607#993300*/

}

#ReportLogWhite {
    /*font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;*/
    font-family: 'Open Sans', sans-serif;
    border-collapse: separate;
    width: 100%;
    font-size: 14px;
    table-layout: auto;
}

#ReportLogWhite td, #ReportLogWhite th {
    /*border: 1px solid #ddd;*/
    padding: 2px;

}

#ReportLogWhite th {
    padding-top: 14px;
    padding-bottom: 14px;
    text-align: left;
    background-color: #AE6F60;
    color: white; /*#666666#311607*/
}

#export th {
    text-align: left;
    background-color: #AE6F60;
    color: white;
    /*white-space:nowrap;*/
}

#export td {
    /*white-space:nowrap;*/

}

#export tr:nth-child(odd) {
    background-color: #f4f1c2;
}

.droplinetabs * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.droplinetabs a {
    text-decoration: none;
    color: #37476A;
    display: inline-block;
    font-weight: bold;
    padding: 12px;
    position: relative;
}

.droplinetabs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-perspective-origin: 50% 0%;
    perspective-origin: 50% 0%;
}

/* Top Level LI style */
.droplinetabs > li {
}

/* Top Level link style */
.droplinetabs > li > a {
    border-radius: 10px 10px 0 0;
    background: #311607;
    text-transform: capitalize;
}

/* Top Level link style on hover and when active */
.droplinetabs li:hover > a {
    background: #311607;

}

.droplinetabs li {
    display: inline;
}

/* drop line ULs style */
.droplinetabs ul {
    background: #f8ecc9;
    position: absolute;
    left: -5000px;
    width: 100%;
    opacity: 0;
    padding: 10px 0;
    top: auto;
    border: 1px solid #ddd;
    box-shadow: 0 3px 5px #eee;
    -webkit-transform: rotateX(-70deg);
    transform: rotateX(-70deg);
    backface-visibility: hidden;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition: opacity .3s, -webkit-transform .5s, visibility 0s .3s, left 0s .3s;
    transition: opacity .3s, transform .5s, visibility 0s .3s, left 0s .3s;
}

/* Reveal sub menu on hover */
.droplinetabs li:hover > ul {
    opacity: 1;
    left: 0;
    top: auto;
    z-index: 1000;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, transform .5s;
}

.droplinetabs ul li {
    display: inline;
}

/* Sub Levels link style on hover and when active */

.droplinetabs ul li:hover > a {
    background: #f9d423;
    border-radius: 10px;
}

/* LIs with a sub UL style */
.droplinetabs li > a {
    /* add padding to accomodate arrow inside LIs */
    padding-right: 30px;
}

/* LIs with NO sub UL style */
.droplinetabs li > a:only-child {
    /* undo padding for non submenu LIs */
    padding-right: 15px;
}

/* Arrow for LIs with sub ULs */
.droplinetabs li > a:after {
    /* add arrow inside LIs */
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-top-color: black;
    top: 45%;
    right: 8px;
}

/* LIs with NO sub UL pseudo class */
.droplinetabs li > a:only-child:after {
    /* undo arrow for non submenu LIs */
    display: none;
}

.welcome {
    color: #00296B;
    font-size: 16px;
    font-style: normal;
    font-variant: normal;
    font-weight: 100;
    line-height: 18px;
    /*margin-left: 1%;*/
    /* margin-right: -70px;*/
}

.login-container {
    margin-left: -2%;
    /* margin-right: -70px;*/
}

.text-orange {
    color: #F0581C;
}

.background-orange {
    background-color: #F0581C;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: .8em;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

.bs-cm-tools {
    margin: 5px;
}

/*
 * Off Canvas wider at sm breakpoint
 * --------------------------------------------------
 */
@media screen and (max-width: 34em) {
    .row-offcanvas-left
    .sidebar-offcanvas {
        left: -45%;
    }

    .row-offcanvas-left.active {
        left: 45%;
        margin-left: -6px;
    }

    .sidebar-offcanvas {
        width: 45%;
    }
}

.card {
    overflow: hidden;
}

.card-body .rotate {
    z-index: 8;
    float: right;
    height: 100%;
}

.card-body .rotate i {
    /*color: rgba(20, 20, 20, 0.15);*/
    position: absolute;
    left: 0;
    left: auto;
    right: 8px;
    bottom: 0;
    display: block;
    /*-webkit-transform: rotate(-44deg);
    -moz-transform: rotate(-44deg);
    -o-transform: rotate(-44deg);
    -ms-transform: rotate(-44deg);
    transform: rotate(-44deg);*/
}

.filter_accordion {
    background-color: #f4f1c2;

}

.form-inline.filter {
    font-size: 12px !important;
}

.form-inline.filter select {
    max-width: 160px;
    font-size: 12px !important;

}

.table-overflow {
    overflow-y:scroll ;
    overflow-x:scroll ;
    height:500px;
    width: 100%;
}
select{
    width: 150px !important;
}
