@import url(../fonts/fonts.css);
:root {
  --blue: #2F6371;
  --blue-grey: #7999A2;
  --red: #E6455A;
  --cyan: #01B2AA;
  --neutral: #EFF5F9;
  --green: #8FD14F;
  --sea-green: #23CAA6;
  --sea-green-rgb: 35,202,166;
  --grey: #B8B8B8;
  --grey2: #888888;
  --yellow: #FAC710;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(86, 182, 231, 0.5) transparent;
}

::-webkit-scrollbar {
  width: 4px;
  height: 6px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--cyan);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--sea-green);
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f0f5f9;
  padding: 0;
}

.l {
  -webkit-box-shadow: inset 0 0 0 1px red;
          box-shadow: inset 0 0 0 1px red;
}

.icon {
  stroke: unset;
  stroke-width: 0px;
  fill: currentColor;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
}

.tscale-0p6 {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

.tscale-0p65 {
  -webkit-transform: scale(0.65);
          transform: scale(0.65);
}

.tscale-0p7 {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.tscale-0p75 {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}

.tscale-0p8 {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.tscale-0p85 {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

.tscale-0p9 {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.tscale-0p95 {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.tscale-1 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.tscale-1p1 {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.tscale-1p2 {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.tscale-1p3 {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.tscale-1p4 {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

.tscale-1p5 {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.tscale-1p6 {
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
}

.tscale-1p7 {
  -webkit-transform: scale(1.7);
          transform: scale(1.7);
}

.mmw-50 {
  min-width: 50px !important;
  max-width: 50px;
}

.mmw-55 {
  min-width: 55px !important;
  max-width: 55px;
}

.mmw-60 {
  min-width: 60px !important;
  max-width: 60px;
}

.mmw-65 {
  min-width: 65px !important;
  max-width: 65px;
}

.mmw-70 {
  min-width: 70px !important;
  max-width: 70px;
}

.mmw-180 {
  min-width: 180px !important;
  max-width: 180px;
}

.mmw-190 {
  min-width: 190px !important;
  max-width: 190px;
}

.mmw-200 {
  min-width: 200px;
  max-width: 200px;
}

.mmwh-30 {
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
}

.mmwh-32 {
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
}

.mmwh-34 {
  min-width: 34px;
  max-width: 34px;
  min-height: 34px;
  max-height: 34px;
}

.minw-100 {
  min-width: 100px;
}

.minw-120 {
  min-width: 120px;
}

.minw-130 {
  min-width: 130px;
}

.minw-140 {
  min-width: 140px;
}

.minw-150 {
  min-width: 150px;
}

.minw-160 {
  min-width: 160px;
}

.minw-200 {
  min-width: 200px;
}

.maxw-30 {
  max-width: 30px;
}

.maxw-50 {
  max-width: 50px;
}

.maxw-60 {
  max-width: 60px;
}

.maxw-70 {
  max-width: 70px;
}

.maxw-75 {
  max-width: 75px;
}

.maxw-80 {
  max-width: 90px;
}

.maxw-85 {
  max-width: 85px;
}

.maxw-90 {
  max-width: 90px;
}

.maxw-100 {
  max-width: 100px;
}

.maxw-110 {
  max-width: 110px;
}

.maxw-120 {
  max-width: 120px;
}

.maxw-140 {
  max-width: 140px;
}

.maxw-200 {
  max-width: 200px;
}

.maxw-220 {
  max-width: 220px;
}

.bg-blue {
  background: var(--blue);
}

.bg-blue-grey {
  background: var(--blue-grey);
}

.bg-red {
  background: var(--red);
}

.bg-green {
  background: var(--green);
}

.bg-sea-green {
  background: var(--sea-green);
}

.bg-cyan {
  background: var(--cyan);
}

.bg-yellow {
  background: var(--yellow);
}

.bg-grey {
  background: var(--grey);
}

.text-blue {
  color: var(--blue);
}

.text-blue-grey {
  color: var(--blue-grey);
}

.text-red {
  color: var(--red);
}

.text-cyan {
  color: var(--cyan);
}

.text-neutral {
  color: var(--neutral);
}

.text-green {
  color: var(--green);
}

.text-sea-green {
  color: var(--sea-green);
}

.text-grey {
  color: var(--grey);
}

.text-grey2 {
  color: var(--grey2);
}

.text-yellow {
  color: var(--yellow);
}

.border-blue {
  border-color: var(--blue) !important;
}

.border-blue-grey {
  border-color: var(--blue-grey) !important;
}

.border-red {
  border-color: var(--red) !important;
}

.border-cyan {
  border-color: var(--cyan) !important;
}

.border-neutral {
  border-color: var(--neutral) !important;
}

.border-green {
  border-color: var(--green) !important;
}

.border-sea-green {
  border-color: var(--sea-green) !important;
}

.border-grey {
  border-color: var(--grey) !important;
}

.border-grey2 {
  border-color: var(--grey2) !important;
}

.border-yellow {
  border-color: var(--yellow) !important;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

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

.fs-13 {
  font-size: 13px;
}

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

.fs-15 {
  font-size: 15px;
}

.border-efefef {
  border: 1px solid #EFEFEF;
}

.fw-300, .fw-light {
  font-weight: 300;
}

.fw-500, .fw-medium {
  font-weight: 600;
}

.fw-600, .fw-semibold {
  font-weight: 600;
}

.fw-800, .fw-extrabold {
  font-weight: 800;
}

.opacity-10 {
  opacity: 0.10;
}

.opacity-15 {
  opacity: 0.15;
}

.opacity-20 {
  opacity: 0.20;
}

.opacity-30 {
  opacity: 0.30;
}

.opacity-35 {
  opacity: 0.35;
}

.opacity-40 {
  opacity: 0.40;
}

.btn-cyan {
  color: #ffffff;
  background-color: var(--cyan);
  border-color: var(--cyan);
}

.btn-cyan:hover {
  background-color: var(--sea-green);
  border-color: var(--sea-green);
  color: #ffffff;
}

.btn-cyan:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(1, 178, 170, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(1, 178, 170, 0.25);
}

.btn-sea-green {
  color: #ffffff;
  background-color: var(--sea-green);
  border-color: var(--sea-green);
}

.btn-sea-green:hover {
  background-color: var(--cyan);
  border-color: var(--cyan);
  color: #ffffff;
}

/*Start | Header Style*/
header {
  position: fixed;
  width: 100%;
  height: 48px;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .top-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  width: 270px;
  -webkit-transition: 350ms;
  transition: 350ms;
}

header .top-actions .top-bars button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--sea-green);
  color: #fff;
  font-size: 20px;
  position: relative;
}

header .top-actions .top-bars button.show {
  background: #fff;
  color: var(--sea-green);
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}

header .top-actions .left-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
}

header .top-actions .left-logo .main-logo {
  max-width: 100%;
  max-height: 25px;
}

header .top-actions .left-logo .short-logo {
  display: none;
  max-height: 25px;
}

/*End | Header Style*/
/*Start | Left Aside Bar Style*/
.left-aside {
  position: fixed;
  top: 48px;
  left: 0;
  width: 270px;
  height: calc(100% - 48px);
  background: var(--blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
  -webkit-transition: 350ms;
  transition: 350ms;
}

.left-aside .left-menulist {
  list-style-type: none;
  padding: 10px 0 60px 0;
  margin: 0;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

.left-aside .left-menulist .main-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-decoration: none;
  padding-left: 30px;
  min-height: 42px;
  color: var(--blue-grey);
  margin-bottom: 2px;
  font-size: 16px;
  -webkit-transition: 350ms;
  transition: 350ms;
}

.left-aside .left-menulist .main-link.active {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
}

.left-aside .left-menulist .main-link.active::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: var(--sea-green);
  left: 0;
  top: 0;
}

.left-aside .left-menulist .main-link:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
}

.left-aside .left-menulist .main-link span {
  margin-left: 12px;
  display: inline-block;
  white-space: nowrap;
}

.left-aside .left-menulist .main-link .icon {
  min-width: 19px;
  width: 19px;
  height: 19px;
  font-size: 16px;
}

.left-aside .left-menulist .left-submenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.left-aside .left-menulist .left-submenu .sub-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-decoration: none;
  padding-left: 74px;
  min-height: 42px;
  color: var(--blue-grey);
  margin-bottom: 2px;
  font-size: 15px;
  -webkit-transition: 350ms;
  transition: 350ms;
  white-space: nowrap;
}

.left-aside .left-menulist .left-submenu .sub-link:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.05);
}

.left-aside .left-menulist .left-submenu .sub-link::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: currentColor;
  left: 61px;
  top: 19px;
}

.left-aside .left-menulist .left-notifybadge {
  background-color: var(--red);
  color: #fff;
  font-weight: normal;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 0 2px;
  min-width: 18px;
  min-height: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2px;
  margin-left: 12px;
}

.left-aside .left-menulist .left-menulabel {
  font-size: 16px;
  padding-left: 30px;
  color: var(--blue-grey);
  margin-top: 30px;
  margin-bottom: 6px;
  font-weight: bold;
  white-space: nowrap;
  -webkit-transition: 350ms;
  transition: 350ms;
  border-top: 1px solid transparent;
}

.left-aside .left-menubottom {
  border-top: 1px solid var(--blue-grey);
  height: 48px;
  min-height: 48px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  text-decoration: none;
}

.left-aside .left-menubottom:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.left-aside .left-menubottom strong {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  color: #fff;
  font-weight: 600;
}

.left-aside .left-menubottom .dropdown-toggle {
  width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding-left: 9px;
  padding-right: 25px;
}

.left-aside .left-menubottom .dropdown-toggle::before, .left-aside .left-menubottom .dropdown-toggle::after {
  content: "";
  display: block;
  margin-left: 0;
  border-radius: 0;
  border-top: 0.45em solid;
  border-right: 0.28em solid transparent;
  border-bottom: 0;
  border-left: 0.28em solid transparent;
  position: absolute;
  right: 9px;
  bottom: calc(50% - 0.60em);
  opacity: 0.50;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.left-aside .left-menubottom .dropdown-toggle::before {
  bottom: auto;
  top: calc(50% - 0.5em);
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/*End | Left Aside Bar Style*/
/*Start | Wrapper Content Style*/
.wrapper-box {
  width: 100%;
  min-height: calc(100vh - 48px);
  padding-left: 295px;
  padding-right: 25px;
  padding-top: 48px;
  padding-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 350ms;
  transition: 350ms;
}

.wrapper-box .row-heading {
  position: relative;
}

.wrapper-box .row-heading::before {
  content: '';
  position: absolute;
  height: 100%;
  width: calc(100% + 50px);
  left: -25px;
  background-color: #fff;
  z-index: -1;
}

.listview-toggle .wrapper-box [class^="col-"], .listview-toggle .wrapper-box [class*=" col"] {
  width: 100%;
}

.listview-toggle .text-xl-end {
  text-align: left !important;
}

/*End | Wrapper Content Style*/
.tiny-circle {
  width: 16px;
  height: 16px;
}

.tiny-circle path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 5;
}

.tiny-circle path:nth-child(1) {
  stroke: #ccc;
}

.tiny-circle path:nth-child(2) {
  stroke: #01B2AA;
}

.card-tile {
  width: 115px;
  min-width: 115px;
  height: 140px;
  background: #fff;
  padding: 8px 8px 5px 8px;
  border-top: 5px solid transparent;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  -webkit-transition: 350ms;
  transition: 350ms;
}

.card-tile:hover {
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

.card-tile.card-tile-cyan {
  border-top: 5px solid var(--cyan);
  color: var(--cyan);
}

.card-tile.card-tile-cyan.active {
  color: #fff;
  background: var(--cyan);
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.card-tile.card-tile-grey {
  border-top: 5px solid var(--grey);
  color: var(--grey);
}

.card-tile.card-tile-grey.active {
  color: #fff;
  background: var(--grey);
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.card-tile.card-tile-yellowfill {
  border-top: 5px solid var(--yellow);
  background: var(--yellow);
  color: var(--bs-white);
}

.card-tile p {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  margin: 0;
  min-height: 32px;
}

.card-tile h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 50px;
  font-weight: normal;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin: 0;
  height: 100%;
}

.nav-pills-arrow {
  -webkit-box-shadow: inset 0 0 0 1px #ccc;
          box-shadow: inset 0 0 0 1px #ccc;
}

.nav-pills-arrow .nav-link {
  border-radius: 0;
  text-align: left;
  font-size: 14px;
  color: #888888;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.nav-pills-arrow .nav-link.active {
  background-color: transparent;
  color: var(--green);
}

.nav-pills-arrow .nav-link.active::before {
  border: 1px solid var(--green);
  border-left: none;
  border-right: none;
}

.nav-pills-arrow .nav-link::before {
  content: '';
  position: absolute;
  width: calc(100% - 20px);
  top: 0;
  left: 0;
  height: 100%;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
}

.nav-pills-arrow .nav-link::after {
  content: '';
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-top: none;
  border-left: none;
  position: absolute;
  top: -3px;
  right: 5px;
  -webkit-transform: rotate(-55deg) skew(-22.5deg);
          transform: rotate(-55deg) skew(-22.5deg);
}

.nav-pills-arrow .nav-item:first-child .nav-link.active::before {
  border-left: 1px solid var(--green);
}

.nav-pills-arrow .nav-item:last-child .nav-link.active {
  border-right: 1px solid var(--green);
}

.nav-pills-arrow .nav-item:last-child .nav-link::after {
  border: transparent;
}

.name-medialist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: inset 0 0 0 1px #EFEFEF;
          box-shadow: inset 0 0 0 1px #EFEFEF;
  background-color: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.name-medialist .name-medialink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #335E73;
}

.name-medialist .name-medialink span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 70px;
  width: 70px;
  min-height: 70px;
  background-color: #01B2AA;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.name-medialist .name-medialink .name-mediatext {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 6px 15px;
}

.name-medialist .name-medialink .name-mediatext h6 {
  margin: 0 0 3px 0;
}

.name-medialist .name-medialink .name-mediatext p {
  margin: 0;
  font-weight: 300;
}

.name-medialist .name-mediastar {
  margin-right: 12px;
}

.first-letterbox {
  min-width: 17px;
  min-height: 17px;
  width: 17px;
  height: 17px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  line-height: 0.7;
  vertical-align: middle;
  background-color: var(--sea-green);
  border-radius: 17px;
  text-decoration: none;
  -webkit-transition: 350ms;
  transition: 350ms;
}

.first-letterbox:hover {
  -webkit-box-shadow: 0 0 1px 2px var(--sea-green);
          box-shadow: 0 0 1px 2px var(--sea-green);
  color: var(--sea-green);
  background-color: #fff;
}

.td-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 0;
}

.table-tiny {
  border-collapse: collapse;
}

.table-tiny thead tr th {
  padding: 6px 8px;
  border-bottom: 1px solid #EFEFEF;
  font-size: 13px;
  font-weight: normal;
  color: var(--grey2);
}

.table-tiny tbody tr td {
  padding: 6px 8px;
  font-size: 13px;
  font-weight: normal;
  color: var(--grey2);
}

.card-brt5-green {
  border: 1px solid #EFEFEF;
  padding-top: 4px;
  border-radius: 0;
  position: relative;
}

.card-brt5-green::before {
  content: '';
  position: absolute;
  width: calc(100% + 2px);
  height: 5px;
  left: -1px;
  top: -1px;
  background: var(--green);
}

.card-brt5-green .list-group-item {
  border: none;
  border-top: 1px solid #EFEFEF;
}

.bg-gradient-sea-green-cyan {
  background: -webkit-gradient(linear, left top, right top, from(var(--sea-green)), to(var(--cyan)));
  background: linear-gradient(to right, var(--sea-green), var(--cyan));
}

.form-check-green .form-check-input {
  border: 1px solid var(--sea-green);
}

.form-check-green .form-check-input:checked[type=radio] {
  background-color: var(--sea-green);
  border-color: var(--sea-green);
}

.form-check-green .form-check-input:focus {
  border-color: var(--sea-green);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--sea-green-rgb), 0.25);
          box-shadow: 0 0 0 0.25rem rgba(var(--sea-green-rgb), 0.25);
}

.dropdown-anim {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--blue);
}

.dropdown-caret {
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.dropdown-caret::after {
  content: '';
  display: inline-block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 0 center;
          transform-origin: 0 center;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-right: 8px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.dropdown-caret.show::after, .dropdown-caret:hover::after {
  border-color: var(--sea-green);
}

.aside-filter {
  position: fixed;
  width: 250px;
  height: calc(100vh - 118px);
  top: 118px;
  left: 40px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 6px #ccc;
          box-shadow: 0px 4px 6px #ccc;
  padding: 20px;
  -webkit-transition: 350ms;
  transition: 350ms;
  z-index: 1;
}

.aside-filter.active {
  left: 270px;
}

.aside-filter.active .filter-toggle {
  color: var(--sea-green);
}

.aside-filter .aside-filter-inside {
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 5px;
}

.aside-filter .aside-filter-inside::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: #f2f2f2;
}

.aside-filter .aside-filter-inside::-webkit-scrollbar-thumb {
  background-color: #bababa;
}

.aside-filter .aside-filter-inside::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue);
}

.aside-filter .filter-toggle {
  width: 30px;
  height: 52px;
  padding: 0;
  margin: 0;
  border: none;
  position: absolute;
  right: -10px;
  top: calc(50% - 85px);
  color: var(--grey2);
  background-color: #fff;
  -webkit-box-shadow: 8px 0 4px -6px #dbdada;
          box-shadow: 8px 0 4px -6px #dbdada;
  outline: none;
}

.aside-filter .filter-toggle:hover {
  color: var(--sea-green);
}

.aside-filter h4 {
  font-weight: bold;
  font-size: 16px;
  color: var(--blue);
}

.aside-filter .filter-boxes {
  overflow: hidden;
  overflow-y: auto;
  max-height: 190px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.aside-filter .filter-boxes::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: #f2f2f2;
}

.aside-filter .filter-boxes::-webkit-scrollbar-thumb {
  background-color: #bababa;
}

.aside-filter .filter-boxes::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue);
}

.aside-filter .filter-boxes .form-check-input {
  width: 14px;
  height: 14px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.aside-filter .filter-boxes .form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}

.aside-filter .filter-boxes .form-check-label {
  font-size: 14px;
  font-weight: 300;
}

.input-search {
  width: 100%;
  border: 1px solid #ccc;
  height: 32px;
  font-size: 14px;
  border-radius: 50px;
  padding-right: 30px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bababa' viewBox='0 0 512 512'%3E%3Cpath d='M508.5 468.9L387.1 347.5c-2.3-2.3-5.3-3.5-8.5-3.5h-13.2c31.5-36.5 50.6-84 50.6-136C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c52 0 99.5-19.1 136-50.6v13.2c0 3.2 1.3 6.2 3.5 8.5l121.4 121.4c4.7 4.7 12.3 4.7 17 0l22.6-22.6c4.7-4.7 4.7-12.3 0-17zM208 368c-88.4 0-160-71.6-160-160S119.6 48 208 48s160 71.6 160 160-71.6 160-160 160z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: calc(100% - 10px) 7.5px;
}

.modal-backdrop {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.modal-backdrop.fade {
  opacity: 1;
}

@media screen and (min-width: 1300px) {
  .modal-xxl {
    width: 100%;
    max-width: 1300px;
  }
}

.offcanvas.offcanvas-bottom-h400 {
  min-height: 400px;
}

/*==========================================*/
/*===== Start |  Table + Mobile  Code  =====*/
/*==========================================*/
@media (min-width: 992px) {
  .menu-toggle header .top-actions {
    width: 109px;
    -webkit-box-shadow: 0 0 0 1px rgba(var(--sea-green-rgb), 0.25);
            box-shadow: 0 0 0 1px rgba(var(--sea-green-rgb), 0.25);
  }
  .menu-toggle header .top-actions .left-logo {
    width: 61px;
    padding: 0;
  }
  .menu-toggle header .top-actions .left-logo .main-logo {
    display: none;
  }
  .menu-toggle header .top-actions .left-logo .short-logo {
    display: block;
    margin: 0 auto;
  }
  .menu-toggle .left-aside {
    width: 48px;
  }
  .menu-toggle .left-aside .left-menulist::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent;
  }
  .menu-toggle .left-aside .left-menulist .main-link {
    padding-left: 14.5px;
  }
  .menu-toggle .left-aside .left-menulist .main-link span {
    display: none;
  }
  .menu-toggle .left-aside .left-menulist .left-submenu {
    display: none;
  }
  .menu-toggle .left-aside .left-menulist .left-submenu .sub-link {
    padding-left: 64px;
  }
  .menu-toggle .left-aside .left-menulist .left-submenu .sub-link::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: currentColor;
    left: 47px;
    top: 19px;
  }
  .menu-toggle .left-aside .left-menulist .left-notifybadge {
    color: var(--red);
    font-size: 0px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 10px;
    margin-left: -8px;
    margin-top: -16px;
  }
  .menu-toggle .left-aside .left-menulist .left-menulabel {
    white-space: nowrap;
    color: var(--blue);
    border-top: 1px solid var(--blue-grey);
    padding-left: 15px;
  }
  .menu-toggle .left-aside .left-menubottom .dropdown-toggle::before, .menu-toggle .left-aside .left-menubottom .dropdown-toggle::after {
    opacity: 0;
  }
  .menu-toggle .left-aside .left-menubottom .dropdown-toggle span {
    display: none;
    white-space: nowrap;
  }
  .menu-toggle .left-aside:hover {
    width: 270px;
  }
  .menu-toggle .left-aside:hover .left-menulist .main-link span {
    display: inline-block;
  }
  .menu-toggle .left-aside:hover .left-menulist .left-submenu {
    display: block;
  }
  .menu-toggle .left-aside:hover .left-menulist .left-notifybadge {
    background-color: var(--red);
    color: #fff;
    font-size: 11px;
    min-width: 18px;
    min-height: 18px;
    border-radius: 2px;
    margin-left: 12px;
    margin-top: 0;
  }
  .menu-toggle .left-aside:hover .left-menulist .left-menulabel {
    color: var(--blue-grey);
    border-top: 1px solid transparent;
  }
  .menu-toggle .left-aside:hover .left-menubottom .dropdown-toggle::before, .menu-toggle .left-aside:hover .left-menubottom .dropdown-toggle::after {
    opacity: 1;
  }
  .menu-toggle .left-aside:hover .left-menubottom .dropdown-toggle span {
    display: inline-block;
  }
  .menu-toggle .wrapper-box {
    padding-left: calc(48px + 25px);
  }
  .menu-toggle .aside-filter {
    left: -182px;
  }
  .menu-toggle .aside-filter.active {
    left: 48px;
  }
  .menu-toggle .aside-filter.active .filter-toggle {
    color: var(--sea-green);
  }
}

@media (max-width: 991.9px) {
  header .top-actions {
    width: 109px;
    -webkit-box-shadow: 0 0 0 1px rgba(var(--sea-green-rgb), 0.25);
            box-shadow: 0 0 0 1px rgba(var(--sea-green-rgb), 0.25);
  }
  header .top-actions .left-logo {
    width: 61px;
    padding: 0;
  }
  header .top-actions .left-logo .main-logo {
    display: none;
  }
  header .top-actions .left-logo .short-logo {
    display: block;
    margin: 0 auto;
  }
  .left-aside {
    left: -280px;
  }
  .wrapper-box {
    padding-left: 10px;
    padding-right: 10px;
  }
  .wrapper-box .row-heading::before {
    width: calc(100% + 20px);
    left: -10px;
  }
  .menu-toggle .left-aside {
    left: 0px;
  }
  .aside-filter {
    left: -232px;
  }
  .aside-filter.active {
    left: 0px;
  }
}

/*==========================================*/
/*===== End |  Table + Mobile  Code  =====*/
/*==========================================*/
/*# sourceMappingURL=style.css.map */