@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
body {
  font-size: 0.875rem;
  min-width: 1200px;
}
body.login {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}
body.login .form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}
body.login .form-signin .checkbox {
  font-weight: 400;
}
body.login .form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
body.login .form-signin .form-control:focus {
  z-index: 2;
}
body.login .form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
body.login .form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.container-fluid {
  min-width: 1200px;
}
.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}
.sidebar {
  /*position:fixed;*/
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 48px 0 0;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}
.sidebar .nav-link {
  font-weight: 500;
  color: #333;
  font-size: 13.5px;
}
.sidebar .nav-link .feather {
  margin-right: 4px;
  font-size: 16px;
  color: #999;
}
.sidebar .nav-link.active {
  color: #007bff;
}
.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}
.sidebar-sticky {
  position: relative;
  top: 0;
  padding-top: 0.5rem;
  overflow-x: hidden;
  width: 200px;
}
.sidebar-sticky::-webkit-scrollbar {
  width: 5px;
}
.sidebar-sticky::-webkit-scrollbar-track {
  background: #ddd;
}
.sidebar-sticky::-webkit-scrollbar-thumb {
  background: #888;
}
.sidebar-sticky::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@supports (position: -webkit-sticky) or (position: sticky) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}
.sidebar-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
}
[role="main"] {
  padding-top: 48px;
}
[role="main"].ml-auto {
  margin-left: unset !important;
}
.navbar-brand {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);
  width: 200px;
}
.navbar .form-control {
  padding: 0.75rem 1rem;
  border-width: 0;
  border-radius: 0;
}
.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}
.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.ajs-button.ajs-ok {
  color: #fff !important;
  background: #28a745 !important;
  transition: all 0.2s;
  border-radius: 4px;
  font-weight: 100 !important;
}
.ajs-button.ajs-ok:hover {
  background: #1e7e34 !important;
}
.ajs-button.ajs-ok:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  outline: none;
}
.ajs-button.ajs-cancel {
  color: #fff !important;
  background: #dc3545 !important;
  transition: all 0.2s;
  border-radius: 4px;
  font-weight: 100 !important;
}
.ajs-button.ajs-cancel:hover {
  background: #c82333 !important;
}
.ajs-button.ajs-cancel:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  outline: none;
}
.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.item-list > .box2 {
  display: inline-block;
  width: 227px;
  margin: 4px;
  box-sizing: border-box;
  border: 1px solid #e9ebee;
  border-radius: 2px;
  background: #fff;
  padding: 5px;
}
.item-list > .box2 > div#drop {
  cursor: move;
}
.item-list > .box2 > .img,
.item-list > .box2 > div > .img {
  width: 100%;
  height: 200px;
  background: #ccc;
  background-position: center top !important;
  background-size: cover !important;
  position: relative;
}
.item-list > .box2 > .active:after,
.item-list > .box2 > div > .active:after {
  content: "done";
  font-family: "Material Icons";
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  text-align: center;
  max-width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-top: -40px;
  font-size: 50px;
  background: #4caf50;
  border-radius: 100%;
  color: #fff;
  line-height: 75px;
  border: 3px solid #fff;
  box-sizing: border-box;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.item-list > .box2 > .img > span,
.item-list > .box2 > div > .img > span {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.51);
  left: 0;
  right: 0;
  padding: 5px;
  color: #fff;
  font-family: Prompt;
  font-weight: 300;
}
.item-list > .box2 > div > .img > .action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  text-align: right;
}
.item-list > .box2 > .action,
.item-list > .box2 > div > .action {
  width: 100%;
  margin-top: 5px;
  padding: 5px 0;
  text-align: right;
}
.item-list > .box2 > div > .action > .name,
.item-list > .box2 > div > .action > .position {
  font-family: Prompt;
  font-weight: 300;
  text-align: center;
  font-size: 13px;
}
.view {
  display: inline-block;
  width: 27px;
  height: 27px;
  vertical-align: top;
  border-radius: 100%;
  position: relative;
}
.view > input[type="checkbox"] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: relative;
  z-index: 99;
  cursor: pointer;
}
.view > span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 100%;
}
.view > span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  text-align: center;
  line-height: 27px;
  color: #fff;
  border-radius: 100%;
}
.view > input[type="checkbox"] + span:after {
  content: "visibility_off";
  background-color: #ddd;
}
.view > input[type="checkbox"]:checked + span:after {
  content: "visibility";
  background: #4caf50;
}
a[href="https://www.froala.com/wysiwyg-editor?k=u"] {
  display: none !important;
}
