body {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 15px;
  background: #FFFFFF;
  color: #535353;
}
.window-wrapper {
  width: 100%;
  padding: 0px 15px;
  max-width: 630px;
  margin: 0px auto 30px auto;
}
.window-middle,
.window {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 0px 40px rgba(83,83,83,0.15);
  width: 100%;
  padding: 60px;
}
@media (max-width: 580px) {
  .window-middle,
  .window {
    padding: 40px 30px;
  }
}
.window-middle .title,
.window-middle .title + p,
.window .title,
.window .title + p {
  text-align: center;
}
.window-middle .links,
.window .links {
  padding: 30px 0px 0px;
  text-align: center;
}
.window-middle .links a,
.window .links a {
  color: inherit;
}
.window {
  width: 100%;
  max-width: 100%;
  text-align: left;
}
@media (max-width: 580px) {
  .window {
    text-align: center;
  }
}
.window .title,
.window .title + p {
  text-align: left;
}
@media (max-width: 580px) {
  .window .title,
  .window .title + p {
    text-align: center;
  }
}
.window.window-codes {
  padding-left: 210px;
  background-size: 110px auto !important;
  background: url('/img/i_cody.svg') left 60px center no-repeat;
}
@media (max-width: 580px) {
  .window.window-codes {
    padding: 170px 30px 30px 30px;
    background-size: auto 110px !important;
    background: url('/img/i_cody.svg') top 40px center no-repeat;
  }
}
.window.window-two-factor {
  padding-left: 210px;
  background-size: 110px auto !important;
  background: url('/img/i_two_factor.svg') left 60px center no-repeat;
}
@media (max-width: 580px) {
  .window.window-two-factor {
    padding: 170px 30px 30px 30px;
    background-size: auto 110px !important;
    background: url('/img/i_two_factor.svg') top 40px center no-repeat;
  }
}
.window.window-password {
  padding-left: 210px;
  background-size: 110px auto !important;
  background: url('/img/i_password.svg') left 60px center no-repeat;
}
@media (max-width: 580px) {
  .window.window-password {
    padding: 170px 30px 30px 30px;
    background-size: auto 110px !important;
    background: url('/img/i_password.svg') top 40px center no-repeat;
  }
}
.window.window-dashboard {
  padding-left: 210px;
  background-size: 110px auto !important;
  background: url('/img/i_dashboard.svg') left 60px center no-repeat;
}
@media (max-width: 580px) {
  .window.window-dashboard {
    padding: 170px 30px 30px 30px;
    background-size: auto 110px !important;
    background: url('/img/i_dashboard.svg') top 40px center no-repeat;
  }
}
.window + .window {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .window + .window {
    margin-top: 30px;
  }
}
.modal {
  padding: 30px 15px;
}
@media (min-width: 992px) {
  .modal {
    left: 240px;
  }
}
.modal .modal-dialog {
  width: 100%;
  max-width: 600px;
  margin: 0px auto !important;
}
.modal .modal-dialog .modal-content {
  background: #FFF;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  box-shadow: none !important;
  padding: 30px;
}
.modal .modal-dialog .modal-content .modal-close {
  width: 15px;
  height: 15px;
  background: url('/img/icons/i_close.svg') center center no-repeat;
  position: absolute;
  background-size: 100% auto !important;
  top: 20px;
  right: 20px;
  cursor: pointer !important;
}
.modal .modal-dialog .modal-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0px 0px 30px 0px;
  text-align: center;
}
.title,
h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0px 0px 25px 0px;
}
.title.no-margin,
h2.no-margin {
  margin: 0px;
}
.title span,
h2 span {
  color: #c65749;
}
.title + p,
h2 + p {
  margin: 0px 0px 25px 0px;
}
.logo {
  width: 280px;
  height: 43px;
  margin: 9.27vh auto;
}
.logo img {
  max-width: 100%;
  height: auto !important;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0px 0px 30px 0px;
}
.sidebar {
  width: 240px;
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  overflow: auto;
  background: #FFF;
  z-index: 1041;
  box-shadow: 0px 0px 40px rgba(83,83,83,0.15);
}
@media (max-width: 991px) {
  .sidebar {
    left: -240px;
    top: 100px;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
  .sidebar.in {
    left: 0px;
  }
}
.sidebar .logo-sidebar {
  height: 100px;
  border-bottom: 2px solid #e3e3e3;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .sidebar .logo-sidebar {
    display: none;
  }
}
.sidebar .logo-sidebar a {
  display: block;
  width: 54px;
}
.sidebar .logo-sidebar a img {
  max-width: 100%;
  height: auto !important;
}
.sidebar .welcome {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 20px;
  text-align: center;
  line-height: 46px;
}
@media (max-width: 991px) {
  .sidebar .welcome {
    margin: 25px 15px;
  }
}
.sidebar > .menu {
  margin: 0px 20px;
  list-style: none;
  padding: 0px;
}
@media (max-width: 991px) {
  .sidebar > .menu {
    margin: 0px 15px;
  }
}
.sidebar > .menu > li {
  border: 2px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 12px;
  padding: 0px 20px;
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}
.sidebar > .menu > li > a {
  display: block;
  padding: 13px 0px;
  font-size: 14px;
  font-weight: bold;
  color: #535353;
  background: url('/img/arrow-right.svg') right center no-repeat;
  background-size: auto 12px !important;
  text-decoration: none;
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}
.sidebar > .menu > li:hover,
.sidebar > .menu > li.active {
  border: 2px solid #c65749;
}
.sidebar > .menu > li:hover > a,
.sidebar > .menu > li.active > a {
  color: #c65749;
  background: url('/img/arrow-right-color.svg') right center no-repeat;
}
.sidebar > .menu > li ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.sidebar > .menu > li ul > li > a {
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #535353;
  text-decoration: none;
}
.sidebar > .menu > li ul > li.active > a,
.sidebar > .menu > li ul > li:hover > a {
  color: #c65749;
}
@media (min-width: 992px) {
  .sidebar .actions {
    display: none;
  }
}
header {
  position: fixed;
  left: 240px;
  top: 0px;
  right: 0px;
  height: 100px;
  border-bottom: 2px solid #e3e3e3;
  z-index: 2;
  background: #FFF;
}
@media (max-width: 991px) {
  header {
    left: 0px;
    padding: 0px 15px;
  }
}
header .logo-header {
  float: left;
  margin-top: 29px;
}
@media (min-width: 992px) {
  header .logo-header {
    display: none;
  }
}
header .logo-header a {
  display: block;
  height: 40px;
  width: auto;
}
header .logo-header a img {
  max-width: 100%;
  height: 100% !important;
}
header .toggle-menu {
  position: absolute;
  right: 15px;
  top: 24px;
  width: 50px;
  height: 50px;
  border: 2px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: url('/img/i-toggle.svg') no-repeat center center;
  background-size: 14px 14px !important;
  cursor: pointer;
}
header .toggle-menu.in {
  background: url('/img/i-toggle-close.svg') no-repeat center center;
  background-size: 14px 14px !important;
}
@media (min-width: 992px) {
  header .toggle-menu {
    display: none;
  }
}
header .actions {
  position: absolute;
  top: 24px;
  right: 60px;
  z-index: 10;
  margin: 0px;
}
@media (max-width: 991px) {
  header .actions {
    display: none;
  }
}
header .actions a {
  margin: 0px 0px 0px 10px;
}
.actions {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 10;
  margin: 30px 15px;
}
.actions a {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 46px;
  height: 46px;
  border: 2px solid #e3e3e3;
  cursor: pointer !important;
}
.actions a.action-settings {
  background: url('/img/icons/i_settings.svg') center center no-repeat;
}
.actions a.action-notification {
  background: url('/img/icons/i_notifications.svg') center center no-repeat;
}
.actions a.action-notification .counts {
  background: #c65749;
  color: #FFF;
  width: 20px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 12px;
  text-align: center;
}
.actions a.action-notification.in {
  border: 2px solid #c65749;
  background: url('/img/icons/i_notifications_active.svg') center center no-repeat;
}
.actions a.action-logout {
  background: url('/img/icons/i_logout.svg') center center no-repeat;
}
.table-header {
  display: none;
}
.table-hover {
  border-collapse: unset;
  border-spacing: 0px 5px;
  margin: 0px;
}
.table-hover th {
  border: 0px;
  padding: 10px 15px 5px !important;
  border: 0px !important;
}
@media (max-width: 767px) {
  .table-hover th {
    padding: 10px !important;
  }
}
.table-hover tbody tr {
  background: #FFF;
  box-shadow: 0px 0px 10px rgba(83,83,83,0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.table-hover tbody tr td {
  padding: 10px 15px;
  font-size: 15px;
  border: 0px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .table-hover tbody tr td {
    padding: 10px;
  }
}
.table-hover tbody tr td:first-child {
  width: 40px;
  -webkit-border-radius: 4px 0px 0px 4px;
  -moz-border-radius: 4px 0px 0px 4px;
  border-radius: 4px 0px 0px 4px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.table-hover tbody tr td:last-child {
  -webkit-border-radius: 0px 4px 4px 0px;
  -moz-border-radius: 0px 4px 4px 0px;
  border-radius: 0px 4px 4px 0px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.table-hover tbody tr td img,
.table-hover tbody tr td svg {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: 21px;
}
.table-hover tbody tr td a {
  color: inherit;
}
.table-hover tbody tr td.to-right {
  text-align: right;
}
.table-hover tbody tr.blank {
  box-shadow: none;
  background: none !important;
}
.table-hover tbody tr.blank td {
  padding: 5px;
  background: none !important;
}
.table-hover tbody tr.notification-unreaded {
  background: #f5dddb;
}
.table-hover tbody tr.summary {
  background: #f5dddb;
  box-shadow: none;
}
.table-hover tbody tr.summary td {
  padding: 15px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .table-hover tbody tr.summary td {
    padding: 15px 10px;
  }
}
.table-hover tbody tr.summary td:first-child {
  -webkit-border-radius: 4px 0px 0px 4px;
  -moz-border-radius: 4px 0px 0px 4px;
  border-radius: 4px 0px 0px 4px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.table-hover tbody tr.summary td:last-child {
  -webkit-border-radius: 0px 4px 4px 0px;
  -moz-border-radius: 0px 4px 4px 0px;
  border-radius: 0px 4px 4px 0px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.table-hover tbody tr.summary td.to-right {
  text-align: right;
}
.link-action {
  font-size: 17px;
  font-weight: bold;
  border-bottom: 2px solid #c65749;
  color: #c65749;
  text-decoration: none !important;
}
.link-action:hover {
  color: #535353;
  border-bottom: 2px solid #535353;
}
.link-download {
  color: #535353;
  padding-right: 30px;
  display: inline-block;
  background: url('/img/icons/i_download.svg') right 0px center no-repeat;
  background-size: auto 15px !important;
  text-decoration: none;
}
.data-header {
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .data-header {
    display: block;
  }
}
.data-header h2 {
  margin: 0px;
  width: 100%;
  line-height: 46px;
}
@media (max-width: 991px) {
  .data-header h2 {
    line-height: normal;
  }
}
.data-header form {
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 0px -5px;
}
.data-header form ::-webkit-input-placeholder {
  color: #535353;
}
.data-header form :-moz-placeholder {
  color: #535353;
}
.data-header form ::-moz-placeholder {
  color: #535353;
}
.data-header form :-ms-input-placeholder {
  color: #535353;
}
.data-header form ::-ms-input-placeholder {
  color: #535353;
}
@media (max-width: 1200px) {
  .data-header form {
    -webkit-box-lines: multiple;
    -moz-box-lines: mulitple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
  }
}
@media (max-width: 580px) {
  .data-header form {
    margin: 15px 0px 0px 0px;
  }
}
.data-header form .search {
  min-width: 250px;
  margin: 0px 5px;
}
@media (max-width: 580px) {
  .data-header form .search {
    min-width: 100%;
    margin: 5px 0px;
  }
}
.data-header form .search .form-control {
  height: 46px;
  line-height: 46px;
  font-size: 14px;
  padding: 0px 20px;
  background: url('/img/icons/i_search.svg') right 20px center no-repeat;
  background-size: auto 18px !important;
}
.data-header form .export-xls {
  margin: 0px 5px;
  min-width: 170px;
}
@media (max-width: 580px) {
  .data-header form .export-xls {
    min-width: 100%;
    margin: 5px 0px;
  }
}
.data-header form .export-xls .btn-export {
  height: 46px;
  line-height: 40px;
  font-size: 14px;
  padding: 0px 40px 0px 20px;
  background: url('/img/icons/i_download.svg') right 20px center no-repeat;
  background-size: auto 15px !important;
  border: 2px solid #e3e3e3;
  outline: none !important;
  color: #535353;
  font-weight: bold;
  width: 100%;
  text-align: left;
  box-shadow: none !important;
}
.data-header form .date-filter {
  width: 170px;
  min-width: 170px;
  margin: 0px 5px;
}
@media (max-width: 580px) {
  .data-header form .date-filter {
    min-width: 100%;
    width: 100%;
    margin: 5px 0px;
  }
  .data-header form .date-filter .input-group {
    width: 100%;
  }
}
.data-header form .date-filter .form-control {
  height: 46px;
  line-height: 46px;
  font-size: 14px;
  padding: 0px 20px;
  background: url('/img/icons/i_datepicker.svg') right 20px center no-repeat;
  background-size: auto 18px !important;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.data-header form .date-filter .form-date .input-group-addon {
  display: none !important;
}
.data-footer {
  position: fixed;
  right: 0px;
  left: 240px;
  bottom: 0px;
  top: auto;
  z-index: 99;
  border-top: 2px solid #e3e3e3;
  text-align: right;
  padding: 0px 60px;
  height: 100px;
  background: #FFF;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media (max-width: 991px) {
  .data-footer {
    padding: 25px 15px;
    margin: 40px -15px 0px -15px;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}
.data-footer .pagination {
  padding: 0px;
  margin: 0px 0px 0px auto;
  list-style: none;
}
.data-footer .pagination > li a {
  width: 50px;
  height: 50px;
  line-height: 46px;
  font-size: 15px;
  font-weight: bold;
  color: #535353 !important;
  margin: 0px 0px 0px 10px;
  padding: 0px !important;
  text-align: center;
  background: #FFF !important;
  border: 2px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.data-footer .pagination > li:hover > a,
.data-footer .pagination > li.active > a {
  border-color: #c65749 !important;
  color: #c65749 !important;
}
.data-footer .pagination > li.next > a {
  background: url('/img/arrow-right.svg') no-repeat center center !important;
  background-size: 7px 12px !important;
}
.data-footer .pagination > li.prev > a {
  background: url('/img/arrow-left.svg') no-repeat center center !important;
  background-size: 7px 12px !important;
}
.data-footer .pagination > li.dots > a {
  width: 30px;
  border: 0px !important;
}
.contents {
  position: fixed;
  left: 240px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  padding: 140px 60px 60px 60px;
  z-index: 1;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.contents.has-footer {
  padding-bottom: 136px;
}
@media (max-width: 991px) {
  .contents {
    left: 0px;
    padding: 130px 15px 30px 15px !important;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .contents.has-footer {
    padding: 130px 15px 0px 15px !important;
  }
}
.contents .contents-inner {
  width: 100%;
}
.table-mobile {
  border: 0px;
}
.table-mobile.active.mCustomScrollbar .mCSB_container {
  margin: 20px 0px 0px 0px !important;
}
.table-mobile.active.mCustomScrollbar .mCSB_scrollTools_horizontal {
  top: 0px;
  bottom: auto;
}
.table-mobile.active.mCustomScrollbar .table-hover {
  padding: 0px 10px;
}
.data-table-inner.mCustomScrollbar {
  margin: 0px -20px 0px -40px;
}
.data-table-inner.mCustomScrollbar .mCustomScrollBox .mCSB_container {
  margin-right: 0px !important;
}
.data-table-inner.mCustomScrollbar .data-table-inner-inside {
  padding: 30px 40px;
}
.data-table-inner.mCustomScrollbar .mCSB_scrollTools {
  right: 15px !important;
}
.mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
  background: #535353 !important;
}
.mCSB_scrollTools .mCSB_draggerContainer .mCSB_draggerRail {
  background-color: #e3e3e3 !important;
}
