html { font-family: ibm-plex-sans, sans-serif; font-weight: 400; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #f5f6fa; color: #001737; }
a { color: #0168fa; text-decoration: none; }
.col-12 { width: 100%; float: left; }

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20; height: 60px;
  background: #fff; border-bottom: 1px solid rgba(72,94,144,.16); padding: 0 20px;
}
header .logo { float: left; padding: 17px 0; color: #042893; font-weight: 700; }
header .navigation { float: left; margin-left: 25px; }
header .navigation ul { list-style: none; }
header .navigation li { display: inline-block; }
header .navigation a {
  padding: 19px 10px; float: left; color: #001737; font-size: 15px; font-weight: 600;
}
header .navigation a.active, header .navigation a:hover { color: #0168fa; }
header .control { float: right; padding-top: 16px; font-size: 13px; color: #637388; }
.instance { background: #0168fa; color: #fff; border-radius: 3px; padding: 3px 9px; }

#content { width: 100%; min-height: 100vh; padding: 80px 20px 60px; float: left; }
.sidebar-left {
  width: 240px; float: left; background: #fff; border-right: 1px solid rgba(72,94,144,.16);
  min-height: calc(100vh - 120px); padding: 25px; position: fixed; margin-left: -20px;
}
.sidebar-left h3 { font-size: 10px; font-weight: 600; color: #8392a5; text-transform: uppercase; margin-bottom: 8px; }
.sidebar-left ul { list-style: none; margin-bottom: 25px; }
.sidebar-left li { margin-bottom: 8px; }
.sidebar-left a { color: #001737; font-weight: 600; font-size: 15px; }
.sidebar-left a.active { color: #0168fa; }
.main { width: calc(100% - 220px); float: left; margin-left: 220px; }

.title { width: 100%; float: left; margin-bottom: 15px; }
.breadcrumb { font-size: 10px; font-weight: 600; text-transform: uppercase; color: #0168fa; margin-left: 20px; }
.pagetitle { margin-left: 20px; }
.pagetitle h1 { font-size: 2rem; font-weight: 400; }
.buttons { float: right; margin-right: 20px; margin-top: -40px; }
.btn {
  font-size: 11px; line-height: 1.77; padding: .39rem .6rem; cursor: pointer; text-transform: uppercase;
  font-weight: 600; border-radius: .2rem; border: 1px solid transparent; margin-left: 10px;
}
.btn.blue { color: #fff; background: #0168fa; border-color: #0168fa; }
.btn.gray { color: #fff; background: #637388; border-color: #637388; }

.card {
  width: calc(100% - 20px); margin-left: 20px; background: #fff; border: 1px solid rgba(72,94,144,.16);
  border-radius: .25rem; box-shadow: 0 0 10px rgba(28,39,60,.05); float: left; margin-bottom: 20px;
}
.card-header { padding: 15px 20px; border-bottom: 1px solid rgba(72,94,144,.16); float: left; width: 100%; }
.card-header h2 { font-size: .875rem; font-weight: 600; float: left; }
.card-content { width: 100%; float: left; padding: 20px; }

table { width: 100%; font-size: 13px; }
th { text-transform: uppercase; color: #8392a5; font-size: 10px; text-align: left; }
th, td { padding: 8px 12px; border-top: 1px solid rgba(72,94,144,.16); }
thead th { border-top: 0; }
tbody tr:hover { background: #f5f5f5; }

form { width: 100%; float: left; }
.form-group { width: 100%; float: left; margin-bottom: 16px; }
.form-group label { font-size: 11px; color: #8392a5; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; display: block; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid #c0ccda; border-radius: .25rem; padding: .5rem .625rem; font-size: 14px;
}
.alert { padding: 12px 15px; margin-bottom: 1rem; border-radius: .25rem; font-size: 13px; }
.alert.error { color: #721c24; background: #f8d7da; }
.alert.success { color: #085f2e; background: #cff1de; }

.login-wrap { width: 100%; max-width: 500px; margin: 100px auto 0; }
.login_form { margin: 0 50px; max-width: 400px; float: left; width: calc(100% - 100px); }
.login_form h1 { font-size: 1.53rem; font-weight: 600; margin-bottom: 5px; }
.login_form p { color: #8392a5; margin-bottom: 30px; }
.login_form button { width: 100%; background: #042893; border: 1px solid #042893; color: #fff; padding: .6rem; border-radius: .25rem; cursor: pointer; }

.hidden { display: none !important; }
footer {
  color: #637388; border-top: 1px solid rgba(72,94,144,.16); padding: 15px 20px; font-size: 10px;
  position: fixed; bottom: 0; width: 100%; text-transform: uppercase; background: #fff;
}
footer .copy { float: left; }
footer .disclaimer { float: right; }

@media (max-width: 1000px) {
  .sidebar-left { display: none; }
  .main { width: 100%; margin-left: 0; }
}
