/*
    YHC 700 css
*/

/* @import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"; */
/* @import "fonts/poppins.css"; */
:root {
	--yhc-background-color: #eeeeee;
	--yhc-color: #0c4c91;	
}

html {
	visibility: hidden;	
}

body {
    /* font-family: "trebuchet ms", trebuchet, georgia, verdana, arial, sans serif; */
    font-family: verdana, arial, sans serif;
	/*font-size: 1em; */ 
	background: var(--yhc-background-color);
}

a,
a:hover,
a:focus {
	color:var(--yhc-color);
    text-decoration: none;
    transition: all 0.3s;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

a.my-link {
	color: blue;
	text-decoration: underline; 	
}

a.my-link:hover {
	color: purple;
	text-decoration: underline; 	
}

a.btn {
	border-radius: .25rem; 
	border: 1px solid transparent; 
	padding: .5rem 1rem; color: #fff; 
}
a.btn:hover { 
	border-radius: .25rem; 
}

h3 {
	font-size: 1.2rem; 
	font-weight: bold;
	color: var(--yhc-color);
	margin-top: 25px;
	margin-bottom: 25px;
}
h4 {
	font-size: 1.1rem; 
	font-weight: bold;
	color: var(--yhc-color);
	margin-top: 30px;
	margin-bottom: 25px;	
}

.navbar {
    padding: 15px 10px;
	background: white;
	color: var(--yhc-color);
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-nav .nav-link {
    color: var(--yhc-color);
}
.navbar-light .navbar-text {
    color: var(--yhc-color);
}
.navbar h1 {
	color: var(--yhc-color);
	margin:0;
	padding: 10px 0 0 0px;
}

.navbar a {
	color: var(--yhc-color);
	margin: 0px 10px;	
}

.tdata {
	background: white;
}

div.page {
	margin-top: 30px;
	margin-bottom: 50px;	
}

div.section {
	margin-top: 25px;
	margin-bottom: 20px;
}

.form-row {
	margin-top: 10px;
	margin-bottom: 5px;
}

#pageHeader {
	font-size: 0.8rem; 
	font-weight: bold;
}

#dataOra {
	font-size: 0.8rem; 
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

ul ul a {
	color: var(--yhc-color);
    font-size: 0.9rem !important;
    padding-left: 30px !important;
}

.download:link {
    color: blue;
    text-decoration: underline;
}
.download:hover {
    color: red;
    text-decoration: underline;
}

/* ---------------------------------------------------
    TABLES STYLE
----------------------------------------------------- */

th.text, td.text {
	text-align: left;	
}

th.number, td.number {
	text-align: right;	
}

.eptable {
	margin-top: 30px;
	margin-left: 15px;	
}

.spacedrow {
	margin-bottom: 5px;	
}

.diagsection {
	margin-top: 5px;	
	margin-bottom: 30px;
	border-style: solid;
	border-width: thin;
	border-color: lightgray;
	padding: 10px;
	border-radius: 5px;
	background: white;
}
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 100px 20px 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

#pageHeader {
	margin-right: 10px;
}

.page-link {
    color: blue;
	background-color: #eee;
    text-decoration: underline;
    border: none;
}

.dropdown-menu {
	color: var(--yhc-color);
}

.dropdown-menu a {
	color: var(--yhc-color);
}

.footer {
	text-align: center;
	margin-top : 20px;
	margin-bottom : 10px;
}

.modal-info {
	color: white;
	background-color: cornflowerblue;
}

.modal-danger {
	color: white;
	background-color: crimson;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8rem;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}

