html {
  min-height: 100vh;
  display: flex;
}
body {
  min-height: 100vh;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.login-card {
  padding: 40px;
  width: 274px;
  background-color: #F7F7F7;
  margin: auto;
  border-radius: 2px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.login-card h1 {
  font-weight: 100;
  text-align: center;
  font-size: 2.3em;
}

.login-card input[type=submit] {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.login-card input[type=text], input[type=password] {
  height: 44px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  /* border-radius: 2px; */
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.login-card input[type=text]:hover, input[type=password]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.login {
  text-align: center;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  height: 36px;
  padding: 0 8px;
/* border-radius: 3px; */
/* -webkit-user-select: none;
  user-select: none; */
}

.login-submit {
  /* border: 1px solid #3079ed; */
  border: 0px;
  color: #fff;
  text-shadow: 0 1px rgba(0,0,0,0.1);
  background-color: #4d90fe;
  /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#4787ed)); */
}

.login-submit:hover {
  /* border: 1px solid #2f5bb7; */
  border: 0px;
  text-shadow: 0 1px rgba(0,0,0,0.3);
  background-color: #357ae8;
  /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#357ae8)); */
}

.login-card a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
}

.login-card a:hover {
  opacity: 1;
}

.login-help {
  width: 100%;
  text-align: center;
  font-size: 12px;
}

.manageSideNav{
  background-color: black;
  color: #fff;
}
.manageSideNavItem{
  background-color: black;
  color: #fff;
}
.manageSideNavItem2{
  padding-left: 20px;
  background-color: black;
  color: #fff;
}

.manageSideNavItem2 a{
  background-color: black;
  color: #fff;
}

#consoleWrapper {
  min-height: 100vh;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.lrWrapper {
  flex-grow: 1;
  align-self: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: flex-start;
}
.tbWrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.console-component-topbar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  height: 50px;
  background: #373d41;
  font-size: 12px;
  min-width: 100vw;
}
.console-component-topbar .topbar-btn {
  color: #fff;
  font-size: 14px;
  line-height: 50px;
  padding-left: 18px;
  padding-right: 18px;
}
.topbar-btn:hover {
  cursor: pointer;
  text-decoration: none;
}
.console-component-topbar .topbar-btn:hover, .console-component-topbar .topbar-btn.topbar-btn-dark {
  background: #2a2f32;
}

.console-sidebar {
  width: 180px;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: #333744;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
}
.console-sidebar .sidebar-group-toggle {
  height: 40px;
  width: 180px;
  color: #fff;
  background-color: rgb(66, 72, 91);
  line-height: 40px;
  cursor: pointer;
  text-decoration: none;
}
.console-sidebar .sidebar-arrow {
  width: 40px;
  text-align: center;
}
.console-sidebar .sidebar-group-toggle:hover {
  background-color: #00C1DE;
}
.console-sidebar .sidebar-btn {
  height: 40px;
  width: 180px;
  padding-left: 50px;
  color: #fff;
  background-color: #333744;
  line-height: 40px;
  cursor: pointer;
  text-decoration: none;
}
.console-sidebar .sidebar-btn:hover {
  background-color: #4A5064;
}
/*.console-list-view {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.console-list-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
}*/
.console-list-view {
  margin-left: 20px;
}
.console-list-view thead tr th {
    padding: 8px 8px;
    font-weight: normal;
    color: #999;
    border-bottom: 1px solid #e1e6eb;
    background-color: #F5F6FA;
}
.console-list-view tbody tr td {
    padding: 12px 8px;
    border-top: 0px;
    border-bottom: 1px solid #e1e6eb;
    vertical-align: middle;
}
.console-list-col-thum {
  width: 200px;
  height: auto;
}
.upload-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.upload-select {
  width: 120px;
  height: 50px;
  line-height: 35px;
}
.upload-preview {
  width: 300px;
  height: auto;
}
.upload-progress {
  width: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.console-form {
  margin-left: 20px;
}
