* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', Arial, Helvetica, Sans-serif, Verdana, Tahoma;
}

ul {
	list-style-type: none;
}

a {
	color: #333;
	text-decoration: none;
  transition: color .2s linear;
}

a:hover {
  color: #0052d9;
}

.table a {
    color: #0052d9;
}

.table a:hover {
    text-decoration: underline;
}

/** =======================
 * Contenedor Principal
 ===========================*/
h1 {
 	color: #FFF;
 	font-size: 24px;
 	font-weight: 400;
 	text-align: center;
 	margin-top: 80px;
 }

h1 a {
 	color: #333;
 	font-size: 16px;
}

.accordion {
 	background: #FFF;
 	-webkit-border-radius: 4px;
 	-moz-border-radius: 4px;
 	border-radius: 4px;
}

.accordion .link {
	cursor: pointer;
	display: block;
	padding: 15px 15px 15px 42px;
	color: #4D4D4D;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
  border-radius: 4px;
}

.accordion li:not(.open) .link:hover {
  background: #eee;
}

.accordion > li {
  padding: 6px 12px;
}

.accordion li:last-child .link {
	border-bottom: 0;
}

.accordion li i {
	position: absolute;
	top: 16px;
	left: 12px;
	font-size: 18px;
	color: #595959;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
  width: 18px;
  text-align: center;
}

.accordion li i.fa-chevron-down {
	right: 12px;
	left: auto;
	font-size: 16px;
}

.accordion li.open .link {
	color: #0052d9;
}

.accordion li.open i {
	color: #0052d9;
}
.accordion li.open i.fa-chevron-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

/**
 * Submenu
 -----------------------------*/
.submenu {
 	display: none;
 	background: #fff;
 	font-size: 14px;
}

.submenu li {
 	/* border-bottom: 1px solid #4b4a5e; */
  /* padding: 6px 12px; */
}

.submenu a {
 	display: block;
 	text-decoration: none;
 	/* color: #d9d9d9; */
 	padding: 12px;
 	padding-left: 42px;
 	-webkit-transition: all 0.25s ease;
 	-o-transition: all 0.25s ease;
 	transition: all 0.25s ease;
  border-radius: 4px;
}

.submenu a:hover {
  background: #eee;
}

.submenu li.active a {
  background: #d9e1ff;
  color: #0052d9;
}


.page {
  width: 100vw;
  height: 100vh;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
}

.header .title {
    width: 260px;
}

.header .hint {
    flex: 1;
    color: #666;
    font-size: 14px;
}

.header > .action {
  display: flex;
}

.header > .action > .input {
  width: 320px;
  height: 32px;
  line-height: 24px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  transition: all .2s ease-in-out;
  margin-right: 8px;
}

.header > .action > .input:focus-visible {
  outline: none;
  border-color: #0052d9;
}

.header > .action > .button {
  height: 32px;
  line-height: 24px;
  border: 1px solid #0052d9;
  background: #0052d9;
  padding: 0 15px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  line-height: 32px;
  transition: all .2s ease-in-out;
}

.header > .action > .button:hover {
  background-color: #366ef4;
  border-color: #366ef4;
}

.header > .action > .button:active {
  background-color: #618dff;
  border-color: #618dff;
}

.container {
  flex: 1;
  display: flex;
}

.sidebar {
  width: 260px;
  min-width: 260px;
  background: #fff;
}

.page-content {
  height: calc(100vh - 65px);
  padding: 12px 24px;
  overflow: hidden;
  flex-direction: column;
}

.content-card {
  height: 100%;
  width: 100%;
  flex: 1;
  background: #fff;
  overflow-y: scroll;
  overflow-x: hidden;
  border-radius: 0 0 8px 8px;
}

.content-card::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

.content-card::-webkit-scrollbar-thumb {
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: content-box;
  background-color: rgba(0, 0, 0, .1);
}

.breadcrumb {
  padding: 10px 16px;
  border-bottom: 1px solid #dcdcdc;
  background: #fff;
  border-radius: 8px 8px 0 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #999;
  text-decoration: none;
  font-size: 14px;
}

.breadcrumb-item .text-overflow {
  position: relative;
  display: flex;
  align-items: center;
}

.breadcrumb-item .text-overflow .inner {
  max-width: 120px;
  display: flex;
  align-items: center;
  transition: color .2s linear;
}

.breadcrumb-item .inner {
  word-break: break-all;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumb-item .inner-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #999;
  transition: color .2s linear;
}

.breadcrumb-item .separator {
  margin: 0 4px;
  display: flex;
  align-items: center;
  text-overflow: clip;
}

.breadcrumb-item:last-child .inner-text {
  color: #333;
}

.breadcrumb-item .inner-text:hover {
  color: #0052d9 !important;
}

.breadcrumb-item:last-child .separator {
  display: none;
}

.table-wrap {
  margin: 24px;
  border-radius: 3px;
  border: 1px solid #dcdcdc;
}

.table {
  width: 100%;
  border-spacing: 0;
}

.table thead,
.table tbody {
  width: 100%;
}

.table thead th {
  text-align: left;
}

.table th,
.table td {
  padding: 12px 16px;
  border-bottom: 1px solid #dcdcdc;
}

.table th + th,
.table td + td {
  border-left: 1px solid #dcdcdc;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tbody tr:hover {
  background: #f3f3f3;
}

.table .type,
.table .number {
  width: 100px;
}