:root {
  /* Colors */
  --primary-color: #242c6d;
  --secondary-color: #6c757d;
  --light-color: #f8f9fa;
  --body-color: #2b2b2b;

  /* Fonts */
  --font-primary: "Rubik", sans-serif;

  /* Spacing */
  --spacing-sm: 8px;
  --spacing-md: 16px;
}

body {
  background: #eff3f6;
  font-family: var(--font-primary);
  margin: 0;
  font-size: 14px;
  color: var(--body-color);
}

/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f8f9fa;
} */

html {
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
  background: #eff3f6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  font-weight: 600;
}

h1 {
  line-height: 43px;
}

h2 {
  line-height: 35px;
}

h3 {
  line-height: 30px;
}

h3 small {
  color: #343a40;
}

h4 {
  line-height: 22px;
}

h4 small {
  color: #343a40;
}

h5 small {
  color: #343a40;
}

b {
  font-weight: 500;
}

* {
  outline: none !important;
}

a {
  color: #6c757d;
}

a:hover {
  outline: 0;
  text-decoration: none;
  color: #6c757d;
}

a:active {
  outline: 0;
  text-decoration: none;
  color: #6c757d;
}

a:focus {
  outline: 0;
  text-decoration: none;
  color: #6c757d;
}

code {
  color: #44a2d2;
}

.tab-btn {
  display: none;
}

.container-alt {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.footer {
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  bottom: 0;
  color: #2d3b48;
  text-align: center;
  padding: 20px 30px;
  position: absolute;
  right: 0;
  left: 240px;
}

#wrapper {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.page {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.header-title {
  font-size: 16px;
}



/* ==============
  Loader
===================*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eff3f6;
  z-index: 9999999;
}

#status {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
}

.spinner {
  position: absolute;
  width: 78px;
  height: 78px;
  left: 50%;
  margin-left: -39px;
  margin-top: -39px;
}

.spinner:before {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  margin-top: -23px;
  left: 50%;
  margin-left: -23px;
  border-width: 2px 1px;
  border-style: solid;
  border-color: #44a2d2 rgba(68, 162, 210, 0.3);
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  animation: spin 3.45s infinite;
  -o-animation: spin 3.45s infinite;
  -ms-animation: spin 3.45s infinite;
  -webkit-animation: spin 3.45s infinite;
  -moz-animation: spin 3.45s infinite;
}

.spinner:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  margin-top: -6px;
  left: 50%;
  margin-left: -6px;
  background-color: #44a2d2;
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -o-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -ms-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -webkit-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -moz-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(1080deg);
  }
}

@keyframes pulse {
  0% {
    background-color: rgba(68, 162, 210, 0.2);
  }

  13% {
    background-color: rgba(68, 162, 210, 0.2);
  }

  15% {
    background-color: rgba(68, 162, 210, 0.9);
  }

  28% {
    background-color: rgba(68, 162, 210, 0.9);
  }

  30% {
    background-color: rgba(68, 162, 210, 0.2);
  }

  43% {
    background-color: rgba(68, 162, 210, 0.2);
  }

  45% {
    background-color: rgba(68, 162, 210, 0.9);
  }

  70% {
    background-color: rgba(68, 162, 210, 0.9);
  }

  74% {
    background-color: rgba(68, 162, 210, 0.2);
  }

  100% {
    background-color: rgba(68, 162, 210, 0.9);
  }
}

@-webkit-keyframes pulse {
  0% {
    background-color: rgba(68, 162, 210, 0.2);
  }

  13% {
    background-color: rgba(68, 162, 210, 0.2);
  }

  15% {
    background-color: rgba(68, 162, 210, 0.9);
  }

  28% {
    background-color: rgba(68, 162, 210, 0.9);
  }

  30% {
    background-color: rgba(68, 162, 210, 0.2);
  }

  43% {
    background-color: rgba(68, 162, 210, 0.2);
  }

  45% {
    background-color: rgba(68, 162, 210, 0.9);
  }

  70% {
    background-color: rgba(68, 162, 210, 0.9);
  }

  74% {
    background-color: rgba(68, 162, 210, 0.2);
  }

  100% {
    background-color: rgba(68, 162, 210, 0.9);
  }
}

@keyframes borderPulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(68, 162, 210, 0.8);
    box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(68, 162, 210, 0.8);
  }

  40% {
    -webkit-box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(68, 162, 210, 0.8);
    box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(68, 162, 210, 0.8);
  }

  80% {
    -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(68, 162, 210, 0.8);
    box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(68, 162, 210, 0.8);
  }
}

@-webkit-keyframes borderPulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(68, 162, 210, 0.8);
    box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(68, 162, 210, 0.8);
  }

  40% {
    -webkit-box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(68, 162, 210, 0.8);
    box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(68, 162, 210, 0.8);
  }

  80% {
    -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(68, 162, 210, 0.8);
    box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(68, 162, 210, 0.8);
  }
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ==============
  Bootstrap-custom
===================*/
.row {
  margin-right: -10px;
  margin-left: -10px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding-right: 10px;
  padding-left: 10px;
}

.breadcrumb {
  background-color: transparent;
  margin-bottom: 15px;
  margin-top: 5px;
}

.pull-right {
  float: right;
}

.dropdown-menu {
  padding: 4px 0;
  font-size: 15px;
  -webkit-box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  border-color: #eff3f6;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #2d3b48;
  text-decoration: none;
  background-color: #eff3f6;
}

.dropdown-item {
  padding: 0.55rem 1.5rem;
}

.bg-primary {
  background-color: #242c6d !important;
}

.bg-success {
  background-color: #29b348 !important;
}

.bg-info {
  background-color: #44a2d2 !important;
}

.bg-warning {
  background-color: #f5b225 !important;
}

.bg-danger {
  background-color: #ec536c !important;
}

.bg-muted {
  background-color: #a1a7cc !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.text-white {
  color: #ffffff !important;
}

.text-danger {
  color: #ec536c !important;
}

.text-muted {
  color: #a4a7b7 !important;
}

.text-primary {
  color: #242c6d !important;
}

.text-warning {
  color: #f5b225 !important;
}

.text-success {
  color: #29b348 !important;
}

.text-info {
  color: #44a2d2 !important;
}

.text-dark {
  color: #2d3b48 !important;
}

.text-pink {
  color: #ec408f !important;
}

.text-purple {
  color: #7043c1 !important;
}

.text-light {
  color: #eff3f6 !important;
}

.badge {
  font-weight: 500;
}

.badge-default {
  background-color: #eff3f6;
  color: #2d3b48;
}

.badge-primary {
  background-color: #242c6d;
}

.badge-success {
  background-color: #29b348;
}

.badge-info {
  background-color: #44a2d2;
}

.badge-warning {
  background-color: #f5b225;
}

.badge-danger {
  background-color: #ec536c;
}

.badge-dark {
  background-color: #2d3b48;
}

/* Navs & Tabs */
.nav-pills .nav-item.show .nav-link,
.nav-pills .nav-link.active {
  background-color: #242c6d;
}

.nav-pills>.active>a>.badge {
  color: #242c6d;
}

.m-t-50 {
  margin-top: 15%;
}

img#profile-img {
  background-color: #e9e9e9;
}

/* List Group */
.list-group-item.active {
  background-color: #ced4da;
  border-color: #ced4da;
  color: #343a40;
  z-index: 2;
}

.list-group-item.active:hover {
  background-color: #ced4da;
  border-color: #ced4da;
  color: #343a40;
  z-index: 2;
}

.list-group-item.active:hover .list-group-item-text {
  color: #242c6d;
}

.list-group-item.active:focus {
  background-color: #ced4da;
  border-color: #ced4da;
  color: #343a40;
  z-index: 2;
}

.list-group-item.active:focus .list-group-item-text {
  color: #242c6d;
}

.list-group-item.active .list-group-item-text {
  color: #242c6d;
}

.list-group-item {
  border-radius: 0;
  padding: 12px 20px;
  border: 1px solid fade(#2d3b48, 6%);
}

.list-group-item:first-child {
  border-radius: 0;
  padding: 12px 20px;
}

.list-group-item:last-child {
  border-radius: 0;
  padding: 12px 20px;
}

.list-group-item-heading {
  font-weight: 300;
}

.list-group-item.active>.badge {
  color: #242c6d;
}

.popover-header {
  margin-top: 0;
}

.blockquote {
  font-size: 1.05rem;
}

.modal-title {
  margin-top: 0;
}

.dropdown a:focus {
  color: #ffffff;
}

.grid-structure .grid-container {
  background-color: #f8f9fa;
  margin-bottom: 10px;
  padding: 10px 20px;
}

/* =============
   Alerts
============= */
.alert {
  position: relative;
  border: 0;
}

.alert .alert-link {
  font-weight: 600;
}

.alert-success {
  color: #29b348;
  background-color: #e3f8e7;
}

.alert-success .alert-link {
  color: #1f8a37;
}

.alert-success hr {
  border-top-color: #1f8a37;
}

.alert-info {
  color: #44a2d2;
  background-color: #d4eaf5;
}

.alert-info .alert-link {
  color: #2c88b7;
}

.alert-info hr {
  border-top-color: #2c88b7;
}

.alert-warning {
  color: #f5b225;
  background-color: #fef3de;
}

.alert-warning .alert-link {
  color: #dd990a;
}

.alert-warning hr {
  border-top-color: #dd990a;
}

.alert-danger {
  color: #ec536c;
  background-color: #fbdde2;
}

.alert-danger .alert-link {
  color: #e72545;
}

.alert-danger hr {
  border-top-color: #e72545;
}

/* ==============
  Helper Classes
===================*/
.p-0 {
  padding: 0;
}

.p-t-10 {
  padding-top: 10px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-r-30 {
  padding-right: 30px;
}

.m-0 {
  margin: 0;
}

.m-r-5 {
  margin-right: 5px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-l-10 {
  margin-left: 10px;
}

.m-l-15 {
  margin-left: 15px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.w-xs {
  min-width: 80px;
}

.w-sm {
  min-width: 95px;
}

.w-md {
  min-width: 110px;
}

.w-lg {
  min-width: 140px;
}

.m-h-50 {
  min-height: 50px;
}

.l-h-34 {
  line-height: 34px;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-32 {
  font-size: 32px;
}

.font-40 {
  font-size: 40px;
}

.no-border {
  border: none;
}

.bx-shadow {
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.thumb-sm {
  height: 32px;
  width: 32px;
}

.thumb-md {
  height: 48px;
  width: 48px;
}

.thumb-lg {
  height: 88px;
  width: 88px;
}

.h-150 {
  height: 150px;
}

.h-200 {
  height: 200px;
}

.h-300 {
  height: 300px;
}

.h-400 {
  height: 400px;
}

.w-200 {
  width: 200px;
}

/* ==============
  Waves Effect
===================*/
/*!
 * Waves v0.6.0
 * http://fian.my.id/Waves
 *
 * Copyright 2014 Alfiana E. Sibuea and other contributors
 * Released under the MIT license
 * https://github.com/fians/Waves/blob/master/LICENSE
 */
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  will-change: opacity, transform;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  -webkit-transition-property: -webkit-transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transform: scale(0);
  transform: scale(0);
  pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
  background-color: rgba(255, 255, 255, 0.25);
}

.waves-effect.waves-red .waves-ripple {
  background-color: rgba(244, 67, 54, 0.7);
}

.waves-effect.waves-yellow .waves-ripple {
  background-color: rgba(255, 235, 59, 0.7);
}

.waves-effect.waves-orange .waves-ripple {
  background-color: rgba(255, 152, 0, 0.7);
}

.waves-effect.waves-purple .waves-ripple {
  background-color: rgba(156, 39, 176, 0.7);
}

.waves-effect.waves-green .waves-ripple {
  background-color: rgba(76, 175, 80, 0.7);
}

.waves-effect.waves-teal .waves-ripple {
  background-color: rgba(0, 150, 136, 0.7);
}

.waves-notransition {
  -webkit-transition: none;
  transition: none;
}

.waves-circle {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  mask-image: none;
  -webkit-mask-image: none;
}

.waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom;
}

.waves-input-wrapper .waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.waves-block {
  display: block;
}



/* ==============
  Buttons
===================*/
.btn {
  border-radius: 3px;
  font-size: 14px;
}

.btn-round {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding-top: 8px;
}

.button-list,
.button-items {
  margin-bottom: -8px;
}

.button-list .btn,
.button-items .btn {
  margin-bottom: 8px;
  margin-right: 5px;
}

.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-secondary,
.btn-danger,
.btn-dark {
  color: #ffffff;
}

.btn-secondary {
  border-color: rgba(45, 59, 72, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.focus,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover,
.open>.dropdown-toggle.btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle {
  border: 1px solid rgba(45, 59, 72, 0.2);
}

.btn-primary {
  background-color: #242c6d;
  border: 1px solid #242c6d;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.open>.dropdown-toggle.btn-primary,
.btn-outline-primary.active,
.btn-outline-primary:active,
.show>.btn-outline-primary.dropdown-toggle,
.btn-outline-primary:hover,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
  background-color: #1e245a;
  border: 1px solid #1e245a;
  color: #ffffff;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus,
.btn-primary.focus,
.btn-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(36, 44, 109, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(36, 44, 109, 0.5);
}

.btn-success {
  background-color: #29b348;
  border: 1px solid #29b348;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.focus,
.btn-success:active,
.btn-success:focus,
.btn-success:hover,
.open>.dropdown-toggle.btn-success,
.btn-outline-success.active,
.btn-outline-success:active,
.show>.btn-outline-success.dropdown-toggle,
.btn-outline-success:hover,
.btn-success.active,
.btn-success:active,
.show>.btn-success.dropdown-toggle {
  background-color: #249e40;
  border: 1px solid #249e40;
}

.btn-info {
  background-color: #44a2d2;
  border: 1px solid #44a2d2;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.focus,
.btn-info:active,
.btn-info:focus,
.btn-info:hover,
.open>.dropdown-toggle.btn-info,
.btn-outline-info.active,
.btn-outline-info:active,
.show>.btn-outline-info.dropdown-toggle,
.btn-outline-info:hover,
.btn-info.active,
.btn-info:active,
.show>.btn-info.dropdown-toggle {
  background-color: #3197cc;
  border: 1px solid #3197cc;
}

.btn-warning {
  background-color: #f5b225;
  border: 1px solid #f5b225;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.focus,
.btn-warning:active,
.btn-warning:focus,
.btn-warning:hover,
.open>.dropdown-toggle.btn-warning,
.btn-outline-warning.active,
.btn-outline-warning:active,
.show>.btn-outline-warning.dropdown-toggle,
.btn-outline-warning:hover,
.btn-warning.active,
.btn-warning:active,
.show>.btn-warning.dropdown-toggle {
  background-color: #f4a90d;
  border: 1px solid #f4a90d;
}

.btn-danger {
  background-color: #ec536c;
  border: 1px solid #ec536c;
}

.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover,
.btn-danger.active,
.btn-danger.focus,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover,
.open>.dropdown-toggle.btn-danger,
.btn-outline-danger.active,
.btn-outline-danger:active,
.show>.btn-outline-danger.dropdown-toggle,
.btn-outline-danger:hover,
.btn-danger.active,
.btn-danger:active,
.show>.btn-danger.dropdown-toggle {
  background-color: #e93c58;
  border: 1px solid #e93c58;
}

.btn-dark {
  background-color: #2d3b48;
  border: 1px solid #2d3b48;
  color: #ffffff;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.btn-dark.focus,
.btn-dark:active,
.btn-dark:focus,
.btn-dark:hover,
.open>.dropdown-toggle.btn-dark,
.btn-outline-dark.active,
.btn-outline-dark:active,
.show>.btn-outline-dark.dropdown-toggle,
.btn-outline-dark:hover {
  background-color: #232e38;
  border: 1px solid #232e38;
  color: #ffffff;
}

.btn-dark.focus,
.btn-dark:focus,
.btn-outline-dark.focus,
.btn-outline-dark:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(45, 59, 72, 0.3);
  box-shadow: 0 0 0 2px rgba(45, 59, 72, 0.3);
}

.btn-link {
  color: #2d3b48;
}

.btn-link:hover {
  color: #242c6d;
}

/* button Outline */
.btn-outline-primary {
  color: #242c6d;
  border-color: #242c6d;
}

.btn-outline-success {
  color: #29b348;
  border-color: #29b348;
}

.btn-outline-info {
  color: #44a2d2;
  border-color: #44a2d2;
}

.btn-outline-warning {
  color: #f5b225;
  border-color: #f5b225;
}

.btn-outline-danger {
  color: #ec536c;
  border-color: #ec536c;
}

.btn-outline-dark {
  color: #2d3b48;
  background-image: none;
  background-color: transparent;
  border-color: #2d3b48;
}


/* ==============
  Card
===================*/
.card {
  border: none;
  -webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.card-primary {
  background-color: #242c6d;
  border-color: #242c6d;
}

.card-success {
  background-color: #29b348;
  border-color: #29b348;
}

.card-info {
  background-color: #44a2d2;
  border-color: #44a2d2;
}

.card-warning {
  background-color: #f5b225;
  border-color: #f5b225;
}

.card-danger {
  background-color: #ec536c;
  border-color: #ec536c;
}

.card-header {
  border-bottom: 1px solid rgba(45, 59, 72, 0.05);
}

/* ==============
  Pagination
===================*/
.page-link {
  color: #242c6d;
}

.page-item.active .page-link {
  background-color: #242c6d;
  border-color: #242c6d;
}

.page-link:focus,
.page-link:hover {
  color: #2d3b48;
  background-color: #eff3f6;
}

.pagination .page-link:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ==============
  Progressbar
===================*/
.h-progress .progress {
  border-radius: 50px;
}

.h-progress .progress .progress-bar:last-child {
  border-radius: 0 60px 60px 0;
}

.v-progress .progress {
  border-radius: 50px;
}

.v-progress .progress .progress-bar:last-child {
  border-radius: 60px 60px 0 0;
}

.v-progress .v-striped .progress-bar:last-child {
  border-radius: 0 0 60px 60px;
}

.progress-bar {
  background-color: #242c6d;
}

.bg-progress {
  background-color: #606bca;
}




/* ==============
  Tables
===================*/
.table {
  margin-bottom: 10px;
}

th {
  font-weight: 500;
}

.table>tbody>tr>td,
.table>tfoot>tr>td,
.table>thead>tr>td {
  padding: 8px 12px;
  vertical-align: middle;
}

.table-hover tbody tr:hover,
.table-striped tbody tr:nth-of-type(odd),
.thead-default th {
  background-color: #f8f9fa;
}

/* == Responsive Table ==*/
table.focus-on tbody tr.focused th {
  background-color: #242c6d;
  color: #ffffff;
}

table.focus-on tbody tr.focused td {
  background-color: #242c6d;
  color: #ffffff;
}


.dataTables_wrapper.container-fluid {
  width: 100%;
  padding: 0;
}



/* ==============
  Menu
===================*/
body {
  padding-bottom: 65px;
}

.wrapper {
  padding-top: 120px;
}

.page-title-box {
  padding: 20px 0;
}

.page-title-box .page-title {
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 0;
}

.page-title-box .breadcrumb .breadcrumb-item a {
  color: #5d5b6f;
}

.container-fluid {
  width: 95%;
}

#topnav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1030;
  background-color: transparent;
  border: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  min-height: 62px;
}

#topnav .dropdown.show .nav-link {
  background-color: rgba(255, 255, 255, 0.2);
}

#topnav .language-switch a img {
  float: right;
  margin-top: 5px;
}

#topnav .has-submenu.active a {
  color: #ffffff;
}

#topnav .has-submenu.active .submenu li.active>a {
  color: #242c6d;
}

#topnav .has-submenu.active .submenu li.active>a:before {
  content: "\f192";
  font: normal normal normal 24px/1 "FontAwesome";
  position: absolute;
  font-size: 8px;
  left: 12px;
  color: #242c6d;
  top: 15px;
}

#topnav .topbar-main {
  background-color: #ffffff;
}

#topnav .topbar-main .logo {
  line-height: 60px;
  float: left;
}

#topnav .topbar-main .logo-large {
  height: 38px;
}

#topnav .topbar-main .logo-small {
  display: none;
}

#topnav .topbar-main .badge-topbar {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 99;
}

#topnav .topbar-main .nav>li>a {
  height: 36px;
  width: 36px;
  padding: 0;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  margin: 12px 8px;
  color: rgba(45, 59, 72, 0.7);
}

#topnav .topbar-main .nav>li>a:focus,
#topnav .topbar-main .nav>li>a:hover {
  background-color: rgba(45, 59, 72, 0.1);
  color: #2d3b48;
}

#topnav .topbar-main .navbar-nav>.open>a {
  background-color: rgba(45, 59, 72, 0.1) !important;
}

#topnav .topbar-main .profile img {
  height: 34px;
  width: 34px;
  display: block;
}

#topnav .topbar-main .navbar-nav {
  margin: 0;
}

#topnav .navbar-custom {
  background-color: var(--primary-color);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  padding-left: 0;
}

#topnav .navbar-toggle {
  border: 0;
  position: relative;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

#topnav .navbar-toggle:hover {
  background-color: transparent;
}

#topnav .navbar-toggle:hover span {
  background-color: #2d3b48;
}

#topnav .navbar-toggle .lines {
  width: 25px;
  display: block;
  position: relative;
  margin: 0 10px 0 0;
  padding-top: 13px;
  height: 23px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#topnav .navbar-toggle span {
  height: 2px;
  width: 100%;
  background-color: rgba(45, 59, 72, 0.8);
  display: block;
  margin-bottom: 5px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

#topnav .navbar-toggle.open span {
  position: absolute;
}

#topnav .navbar-toggle.open span:first-child {
  top: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#topnav .navbar-toggle.open span:nth-child(2) {
  visibility: hidden;
}

#topnav .navbar-toggle.open span:last-child {
  width: 100%;
  top: 18px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#topnav .navigation-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

#topnav .navigation-menu>li {
  display: inline-block;
  position: relative;
}

#topnav .navigation-menu>li>a {
  display: block;
  color: #ffffff;
  font-size: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  line-height: 18px;
  padding-left: 25px;
  padding-right: 25px;
}

#topnav .navigation-menu>li>a:hover {
  color: #ffffff;
}

#topnav .navigation-menu>li>a:focus {
  color: #ffffff;
}

#topnav .navigation-menu>li>a:active {
  color: #ffffff;
}

#topnav .navigation-menu>li>a i {
  display: inline-block;
  font-size: 15px;
  line-height: 25px;
  margin-left: 3px;
  margin-right: 10px;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  background-color: #313b93;
  border-radius: 3px;
}

#topnav .navigation-menu>li>a:hover,
#topnav .navigation-menu>li>a:focus {
  background-color: transparent;
}

/* Notification */
.notification-list {
  margin: 0 !important;
}

.notification-list .noti-title {
  border-radius: 0.25rem 0.25rem 0 0;
  background-color: #242c6d;
  margin: -5px -1px 0px -1px;
  width: auto;
  padding: 12px 20px;
  color: #ffffff;
}

.notification-list .noti-title h5 {
  margin: 0;
  font-size: 14px;
}

.notification-list .noti-title .label {
  float: right;
}

.notification-list .noti-icon {
  font-size: 20px;
  vertical-align: middle;
  color: #6c757d;
}

.notification-list .noti-icon-badge {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 9px;
}

.notification-list .notify-item {
  padding: 15px 20px;
}

.notification-list .notify-item .notify-icon {
  float: left;
  height: 36px;
  width: 36px;
  line-height: 36px;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
  color: #ffffff;
}

.notification-list .notify-item .notify-icon img {
  margin-top: 4px;
}

.notification-list .notify-item .notify-details {
  margin-bottom: 0;
  overflow: hidden;
  margin-left: 45px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-list .notify-item .notify-details b {
  font-weight: normal;
}

.notification-list .notify-item .notify-details small {
  display: block;
  white-space: normal;
}

.notification-list .notify-item .notify-details span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.notification-list .notify-all {
  border-radius: 0 0 0.25rem 0.25rem;
  margin: 0 0 -5px 0;
  background-color: #eff3f6;
}

.notification-list .profile-dropdown .notify-item {
  padding: 4px 20px;
}

.notification-list .nav-link {
  padding: 0 15px;
  line-height: 70px;
}

.notification-list .language-switch a img {
  float: right;
  margin-top: 5px;
}

.profile-dropdown {
  width: 170px;
}

.profile-dropdown i {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 5px;
}

.profile-dropdown span {
  vertical-align: middle;
}

.nav-user img {
  height: 36px;
  width: 36px;
}

.arrow-none:after {
  border: none;
  margin: 0;
  display: none;
}

.dropdown-menu-lg {
  width: 270px;
}

/*
  Responsive Menu
*/
@media (min-width: 992px) {
  #topnav .navigation-menu>li>a {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  #topnav .navigation-menu>li:first-of-type>a {
    padding-left: 0;
  }

  #topnav .navigation-menu>li.active:first-of-type>a {
    padding-left: 25px;
  }

  #topnav .navigation-menu>li.last-elements .submenu {
    left: auto;
    right: 0;
  }

  #topnav .navigation-menu>li.last-elements .submenu>li.has-submenu .submenu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 10px;
  }

  #topnav .navigation-menu>li:hover a {
    color: #ffffff;
  }

  #topnav .navigation-menu>li:hover a i {
    color: #ffffff;
  }

  #topnav .navigation-menu>li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    list-style: none;
    min-width: 200px;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    margin-top: 20px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: #ffffff;
    -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);
  }

  #topnav .navigation-menu>li .submenu.megamenu {
    white-space: nowrap;
    width: auto;
  }

  #topnav .navigation-menu>li .submenu.megamenu>li {
    overflow: hidden;
    width: 200px;
    display: inline-block;
    vertical-align: top;
  }

  #topnav .navigation-menu>li .submenu>li.has-submenu>a:after {
    content: "\f054";
    font-family: "fontawesome";
    position: absolute;
    right: 20px;
    top: 8px;
    font-size: 15px;
  }

  #topnav .navigation-menu>li .submenu>li .submenu {
    left: 100%;
    top: 0;
    margin-top: 10px;
  }

  #topnav .navigation-menu>li .submenu li {
    position: relative;
  }

  #topnav .navigation-menu>li .submenu li ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  #topnav .navigation-menu>li .submenu li a {
    display: block;
    padding: 8px 25px;
    clear: both;
    white-space: nowrap;
    font-size: 14px;
    color: #2d3b48;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }

  #topnav .navigation-menu>li .submenu li a:hover {
    color: #242c6d;
  }

  #topnav .navigation-menu>li .submenu li span {
    display: block;
    padding: 8px 25px;
    clear: both;
    line-height: 1.42857143;
    white-space: nowrap;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #2d3b48;
  }

  #topnav .navbar-toggle {
    display: none;
  }

  #topnav #navigation {
    display: block;
  }
}

@media (max-width: 991px) {
  .wrapper {
    padding-top: 60px;
  }

  .container-fluid {
    width: 100%;
  }

  #topnav .navigation-menu {
    float: none;
    max-height: 400px;
    text-align: left !important;
  }

  #topnav .navigation-menu>li {
    display: block;
  }

  #topnav .navigation-menu>li>a {
    color: #242c6d;
    padding: 15px;
  }

  #topnav .navigation-menu>li>a i {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0;
    color: #ffffff;
    vertical-align: inherit;
  }

  #topnav .has-submenu.active a,
  #topnav .navigation-menu>li>a:active,
  #topnav .navigation-menu>li>a:hover {
    color: #242c6d !important;
  }

  #topnav .navigation-menu>li>a:after {
    position: absolute;
    right: 15px;
  }

  #topnav .navigation-menu>li .submenu {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin: 0;
  }

  #topnav .navigation-menu>li .submenu li a {
    display: block;
    position: relative;
    padding: 8px 26px;
    color: #242c6d;
  }

  #topnav .navigation-menu>li .submenu li a:hover {
    color: #242c6d;
  }

  #topnav .navigation-menu>li .submenu li.has-submenu>a:after {
    content: "\54";
    font-family: "dripicons-v2";
    position: absolute;
    right: 30px;
  }

  #topnav .navigation-menu>li .submenu.open {
    display: block;
  }

  #topnav .navigation-menu>li .submenu .submenu {
    display: none;
    list-style: none;
  }

  #topnav .navigation-menu>li .submenu .submenu.open {
    display: block;
  }

  #topnav .navigation-menu>li .submenu.megamenu>li>ul {
    list-style: none;
    padding-left: 0;
  }

  #topnav .navigation-menu>li .submenu.megamenu>li>ul>li>span {
    display: block;
    position: relative;
    padding: 15px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    color: #2d3b48;
  }

  #topnav .navigation-menu>li.has-submenu.open>a {
    color: #242c6d;
  }

  #topnav .navbar-header {
    float: left;
  }

  #navigation {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
    height: auto;
    padding-bottom: 0;
    overflow: auto;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    background-color: #ffffff;
  }

  #navigation.open {
    display: block;
    overflow-y: auto;
  }
}

@media (min-width: 768px) {
  #topnav .navigation-menu>li.has-submenu:hover>.submenu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
  }

  #topnav .navigation-menu>li.has-submenu:hover>.submenu>li.has-submenu:hover>.submenu {
    visibility: visible;
    opacity: 1;
    margin-top: -1px;
    margin-right: 0;
  }

  .navbar-toggle {
    display: block;
  }
}

@media (max-width: 620px) {
  .notification-list .noti-icon {
    font-size: 24px;
  }

  .logo-large {
    height: 16px !important;
  }
}

.topbar-custom {
  border-radius: 0;
  margin-bottom: 0;
}

.m-b-1 {
  margin-bottom: 5px;
}

.topbar-custom .nav-link {
  line-height: 60px;
  color: #2d3b48;
}

.topbar-custom .dropdown-toggle:after {
  content: initial;
}

.topbar-custom .menu-left {
  overflow: hidden;
}

.footer {
  left: 0 !important;
  font-family: var(--font-primary);
  font-size: inherit;
  padding: 20px 0;
}

.header-title {
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 14px;
}


/* ==============
  Form-elements
===================*/
label {
  font-weight: 500;
}

.sub-title {
  font-weight: 500;
}

.form-control {
  font-size: 14px;
}

.form-control:focus {
  border-color: #242c6d;
  -webkit-box-shadow: none;
  box-shadow: none !important;
  outline: none !important;
}

.custom-control-input:checked~.custom-control-indicator {
  background-color: #242c6d;
}

.custom-control-label {
  line-height: 24px;
}

.form-group.m-t-10.mb-0.row .fa.fa-lock {
  font-size: 12px;
}

.has-success .form-control {
  border-color: #29b348;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.has-warning .form-control {
  border-color: #f5b225;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.has-error .form-control {
  border-color: #ec536c;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.input-group-addon {
  border-radius: 2px;
  border: 1px solid #ced4da;
}

/* ==============
  Form-Validation
===================*/
.error {
  color: #ec536c;
}

.parsley-error {
  border-color: #ec536c;
}

.parsley-errors-list {
  display: none;
  margin: 0;
  padding: 0;
}

.parsley-errors-list.filled {
  display: block;
}

.parsley-errors-list>li {
  font-size: 12px;
  list-style: none;
  color: #ec536c;
  margin-top: 5px;
}


/* ==============
  Form-Advanced
===================*/
/* Datepicker */
.datepicker {
  border: 1px solid #ced4da;
  padding: 8px;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.today,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover,
.datepicker table tr td.selected,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected:hover {
  background-color: #242c6d !important;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #ffffff;
}

/* Bootstrap-touchSpin */
.bootstrap-touchspin .input-group-btn-vertical .btn {
  padding: 9px 12px;
}

.bootstrap-touchspin .input-group-btn-vertical i {
  top: 4px;
  left: 8px;
}

.input-group-addon {
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #343a40;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
}

/* Prism */
:not(pre)>code[class*="language-"],
pre[class*="language-"] {
  background: #eff3f6;
}

/* Rating */
.badge:empty {
  padding: 0;
}



/*---datetimepicker---*/
.dtp-btn-cancel {
  margin-right: 5px;
}

.addon-color-picker .btn {
  padding: 8px;
  line-height: 0;
  border-color: #ced4da;
}


.bootstrap-touchspin-up,
.bootstrap-touchspin-down {
  padding: 8px 14px;
}


/* ==============
  Calendar
===================*/
.calendar {
  float: left;
  margin-bottom: 0;
}

.none-border .modal-footer {
  border-top: none;
}




.round {
  line-height: 60px;
  color: #242c6d;
  width: 60px;
  height: 60px;
  font-size: 26px;
  display: inline-block;
  font-weight: 400;
  border: 1px solid #f8f9fa;
  text-align: center;
  border-radius: 10%;
  background: rgba(36, 44, 109, 0.05);
}

.bg-map {
  background-color: #f3f8fb;
  -webkit-box-shadow: none;
  box-shadow: none;
}



/* ==============
  Account Pages
===================*/

.wrapper-page {
  margin: 7.5% auto;
  max-width: 460px;
  position: relative;
}

.wrapper-page .logo-admin {
  float: none !important;
}

.wrapper-page .card {
  border: 7px double #242c6d;
  border-radius: 10px;
}

.user-thumb {
  position: relative;
  z-index: 999;
}

.user-thumb img {
  height: 88px;
  margin: 0 auto;
  width: 88px;
}

.ex-page-content h1 {
  font-size: 98px;
  font-weight: 700;
  line-height: 150px;
  text-shadow: rgba(61, 61, 61, 0.3) 1px 1px, rgba(61, 61, 61, 0.2) 2px 2px,
    rgba(61, 61, 61, 0.3) 3px 3px;
}

/*
File: Responsive
*/
@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  .side-menu.left {
    margin-left: -100%;
  }

  .content-page {
    margin-left: 0;
  }

  .enlarged .side-menu.left {
    margin-left: 0 !important;
  }

  .button-menu-mobile {
    display: inline-block;
  }

  .navbar-custom {
    padding-left: 5px;
  }

  .content-page>.content {
    padding: 20px;
  }

  #wrapper.enlarged .footer,
  .footer {
    left: 0;
  }
}

@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  .content-page {
    margin-left: 0 !important;
  }

  .enlarged .left.side-menu {
    margin-left: -75px;
  }

  .mobile-sidebar {
    left: 0;
  }

  .mobile-content {
    left: 250px;
    right: -250px;
  }

  .wrapper-page {
    width: 90%;
  }

  .navbar-nav .open .dropdown-menu {
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    left: auto;
    position: absolute;
    right: 0;
  }

}

@media (max-width: 620px) {
  .page-header-title {
    text-align: center;
  }

  .dataTables_paginate .page-link {
    padding: 0.35rem 0.5rem;
  }

  .mo-mb-2 {
    margin-bottom: 10px;
  }

  .mo-mt-2 {
    margin-top: 10px !important;
  }

  .pagination-lg .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .side-menu {
    z-index: 10;
  }

  .button-menu-mobile {
    display: block;
  }

  .page-title {
    display: none;
  }
}

@media (max-width: 420px) {

  .hide-phone,
  .notify-icon {
    display: none;
  }

  .dropdown-menu-lg {
    width: 200px;
  }

  .notify-details {
    margin-left: 0 !important;
  }
}

/* my own css */
.search-btn {
  background: linear-gradient(90deg, var(--primary-color), #1e90ff);
  border: none;
  padding: 6px 15px;
  border-radius: 15px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  min-width: 90px;
}

.search-btn:hover {
  background: linear-gradient(90deg, #00d4ff, #1e90ff);
}


.text_size {
  font-size: 13px;
}


/* Styling for the table */
.table {
  width: 100%;
  text-align: center;
}

/* Ensure equal width for both columns */
.table th,
.table td {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.table thead {
  background-color: #f8f9fa;
}

.table tbody tr:hover {
  background-color: #f1f1f1;
}




/* dealer branch css end */
/* dealer popup css */

/* dealer popup css end */
/* branch css end */

/* proper position for cards */
.center-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /* Makes it take full height of screen */
}

/* form modal css */

/* Remove focus outline and box-shadow for all inputs, checkboxes, and selects */
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible,
button:focus,
button:focus-visible,
.custom-select:focus,
.custom-select:focus-visible,
.form-control:focus,
.form-control:focus-visible,
.form-check-input:focus,
.form-check-input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--primary-color) !important;
}

.no-pad-outline {
  padding: 0 !important;
}

.no-pad-outline:focus-visible,
.no-pad-outline:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none;
}

#forget-password-form {
  display: none;
}

.fa.fa-unlock-alt {
  font-size: 12px;
}

label.custom-control-label {
  font-size: 12px;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #1e245a !important;
  border-color: #1e245a !important;
  opacity: 0.85 !important;
}

.btn-primary:hover {
  color: #fff;
  background-color: #1e245a !important;
  border-color: #1e245a !important;
}

button.tab-save-btn {
  position: absolute;
  right: 25px;
  top: 0;
}

.id-card-tag {
  border-left: 100px solid #0000;
  border-right: 100px solid #0000;
  border-top: 100px solid #00407f;
  border-top: 100px solid var(--primary-color);
  height: 0;
  margin: -25px auto -30px;
  width: 0;
}

.id-card-tag:after {
  border-left: 50px solid #0000;
  border-right: 50px solid #0000;
  border-top: 100px solid #eff3f6;
  content: "";
  display: block;
  height: 0;
  left: -50px;
  margin: -20px auto -30px;
  position: relative;
  top: -130px;
  width: 0;
}

.id-card-tag-strip {
  background-color: #00407f;
  background-color: var(--primary-color);
  border: 1px solid #00407f;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  height: 40px;
  margin: 0 auto;
  position: relative;
  top: 9px;
  width: 45px;
  z-index: 1;
}

.id-card-tag-strip:after {
  background-color: #c1c1c1;
  content: "";
  display: block;
  height: 1px;
  position: relative;
  top: 10px;
  width: 100%;
}

.id-card-hook {
  background-color: #b6b6b6;
  border-radius: 5px 5px 0 0;
  height: 15px;
  margin: 0 auto;
  width: 70px;
}

.id-card-hook:after {
  background-color: #d7d6d3;
  border-radius: 4px;
  content: "";
  display: block;
  height: 6px;
  margin: 0 auto;
  position: relative;
  top: 6px;
  width: 47px;
}

.profile-page-card {
  align-content: center;
  align-items: center;
  border: 7px solid #b6b6b6;
  border-radius: 8px 8px 8px 8px;
  border-top: 10px solid #b6b6b6;
  box-shadow: 0 0 1.5px 0 #b9b9b9;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 1em auto;
  max-width: 500px;
  padding: 2em;
  position: relative;
}

.profile-page-card figure {
  margin: 0;
}

.profile-page-card header h1 {
  font-size: 28px;
  line-height: 1;
  margin: 0;
  min-width: 250px;
  padding: 0;
}

.profile-page-card header h1 small {
  clear: both;
  display: block;
  font-size: 16px;
  opacity: 0.6;
}

.profile-page-card main dl {
  display: block;
  width: 100%;
}

.profile-page-card main dl dt {
  font-weight: 700;
  padding-right: 10px;
  width: 40%;
}

.profile-page-card main dl dd,
.profile-page-card main dl dt {
  border-bottom: 1px solid #e1e1e1;
  float: left;
  margin: 0;
  padding: 8px 5px;
}

.profile-page-card main dl dd {
  width: 60%;
}

.profile-page-card main dl dd,
.profile-page-card main dl dt {
  border-bottom: 1px solid #e1e1e1;
  float: left;
  margin: 0;
  padding: 8px 5px;
}

.profile-page-card main dl dt:after {
  content: ":";
}

div#profile-page {
  margin-top: 27px;
  position: relative;
}

.dt-control span.dt-column-order {
  display: none !important;
}

/* Prevent DataTables from auto-resizing columns */
table.dataTable {
  width: 100% !important;
  table-layout: fixed;
}

/* Prevent columns from stretching unnecessarily */
table.dataTable th,
table.dataTable td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
  text-align: center !important;
}

table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
  text-align: center !important;
}

table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: center !important;
}

.cs-pad {
  padding: .2rem .3rem;
  line-height: 0.5;
}


ul.list-group.rdetails {
  max-width: 400px;
}

.form-check.form-check-inline.text-right {
  float: right;
}

button.btn.btn-sm.btn-warning {
  font-size: 12px;
  padding: 2px 5px;
}

/* table.dataTable {
  width: auto !important;
} */

.text-bage {
  color: #7b94b8 !important;
}

/* Timeline */
.timeline,
.timeline-horizontal {
  list-style: none;
  padding: 20px;
  position: relative;
}

.timeline:before {
  top: 40px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eeeeee;
  left: 50%;
  margin-left: -1.5px;
}

.timeline .timeline-item {
  margin-bottom: 20px;
  position: relative;
}

.timeline .timeline-item:before,
.timeline .timeline-item:after {
  content: "";
  display: table;
}

.timeline .timeline-item:after {
  clear: both;
}

.timeline .timeline-item .timeline-badge {
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 37px;
  font-size: 15px;
  text-align: center;
  position: absolute;
  top: 18px;
  left: 50%;
  background-color: #7c7c7c;
  border: 3px solid #ffffff;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.timeline .timeline-item .timeline-badge i,
.timeline .timeline-item .timeline-badge .fa,
.timeline .timeline-item .timeline-badge .glyphicon {
  top: 2px;
  left: 0px;
}

.timeline .timeline-item .timeline-badge.primary {
  background-color: #1f9eba;
}

.timeline .timeline-item .timeline-badge.info {
  background-color: #5bc0de;
}

.timeline .timeline-item .timeline-badge.success {
  background-color: #59ba1f;
}

.timeline .timeline-item .timeline-badge.warning {
  background-color: #d1bd10;
}

.timeline .timeline-item .timeline-badge.danger {
  background-color: #ba1f1f;
}

.timeline .timeline-item .timeline-panel {
  position: relative;
  width: 46%;
  float: left;
  right: 16px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  border-radius: 2px;
  padding: 12px;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.timeline .timeline-item .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -16px;
  display: inline-block;
  border-top: 16px solid transparent;
  border-left: 16px solid #c0c0c0;
  border-right: 0 solid #c0c0c0;
  border-bottom: 16px solid transparent;
  content: " ";
}

.timeline .timeline-item .timeline-panel .timeline-title {
  margin-top: 0;
  color: inherit;
}

.timeline .timeline-item .timeline-panel .timeline-body>p,
.timeline .timeline-item .timeline-panel .timeline-body>ul {
  margin-bottom: 0;
}

.timeline .timeline-item .timeline-panel .timeline-body>p+p {
  margin-top: 5px;
}

.timeline .timeline-item:last-child:nth-child(even) {
  float: right;
}

.timeline .timeline-item:nth-child(even) .timeline-panel {
  float: right;
  left: 16px;
}

.timeline .timeline-item:nth-child(even) .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-horizontal {
  list-style: none;
  position: relative;
  padding: 20px 30px 20px 30px;
  display: inline-block;
  margin-bottom: 0;
}

.timeline-horizontal:before {
  height: 3px;
  top: auto;
  bottom: 18px;
  left: 56px;
  right: 0;
  width: 100%;
  margin-bottom: 20px;
}

.timeline-heading p {
  margin-bottom: 5px;
}

.timeline-body p {
  font-size: 12px;
}

.timeline-horizontal .timeline-item {
  display: table-cell;
  height: 165px;
  width: 20%;
  min-width: 280px;
  float: none !important;
  padding-left: 0px;
  padding-right: 20px;
  margin: 0 auto;
  vertical-align: bottom;
}

.timeline-horizontal .timeline-item .timeline-panel {
  top: auto;
  bottom: 36px;
  display: inline-block;
  float: none !important;
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  margin-bottom: 20px;
}

.timeline-horizontal .timeline-item .timeline-panel:before {
  top: auto;
  bottom: -16px;
  left: 28px !important;
  right: auto;
  border-right: 16px solid transparent !important;
  border-top: 16px solid #c0c0c0 !important;
  border-bottom: 0 solid #c0c0c0 !important;
  border-left: 16px solid transparent !important;
}

.timeline-horizontal .timeline-item:before,
.timeline-horizontal .timeline-item:after {
  display: none;
}

.timeline-horizontal .timeline-item .timeline-badge {
  top: auto;
  bottom: 0px;
  left: 26px;
}

h6.timeline-title {
  font-size: 16px !important;
  color: #4f4f4f !important;
}

.bg-light {
  background-color: #b9b9b9 !important;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.input-group.input-group-sm.pmr-1 {
  margin-right: 2px;
}

input#searchQuery {
  max-width: 270px;
}

.btn-outline-secondary {
  border-color: #ced4da;
}

span.text-small {
  text-wrap: auto;
  font-size: 11px;
  font-weight: 500;
  line-height: 0;
}


.audio-overlay-player {
  background: #f3f4f5;
  border-radius: 15px 0 0 15px;
}

.audio-overlay-player audio {
  width: 250px;
  height: 25px;
  margin-top: 6px;
}

table#callHistoryTable tbody tr,
table#tradeReportTable tbody tr,
table#ucrTable tbody tr {
  position: relative;
}

i.fa.fa-play-circle.text-info,
i.fa.fa-phone-square.text-success,
i.fa.fa-info-circle.text-dark {
  font-size: 18px;
  position: relative;
  top: 3px;
}

i.fa.fa-info-circle.text-dark {
  font-size: 16px;
}



.table-success,
.table-success>td,
.table-success>th {
  background-color: #f7fff9;
}

.table-danger,
.table-danger>td,
.table-danger>th {
  background-color: #fff5f6;
}

.mkcall img {
  width: 38px;
  height: auto;
}



.calc {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: -4px -4px 10px rgb(255 255 255),
    4px 4px 10px rgba(59, 57, 57, 0.22);
  width: 100%;
  max-width: 300px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.calc .input {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
  box-shadow: -4px -4px 10px rgb(255 255 255),
    4px 4px 10px rgba(59, 57, 57, 0.22);
  border-radius: 10px;
  padding: 10px;
}

.calc .input input {
  width: 100%;
  height: 50px;
  border: none;
  font-size: 1.5rem;
  background-color: #ececec;
  text-align: right;
  padding-right: 10px;
  border-radius: 10px;
}

.calc .buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calc .buttons button {
  background-color: #f1f1f1;
  box-shadow: -4px -4px 10px rgb(255 255 255),
    4px 4px 10px rgba(59, 57, 57, 0.22);
  border: none;
  border-radius: 10px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: box-shadow 0.1s ease-in-out;
}

.calc .buttons button:active {
  box-shadow: inset -4px -4px 10px rgba(255, 255, 255, 0.8),
    inset 4px 4px 10px rgba(59, 57, 57, 0.22);
}


.cs-dbtn {
  box-shadow: -4px -4px 10px rgb(255 255 255),
    4px 4px 10px rgba(59, 57, 57, 0.22);
  border: none;
  border-radius: 10px;
  height: 35px;
  background-color: #097f00;
  color: #fff;
  cursor: pointer;
  transition: box-shadow 0.1s ease-in-out;
}

.cs-dbtn:active {
  box-shadow: inset -4px -4px 10px rgba(255, 255, 255, 0.8),
    inset 4px 4px 10px rgba(59, 57, 57, 0.22);

}


.cs-dbtn i {
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 400px) {
  .calc .input input {
    font-size: 1.2rem;
    height: 40px;
  }

  .calc .buttons button {
    font-size: 1.2rem;
    height: 50px;
  }
}

.no-card {
  width: 100%;
}



.contact-list {
  list-style: none;
  padding: 0;
}

#searchWrapper {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  width: 99%;
}

#contactScroll,
#dialHistoryScroll {
  max-height: 375px;
  overflow-y: auto;
  position: relative;
}

.leaderboard__profiles {
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  padding: 15px 15px 20px;
}

.leaderboard__profile {
  align-items: center;
  padding: 10px 30px 10px 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0px 1px 5px -1px rgba(51, 51, 51, 0.23);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.7, 0.98, 0.86, 0.98), box-shadow 0.25s cubic-bezier(0.7, 0.98, 0.86, 0.98);
  background-color: #fff;
}

.leaderboard__profile:hover {
  transform: scale(1.05);
  box-shadow: 1px 0px 8px 0px rgba(51, 51, 51, 0.18);
}

.con-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, .2);
}

.leaderboard__profile:hover .con-overlay {
  opacity: 1;
}

.con-text {
  color: white;
  font-size: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}


.history-bg.bg-danger {
  background-color: #ff5d5d17 !important;
}

.history-bg.bg-warning {
  background-color: #f5c00017 !important;
}

.history-bg.bg-success {
  background-color: #26ac0017 !important;
}

.leaderboard__profile span.badge {
  line-height: 11px;
  border-radius: 3px;
}

li.leaderboard__profile.history-item {
  pointer-events: none;
}

#callHistoryTable.table>tbody>tr>td {
  padding: 8px 5px;
}


.sdanimi {
  position: relative;
  width: 10%;
  display: inline-block;

}

.csframe {
  box-shadow: 0px 1px 5px -1px rgba(51, 51, 51, 0.23);
  padding: 2px 10px;
  border-radius: 0 0 8px 8px;
  background-color: #90d38530;
}

.ceframe {
  box-shadow: 0px 1px 5px -1px rgba(51, 51, 51, 0.23);
  padding: 2px 10px;
  border-radius: 0 0 8px 8px;
  background-color: #b7656530;
}

.seframe {
  position: relative;
  top: -5px;
}

#lineh1 {
  position: absolute;
  left: 11px;
  top: -8px;
  height: 6px;
  background: rgb(23, 105, 0);
  background: linear-gradient(77deg, rgba(23, 105, 0, 1) 29%, rgba(205, 0, 49, 1) 100%);
  animation: lineH 3s 0s infinite linear;
}

@keyframes lineH {
  0% {
    width: 0%;
  }

  100% {
    width: 95%;
    opacity: 0;
  }
}

span#db-time {
  font-size: 22px;
  position: absolute;
  right: 20px;
  font-weight: 500;
  color: #989898;
}

.ch-bar {
  background: lightgrey;
  height: 25px;
  width: 5px;
  margin: 2px;
}

.ch-color {
  background: var(--primary-color);
  
}

#ch-length {
  display: flex;
  border: 1px solid #c1c1c1;
}
.min-height-400 {
  min-height: 400px;
  overflow-y: auto;
  max-height: 400px;
}
.alert-dismissible {
  padding-right: 0;
}
.alert {
  padding: 0;
  margin-bottom: 0;
}

.nonewnotif {
  position: relative;
}

.nf-window {
  width: 100%;
  text-align: center;
  padding: 0px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px 5px 40px 40px;
}

a.btn.btn-sm.btn-success.drk {
  background-color: #008814;
  border-color: #008814;
}

.cs-pad2 {
  padding: 0.1rem 0.1rem;
  font-size: 12px;
  line-height: 0.5;
}

.sdt input#startDate {
  max-width: 128px;
}

.sdt input#endDate {
  max-width: 128px;
}