@font-face {
  font-family: 'PoppinsRegular';
  src: url('../fonts/Poppins-Regular.ttf');
}

:root {
  font-size: 16px;
  --bgLogo: #1A1A27;
  --bgLinks: #1E1E2D;
  --bgActiveLink: #1B1B28;
  --grayColor: #a9aab8;
  --hoverColor: #009EF7;
  --borderColor: #EFF2F5;
  --bgNumLinks: #009933;
  --titleGroupLinks: #4c4e6f;
  --textLinks: #9899ac;
}

@media (max-width: 767.9px) {
  :root {
    font-size: 14px;
  }
}

* {
  box-sizing: border-box;
  font-family: 'PoppinsRegular';
  margin: 0;
}

a {
  text-decoration: none;
}

/* Main */

.main {
  display: flex;
}

.menuContainer {
  width: 17.5%;
  transition: 0.5s;
  position: relative;
}

.menu {
  background-color: var(--bgLinks);
  height: 100vh;
  border-right: 1px solid var(--borderColor);
  transition: 0.5s;
}

.menu .logo {
  height: 4rem;
  border-bottom: 1px solid #808289;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bgLogo);
}

.menu .logo img {
  object-fit: contain;
  max-width: 90%;
  height: 2.5rem;
  transition: 0.3s;
}

.menuContainer:not(.less) img.small {
  max-width: 0;
}

.menuContainer.less img:not(.small) {
  max-width: 0;
}

.menu .allLinks {
  height: calc(100% - 4rem);
  background-color: var(--bgLinks);
  overflow: auto;
}

.menu .allLinks .simplebar-scrollbar::before {
  background-color: #fff;
  width: 4px;
}

.menu .allLinks .groupLinks {
  margin: 1.5rem 0;
}

.menu .allLinks .groupLinks .titleGroup {
  padding: 0 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  display: block;
  font-weight: 700;
  color: var(--titleGroupLinks);
}

.menu .allLinks .groupLinks a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.625rem 1.25rem;
  color: var(--textLinks);
  border-left: 3px solid transparent;
  transition: 0.5s;
}

.menu .allLinks .groupLinks a.active,
.menu .allLinks .groupLinks a:hover {
  border-left: 3px solid #0162E8;
  background-color: #14486f;
  color: #fff;
}

.menu .allLinks .groupLinks a>span {
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
}

.menuContainer .groupLinks a .text {
  max-width: 110px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 4px;
}

@media (min-width: 768px) and (max-width: 991.9px) {
  .menuContainer .groupLinks a .text {
    width: 60px;
  }
}

.menu .allLinks .groupLinks a span:not(.num) svg {
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.875rem;
  fill: #E7E6EF;
  transition: 0.5s;
}

.menu .allLinks .groupLinks a.active span:not(.num) svg,
.menu .allLinks .groupLinks a:hover span:not(.num) svg {
  fill: var(--hoverColor);
}

.menu .allLinks .groupLinks a span.num {
  font-size: 0.5625rem;
  background-color: var(--bgNumLinks);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9375rem;
  height: 0.9375rem;
  flex: 0 0 0.9375rem;
  color: #fff;
  border-radius: 0.25rem;
  position: relative;
  top: 2px;
}

/* Menu In Mode Less */

@media (max-width: 767.9px) {
  .main .content {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .menuContainer.less {
    width: 80px;
  }

  .main .content {
    width: calc(100% - 17.5%);
    transition: 0.3s;
  }

  .menuContainer.less~.content {
    width: calc(100% - 80px);
  }

  .menuContainer.less:hover img.small {
    max-width: 0;
  }

  .menuContainer.less:hover img:not(.small) {
    max-width: 90%;
  }

  .menuContainer.less .menu {
    position: absolute;
    z-index: 9;
    width: 100%;
  }

  .menuContainer.less .menu:hover {
    width: 250px;
  }

  .menuContainer .groupLinks a .text,
  .menuContainer .groupLinks a .num {
    transition: 0.5s;
    overflow: hidden;
  }

  .menuContainer.less .groupLinks a .text,
  .menuContainer.less .groupLinks a .num {
    width: 0;
  }


  .menuContainer.less .allLinks .groupLinks a span.num {
    flex: 0 0 0;
  }

  .menuContainer.less:hover .groupLinks a .text {
    width: 200px;
  }

  .menuContainer.less:hover .allLinks .groupLinks a span.num {
    flex: 0 0 0.9375rem;
  }

  .menuContainer.less .menu .allLinks .groupLinks a span:not(.num) svg {
    margin-right: 0;
    margin-left: 2px;
    width: 1.75rem;
    height: 1.75rem;
  }

  .menuContainer.less:hover .menu .allLinks .groupLinks a span:not(.num) svg {
    margin-right: 0.875rem;
    margin-left: 0;
    width: 1.125rem;
    height: 1.125rem;
  }
}

.overColor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 97;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: none;
}

@media (max-width: 767.9px) {
  .menuContainer {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 220px !important;
  }

  .menuContainer:not(.less) {
    left: -220px;
  }

  .menuContainer.less {
    left: 0;
  }

  .menuContainer.less+.overColor {
    display: block;
    animation: showFade 0.3s linear;
  }

  .menuContainer.less img:not(.small) {
    max-width: 90%;
  }

  .menuContainer.less img.small {
    max-width: 0;
  }
}

@keyframes showFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Content */

.main .content {
  flex: 1 0 auto;
}

.main .content header {
  height: 4rem;
  background-color: #fff;
  border-bottom: 1px solid #EFF2F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

@media (max-width: 320px) {
  .main .content header {
    padding: 1rem;
  }
}

.main .content header>div {
  display: inline-flex;
}

.main .content header .collapse {
  display: inline-flex;
  cursor: pointer;
}

.main .content header .collapse svg {
  width: 1.5rem;
  height: auto;
  stroke: var(--bgLinks);
  transition: 0.5s;
}

.main .content header .collapse:hover svg {
  stroke: var(--hoverColor);
  transform: scale(1.05);
}

/* Content ==> Header */

.content .languages,
.content .notifications {
  position: relative;
}

.content .keyOpenDrop {
  cursor: pointer;
}

.content .languages .currentLang {
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  color: var(--bgLogo);
}

.content .languages .currentLang img {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
  border-radius: 50%;
}

.content .dropDownCustom {
  position: absolute;
  list-style: none;
  padding: 0;
  right: 0;
  top: 2.5rem;
  box-shadow: 0 .25rem .625rem rgba(20, 20, 20, .1);
  background-color: #fff;
  min-width: 100%;
  white-space: nowrap;
  border-radius: 6px;
  display: none;
  z-index: 23;
}

.content .notifications .dropDownCustom {
  min-width: 300px;
}

.content .dropDownCustom.show {
  display: block;
  animation: showFade 0.3s linear;
}

.content .notifications .dropDownCustom>li {
  margin-bottom: 2px
}

.content .dropDownCustom>li>a,
.content .dropDownCustom>li button {
  font-size: 0.8125rem;
  color: var(--titleGroupLinks);
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1rem;
  transition: 0.3s;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 575.9px) {
  .content .notifications .dropDownCustom {
    min-width: 75vw;
    position: fixed;
    right: 20px;
  }
}

.content .user .dropDownCustom svg {
  margin-right: 1rem;
}

.content .dropDownCustom>li svg {
  width: 0.9rem;
  height: 0.9rem;
  /*margin-inline-end: 0.5rem;*/
}

.content .dropDownCustom>li button {
  background-color: unset;
  border: none;
  cursor: pointer;
}

.content .dropDownCustom>li>a:hover,
.content .dropDownCustom>li button:hover {
  color: var(--hoverColor);
  transition: 0.3s;
}

.content .dropDownCustom :not(.unread)>a:hover {
  background-color: var(--borderColor);
}

.content .dropDownCustom>li>a img {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.content .notifications {
  position: relative;
}

.content .notifications svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #71829b;
}

.content .notifications .num {
  position: absolute;
  height: 0.9rem;
  width: 0.9rem;
  border-radius: 50%;
  font-size: 0.6rem;
  background-color: #b30000;
  color: #fff;
  top: -0.125rem;
  right: -0.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.content .notifications .spanAnimation {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  top: -0.3rem;
  right: -0.3rem;
  background-color: #b30000;
  animation: pulse 1s linear infinite;
  z-index: 1;
  border-radius: 50%;
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  8% {
    transform: scale(0);
    opacity: 0;
  }

  15% {
    transform: scale(.1);
    opacity: 1;
  }

  30% {
    transform: scale(.5);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.content .notifications .dropDownCustom .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 1.75rem;
  background-color: var(--hoverColor);
  border-radius: 50%;
  margin-right: 0.5rem;
}

.content .notifications .dropDownCustom .icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fff;
}


.content .notifications .dropDownCustom .text {
  display: inline-block;
  width: calc(100% - 2.25rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

.content .user {
  position: relative;
}

.content .user .imgUser {
  font-size: 0.8125rem;
  color: var(--bgLogo);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content .user .imgUser i {
  font-style: normal;
  display: flex;
  align-items: center;
}

.content .user .imgUser i svg {
  width: 1.5rem;
  height: auto;
}

.content .user .imgUser i svg [fill] {
  fill: var(--bgLogo);
}

.content .user img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 50%;
}

/* Body Page */

.bodyPage {
  min-height: calc(100vh - 7.3rem);
  background-color: #EAEEF8;
  padding: 1rem 1.5rem;
}

.bodyFooter {
  height: calc(100vh - 4rem);
  overflow: auto;
}

/* Footer */

footer {
  height: 3.3rem;
  border-top: 1px solid var(--borderColor);
  padding: 1rem 1.5rem;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--titleGroupLinks);
}

footer a {
  color: var(--hoverColor);
}

@media (max-width: 575.9px) {
  footer {
    font-size: 0.7rem;
  }
}

/* Colors General */

.bgSuccess {
  background-color: #009933;
}

.bgWarning {
  background-color: #e68a00;
}

.bgDanger {
  background-color: #b30000;
}

.bgPrimary {
  background-color: #0162E8;
}

.bgInfo {
  background-color: #0099e6;
}

/* Table Page */

.headPage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.headPage>div:not(.tools) {
  display: flex;
  flex-direction: column;
}

.headPage h1 {
  font-size: 1.25rem;
  color: var(--bgLogo);
}

.breadCrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.breadCrumb svg {
  width: auto;
  height: 1rem;
}

.breadCrumb svg [stroke] {
  stroke: var(--textLinks);
}

.breadCrumb a {
  font-size: 0.75rem;
  color: #0162e8;
}

.breadCrumb a.active {
  color: #7987a1;
}

.btnIcon {
  width: 1.65rem;
  overflow: hidden;
  justify-content: center;
}

[class*="btn"] {
  display: inline-flex;
  border-radius: 4px;
  position: relative;
  transition: 0.1s;
  height: 1.65rem;
  align-items: center;
  outline: none;
  border: none;
  cursor: pointer;
}

[class*="btn"]:hover {
  transform: scale(1.05);
  transition: 0.2s;
}

[class*="btn"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

[class*="btn"]:hover::before {
  opacity: 0.1;
}

[class*="btn"] svg {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  z-index: 9;
}

[class*="btn"] svg [fill] {
  fill: #fff;
}

[class*="btn"] svg [stroke] {
  stroke: #fff;
}

.headPage .tools,
.headerCard .tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.headerCard h2 {
  font-size: 1.25rem;
  color: var(--hoverColor);
}

.btn {
  color: #fff;
  font-size: 0.8125rem;
  padding: 0 0.325rem;
}

/* Box Container */

.boxContainer,
.card {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 .25rem .625rem rgba(20, 20, 20, .1);
}

.boxContainer {
  padding: 1rem;
}

.boxContainer>.row,
.card>.row {
  width: 100%;
}

.containerTable {
  overflow: auto;
}

.headTable {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.headTable>div {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.headTable input,
.headTable select,
.customInput,
.customSelect {
  border: 1px solid #eae8f1;
  padding: 0.3rem 0.625rem;
  border-radius: 4px;
  color: var(--bgLogo);
  outline: none;
  transition: 0.3s;
}

.boxInput .select2-selection {
  border: 1px solid #eae8f1;
}

.select2-container .select2-selection--single {
  height: unset;
  padding: 0.1rem 0.625rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  /* padding: 0.3rem 0.625rem; */
}

textarea.customInput {
  resize: none;
  height: 5rem;
  width: 100%;
}

.headTable input:focus,
.headTable select:focus {
  border-color: var(--hoverColor);
  outline: none;
}

.boxTwoOption {
  display: inline-flex;
  align-items: center;
}

.boxTwoOption span,
.textSelect,
.labelCustom,
.boxTwoOption .notChecked,
.boxTwoOption .checked {
  font-size: 0.825rem;
  color: var(--textLinks);
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
}

.boxTwoOption .notChecked {
  order: 0;
}

.boxTwoOption .checked {
  order: 2;
}

.checkCustom1+label {
  width: 3rem;
  height: 1.5rem;
  display: inline-flex;
  margin: 0 0.25rem;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  order: 1;
}

.checkCustom1+label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  left: 4px;
  border-radius: 50%;
  transition: 0.3s;
}

.checkCustom1.success~.notChecked {
  color: #009933;
}

.checkCustom1.danger~.notChecked {
  color: #b30000;
}

.checkCustom1.warning~.notChecked {
  color: #e68a00;
}

.checkCustom1.info~.notChecked {
  color: #0099e6;
}

.checkCustom1.primary~.notChecked {
  color: #0162E8;
}

.checkCustom1.gray~.notChecked,
.checkCustom1:disabled~.notChecked,
.checkCustom1:disabled~.checked {
  color: #d9d9df;
}

.checkCustom1.be_success:checked~.checked {
  color: #009933;
}

.checkCustom1.be_danger:checked~.checked {
  color: #b30000;
}

.checkCustom1.be_warning:checked~.checked {
  color: #e68a00;
}

.checkCustom1.be_info:checked~.checked {
  color: #0099e6;
}

.checkCustom1.be_primary:checked~.checked {
  color: #0162E8;
}

/* .checkCustom1:checked~.notChecked {
  color: var(--textLinks);
}

.checkCustom1:checked~.checked {
  color: var(--hoverColor);
} */

.checkCustom1.gray+label {
  border: 1px solid #d9d9df;
}

.checkCustom1:disabled+label {
  border: 1px solid #d9d9df;
}

.checkCustom1.success+label {
  border: 1px solid #009933;
}

.checkCustom1.danger+label {
  border: 1px solid #b30000;
}

.checkCustom1.warning+label {
  border: 1px solid #e68a00;
}

.checkCustom1.info+label {
  border: 1px solid #0099e6;
}

.checkCustom1.primary+label {
  border: 1px solid #0162E8;
}

.checkCustom1.gray+label {
  background: #d9d9df;
}

.checkCustom1.success+label {
  background: #009933;
}

.checkCustom1.success+label {
  background: #009933;
}

.checkCustom1.danger+label {
  background: #b30000;
}

.checkCustom1.warning+label {
  background: #e68a00;
}

.checkCustom1.info+label {
  background: #0099e6;
}

.checkCustom1.primary+label {
  background: #0162E8;
}

.checkCustom1:disabled+label {
  background: #d9d9df;
  cursor: not-allowed;
}

.checkCustom1:disabled+label::before {
  background-color: #fff;
}

.checkCustom1+label::before {
  background-color: #fff;
}

.checkCustom1:checked+label {
  border-color: var(--hoverColor);
  background-color: var(--hoverColor);
}

.checkCustom1:checked+label::before {
  left: calc(2rem - 6px);
  background-color: #fff;
}

.checkCustom1.be_success:checked+label {
  background: #009933;
  border-color: #009933;
}

.checkCustom1.be_danger:checked+label {
  background: #b30000;
  border-color: #b30000;
}

.checkCustom1.be_warning:checked+label {
  background: #e68a00;
  border-color: #e68a00;
}

.checkCustom1.be_info:checked+label {
  background: #0099e6;
  border-color: #0099e6;
}

.checkCustom1.be_primary:checked+label {
  background: #0162E8;
  border-color: #0162E8;
}

/* Table */

.table1 {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  overflow: auto;
}

.table1 th,
.table1 td {
  padding: 0.25rem 1rem;
  border-bottom: 1px dashed var(--grayColor);
}

.table1 tbody>tr:last-child th,
.table1 tbody>tr:last-child td {
  border: none;
}

.table2 th,
.table2 td {
  border: 1px solid var(--grayColor) !important;
}

.table1 tr {
  transition: 0.3s;
}

.table1:not(.table3) tbody>tr:nth-child(even) {
  background-color: #eff2f561;
}

.table1:not(.table3) tbody>tr:nth-child(even):hover {
  background-color: var(--borderColor);
}

tr.unread,
.unread {
  background: rgba(0, 170, 255, 0.07);
}

tr.unread:hover,
.unread:hover {
  background: #0099e624 !important;
}

.table1 tbody>tr:hover {
  background-color: rgba(214, 233, 246, 0.33);
}

/* .table1 tr>*:first-child {
  padding-left: 0.5rem;
}

.table1 tr>*:last-child {
  padding-right: 0.5rem;
} */

.table1 th>span.span_flex,
.table1 td>span.span_flex {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.table1 th>span,
.table1 td>span {
  font-size: 0.8125rem;
}

.table1 th>span {
  color: var(--bgLogo);
  justify-content: space-between;
  width: 100%;
}

.table1 td>span {
  color: var(--titleGroupLinks);
}

.span_flex:hover {
  color: var(--hoverColor);
}

.span_flex .iconSort .top,
.span_flex .iconSort .bottom {
  fill: rgb(192, 192, 192) !important;
}

.span_flex .iconSort.top .top {
  fill: #4c4e6f !important;
}

.span_flex .iconSort.bottom .bottom {
  fill: #4c4e6f !important;
}

.table1 span.icon {
  display: inline-flex;
  margin-left: 0.75rem;
  cursor: pointer;
  transition: 0.3s;
}

.table1 span.icon:hover {
  transform: scale(1.05);
}

.table1 th svg {
  width: 1rem;
  height: auto;
  flex: 0 0 1rem;
}

.table1 th svg,
.table1 th svg [fill] {
  fill: var(--titleGroupLinks);
  transition: 0.3s;
}

.table1 span.span_flex:hover .icon svg,
.table1 span.span_flex:hover .icon svg [fill] {
  fill: var(--hoverColor) !important;
}

.table1 .tools a {
  display: inline-flex;
}

.table1 .btnIcon {
  align-items: center;
  justify-content: center;
}

.table1 .tools a svg {
  width: 1rem;
  height: 1rem;
}

.progressBar {
  height: 8px;
  width: 100%;
  border-radius: 8px;
  background-color: #F5F8FA;
  position: relative;
  display: inline-block;
}

.progressBar>* {
  position: absolute;
  z-index: 1;
  top: 0;
}

.progressBar i {
  height: 100%;
  border-radius: 8px;
  left: 0;
}

.progressBar.success i {
  background-color: #009933;
}

.progressBar.warning i {
  background-color: #e68a00;
}

.progressBar.danger i {
  background-color: #b30000;
}

.progressBar.primary i {
  background-color: #0162E8;
}

.progressBar.info i {
  background-color: #0099e6;
}

.progressBar b {
  right: 0;
  font-size: 0.625rem;
  top: -1rem;
  color: var(--bgLogo);
}

.progressBar2 {
  height: 14px;
  background: #c1c1c1;
}

.progressBar2 b {
  position: relative;
  display: block;
  z-index: 3;
  top: unset;
  right: unset;
  text-align: center;
  color: #fff;
  font-weight: 100;
}

.iconInTable svg {
  position: relative;
  top: 4px;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

/* Text Color General With Some Types */

[class*="textBg"],
[class*="textLight"] {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem !important;
}

[class*="textBg"] {
  color: #fff !important;
}

[class*="textLight"] {
  font-weight: 600;
}

.textBgSuccess {
  background-color: #009933;
}

.textBgWarning {
  background-color: #e68a00;
}

.textBgDanger {
  background-color: #b30000;
}

.textBgPrimary {
  background-color: #0162E8;
}

.textBgInfo {
  background-color: #0099e6;
}

.textBgGray {
  background-color: #607d8b;
}

.textBgSecondry {
  background-color: #6C757D;
}

.textLightGray {
  background-color: #e3e3e3;
}

.textLightGray2 {
  background-color: #f1f1f1;
}

.textLightSuccess {
  background-color: rgba(34, 192, 60, 0.1);
  color: #009933 !important;
}

.textLightWarning {
  background-color: rgba(251, 187, 11, 0.1);
  color: #e68a00 !important;
}

.textLightDanger {
  background-color: rgba(238, 51, 95, 0.1);
  color: #b30000 !important;
}

.textLightPrimary {
  background-color: rgba(1, 97, 232, 0.1);
  color: #0162E8 !important;
}

.textLightInfo {
  background-color: rgba(23, 189, 255, 0.1);
  color: #0099e6 !important;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.pagination>div {
  /* background-color: var(--borderColor); */
  /* padding: 0.5rem 1.5rem; */
  border-radius: 2px;
  display: inline-flex;
  /* gap: 0.5rem; */
}

.pagination .nums span {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  color: var(--bgLogo);
  transition: 0.3s;
  border: 1px solid #dee2e6;
  border-inline-end: none;
  height: 1.75rem;
  padding: 0 0.5rem;
  cursor: pointer;
}

.pagination .nums span:first-child {
  border-radius: 2px 0 0 2px;
}

.pagination .nums span:last-child {
  border-inline-end: 1px solid #dee2e6;
  border-radius: 0 2px 2px 0;
}

.pagination .nums span:not(:last-child):not(:first-child),
.pagination .nums .first,
.pagination .nums .end {
  /* background-color: var(--grayColor); */
  color: var(--titleGroupLinks);
  min-width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 0.875rem;
}

.pagination .nums span:not(.disabled).active,
.pagination .nums span:not(.disabled):not(:last-child):not(:first-child):hover {
  background-color: var(--hoverColor) !important;
  color: #fff !important;
}

.pagination .nums span:last-child:hover,
.pagination .nums span:first-child:hover {
  color: var(--hoverColor);
}

.pagination p {
  font-size: 0.875rem;
  color: var(--textLinks);
}

.disabled,
.disabled:hover {
  background-color: #AEBCC3 !important;
  opacity: 0.7 !important;
  color: var(--titleGroupLinks) !important;
  cursor: not-allowed !important;
}

/* Alert */

.alert {
  color: #7987a1;
  font-size: 0.825rem;
  border: 1px solid var(--grayColor);
  display: inline-flex;
  align-items: center;
  padding: 0.325rem 0.75rem 0.325rem 0.325rem;
  border-radius: 6px;
  border-left: 6px solid var(--grayColor);
}

.alert .icon {
  margin-right: 0.75rem;
}

.alertDanger {
  border-color: #b30000;
  color: #b30000;
  background-color: rgba(238, 51, 95, 0.1);
}

.alertSuccess {
  border-color: #009933;
  color: #009933;
  background-color: rgba(34, 192, 60, 0.1);
}

.alertWarning {
  border-color: #e68a00;
  color: #e68a00;
  background-color: rgba(251, 187, 11, 0.1);
}

.alertInfo {
  border-color: #0099e6;
  color: #0099e6;
  background-color: rgba(23, 189, 255, 0.1);
}

.alertPrimary {
  border-color: #0162E8;
  color: #0162E8;
  background-color: rgba(1, 97, 232, 0.1);
}

.alertDanger svg {
  fill: #b30000;
}

.alertSuccess svg {
  fill: #009933;
}

.alertWarning svg {
  fill: #e68a00;
}

.alertInfo svg {
  fill: #0099e6;
}

.alertPrimary svg {
  fill: #0162E8;
}

/* Form */

.boxInput:not(.row) {
  display: flex;
  flex-direction: column;
  position: relative;
}

.labelCustom {
  color: var(--bgLinks) !important;
}

.boxInput.error .labelCustom {
  color: #F70E0D;
}

.starRed {
  color: #b30000;
}

.boxInput.error input,
.boxInput.error select,
.boxInput.error textarea,
.boxInput.error .select2-selection {
  border-color: #F70E0D !important;
}

.boxInput small {
  color: var(--grayColor);
  margin-top: 0.35rem;
  font-size: 0.625rem;
}

.boxInput small.textError {
  color: #F70E0D;
}

.boxInput label {
  margin-bottom: 0.625rem;
}

.boxInput input:not([type="checkbox"]):not([type="radio"]),
.boxInput select,
.boxCheckbox {
  width: 100%;
}

.rangerSlider {
  width: 100%;
  cursor: pointer;
}

.valRangerSlider {
  margin-left: 1rem;
  font-size: 0.75rem;
  background-color: var(--hoverColor);
  padding: 0.25rem 0.325rem;
  border-radius: 3px;
  color: #fff;
  float: right;
}

.formCustom button {
  font-size: 0.825rem;
  padding: 0.625rem 1rem;
}

.rowFooterForm,
.rowHeaderForm {
  border-top: 1px solid #EAEEF8;
  width: 100% !important;
}

.rowHeaderForm {
  border-top: unset;
  border-bottom: 1px solid #EAEEF8;
}

.rowHeaderForm h3 {
  font-size: 1.125rem;
  color: var(--bgLogo);
}

/* Live Search */

.liveSearch {
  display: flex;
  align-items: center;
}

.liveSearch .addUser {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.liveSearch .addUser:hover {
  /*transform: scale(1.05);*/
}

.liveSearch .addUser [fill] {
    transition: 0.3s;
}

.liveSearch .addUser:hover [fill] {
    fill: #9fd4aa;
}

.messages {
    scroll-behavior: smooth;
}

.liveSearch .addUser svg {
  width: 1.5rem;
  height: auto;
}
.liveSearch .addGroup svg {
    /*width: 2.5rem !important;*/
    /*height: auto;*/
}

.liveSearch .boxInput {
  position: relative;
}

.liveSearch .boxInput input {
  border: 1px solid #AEBCC3;
  padding: 0.5rem;
  padding-left: 2.25rem;
  color: #111C2D;
  font-size: 0.9rem;
  transition: 0.3s;
}

.liveSearch .boxInput input::placeholder {
  color: #AEBCC3;
}

.liveSearch .boxInput input:focus {
  border-color: var(--hoverColor);
}

.liveSearch .boxInput .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.5rem;
  z-index: 1;
  display: inline-flex;
}

.liveSearch .boxInput .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.liveSearch .boxInput .icon svg [stroke] {
  stroke: #AEBCC3;
  transition: 0.3s;
}

.liveSearch .boxInput input:focus+.icon svg [stroke] {
  stroke: var(--hoverColor);
}

.liveSearch .boxInput .result {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  max-height: 7rem;
  background-color: #fff;
  z-index: 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 .25rem .625rem rgba(20, 20, 20, .2);
}

.liveSearch .boxInput .result a {
  display: block;
  font-size: 0.825rem;
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #fff;
  color: var(--titleGroupLinks);
  transition: 0.3s;
}

.liveSearch .boxInput .result a:nth-child(even) {
  background-color: var(--borderColor);
}

.liveSearch .boxInput .result a:hover {
  background-color: #e0e2e4;
  transform: scale(1.025);
}

/* Tabs In Chat */

.tabs {
  white-space: nowrap;
  padding-bottom: 0.5rem;
}

.tabs .keyTab {
  font-size: 0.825rem;
  color: var(--grayColor);
  transition: 0.3s;
  margin-right: 0.5rem;
  display: inline-flex;
  cursor: pointer;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.tabs .keyTab:last-child {
  margin-right: 0;
}

.tabs .keyTab.active {
  border-bottom: 2px solid var(--hoverColor);
  color: var(--hoverColor);
  font-weight: 700;
}

.boxContentTab {
  height: 100%;
  border-radius: 6px 0 0 6px;
  box-shadow: none;
  border-right: 1px solid #e6ecf1;
    overflow: hidden;
}

.contentTab {
  height: calc(100% - 3.6rem);
}

.contentTab[key] {
  display: none;
}

.contentTab[key],
.boxChat .messages{
    visibility: visible!important;
}

.contentTab.show {
  display: block;
  animation: showFade 0.3s linear;
}

.contentTab>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  transition: 0.3s;
    height: 3.5rem;
}

.filter {
  padding: 0.5rem 1rem !important;
  font-size: 0.9rem;
  display: flex;
}

.filter select {
  border: none;
  padding: 0;
  font-size: 0.9rem;
}

.contentTab a {
  padding: 0.4rem 0.7rem;
  transition: 0.3s;
  border-bottom: 1px solid #e9e9e9;
}

.contentTab a:last-child {
  border-bottom: 0;
}

.contentTab a:hover,
.contentTab a.active {
  background-color: #f5f8fb;
}

.contentTab a>div {
  display: flex;
}

.contentTab a>div:not(.img) {
  flex-direction: column;
  width: calc(100% - 2.7rem)
}

.contentTab a .img {
  display: inline-flex;
  position: relative;
}

.contentTab a img {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  object-fit: cover;
  /*border-radius: 50%;*/
}

.contentTab a .num_unread {
  background-color: #55a570;
  color: #fff;
  font-size: 0.65rem;
  padding: 0 0.25rem;
  font-size: 0.75rem;
  height: 1.125rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contentTab a .details {
  flex: 1 0 auto;
  display: flex;
  justify-content: space-between;
    align-items: center;
  gap: 0.5rem;
  margin-bottom: -2px;
}

.contentTab a .details h3 {
  font-size: 0.8rem;
  color: #656a73;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.contentTab a .details .time {
  font-size: 0.75rem;
  color: rgba(112, 122, 130, 0.75);
}

.contentTab p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 0.75rem;
  color: rgb(17, 28, 45);
  transition: 0.3s;
  max-width: 60%;
}

.contentTab a:hover p,
.contentTab a.active p {
  color: var(--hoverColor);
}

.rowChat {
  height: calc(100vh - 9.3rem);
}

.openList {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.openList svg {
  width: auto;
  height: 1.75rem;
}

.openList svg [stroke] {
  stroke: var(--hoverColor);
}

.rowChat>div {
  height: 100%;
}

.boxChat {
  height: 100%;
  overflow: hidden;
  border-radius: 0 6px 6px 0;
  box-shadow: none;
}

.boxChat .info {
  height: 3.5rem;
  background-color: #fff;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6ecf1;
}

.boxChat .info .details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.boxChat .info .img {
  display: inline-flex;
  position: relative;
}

.boxChat .info .img img {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  object-fit: cover;
  /*border-radius: 50%;*/
}

.circleStatus {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  right: -2px;
  bottom: -2px;
  background-color: #3adf56;
}


.contentTab a .img .circleStatus {
  border: 2px solid #fff;
}

.circleStatus.unActive {
  background-color: var(--grayColor);
}

.boxChat .info .details>div:not(.img) {
  display: inline-flex;
  flex-direction: column;
}

.boxChat .info .details span {
  font-size: 0.925rem;
  font-weight: 500;
  color: rgb(17, 28, 45);
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 992px) {
  .boxChat .info .details span {
    max-width: 120px;
  }
}

.boxChat .info .details .org {
  font-size: 0.8rem;
  color: rgb(112, 122, 130);
  transition: 0.3s;
  margin-top: -5px;
}


.boxChat .info .tools {
  display: inline-flex;
}

.boxChat .info .tools a {
  display: inline-flex;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.boxChat .info .tools a:hover {
  transform: scale(1.05);
}

.boxChat .info .tools a svg {
  width: 1.325rem;
  height: 1.325rem;
}

.containerMessages {
  overflow: auto;
  height: calc(100% - 7.3rem);
  background: linear-gradient(135deg, rgba(0, 158, 247, 0.25) 0%, rgba(165, 223, 255, 0.25) 50%, rgba(0, 158, 247, 0.25) 100%);
  background: #fff;
  border-bottom: 1px solid #e6ecf1;
}

.boxChat .messages {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.boxChat .newMessage {
  height: 3.75rem;
  background-color: #fff;
}

.message_will_reply {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 3.9rem;
  box-shadow: 0px -3px 5px 0px #00000026;
  background-color: #fff;
  display: flex;
  gap: 1rem;
  padding: 0.5rem 1rem;
  align-items: center;
}

.text_before {
  border-left: 3px solid #ffffff;
  background-color: rgb(192 218 233);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  border-radius: 0.25rem;
}

.text_before i {
  font-style: normal;
}

.text_before i.username {
  color: var(--bgLinks);
  font-weight: 600;
}

.text_before i:not(.username) {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 767.9px) {
  .text_before i:not(.username) {
    max-width: 300px;
  }
}
.forward {
    border-left: 3px solid #3a72fd;
    background-color: rgb(192 218 233);
    padding: 0.3rem 1rem 0.3rem 0.3rem;
    display: flex;
    flex-direction: column;
    border-radius: 0.15rem;
    font-size: 12px;
}
.message_will_reply .icon {
  display: inline-flex;
}

.message_will_reply .icon svg {
  flex: 0 0 1.5rem;
  width: 1.5rem;
  height: auto;
}

.message_will_reply .text_message_reply h4 {
  color: #418db1;
  font-size: 0.9rem;
  font-weight: 100;
}

.message_will_reply .text_message_reply h4 span {
  font-weight: 700;
}

.message_will_reply .text_message_reply p {
  color: var(--titleGroupLinks);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8rem;
}

.message_will_reply .close_reply {
  cursor: pointer;
  transition: 0.3s;
}

.message_will_reply .close_reply [stroke] {
  transition: 0.3s;
}

.message_will_reply .close_reply:hover {
  transform: scale(1.05);
}

.message_will_reply .close_reply:hover [stroke] {
  stroke: #858585;
}

.boxTextMessage {
  display: inline-flex;
  width: 80%;
}

.boxTextMessage>div:not(.imgTime) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.boxTextMessage .img {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
}

.boxTextMessage .img img {
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  object-fit: cover;
}

.boxTextMessage p {
  max-width: 100%;
  background-color: #E7ECF0;
  border-radius: 8px;
  font-size: 0.8125rem;
  padding: 0.5rem;
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  color: rgb(17, 28, 45);
}
.boxTextMessage.me {
    justify-content: flex-end;
}
.boxTextMessage.me p {
  background-color: #009cf71a
}

.boxTextMessage .nameTime span {
  font-size: 0.75rem;
  color: rgba(112, 122, 130, 0.75);
  margin-top: 8px;
  display: inline-block;
}

.boxTextMessage .tools {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.35rem;
  /* align-self: flex-end; */
}


.boxTextMessage .toolsTime {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.625rem;
  gap: 0.5rem;
}

.boxTextMessage .toolsTime .time {
  font-size: 0.7rem;
}

.boxTextMessage .tools svg {
  width: auto;
  height: 0.825rem;
}

.boxTextMessage .tools svg [fill] {
  fill: var(--titleGroupLinks);
}

.boxTextMessage .tools svg [stroke] {
  stroke: var(--titleGroupLinks);
}

.boxTextMessage .tools .check svg {
  height: 1.25rem;
}

.boxTextMessage .tools>* {
  position: relative;
  display: inline-flex;
}

.boxTextMessage .tools i {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  color: #fff;
  background-color: var(--titleGroupLinks);
  padding: 0.125rem 0.25rem;
  border-radius: 4px;
  opacity: 0;
  transition: 0.3s;
}

.boxTextMessage .tools>*:hover i {
  opacity: 1;
}

.boxTextMessage .tools .check.notSent .true2 {
  display: none;
}

.boxTextMessage .tools .check.seen svg [stroke] {
  stroke: var(--hoverColor);
}

.boxTextMessage.me {
  margin-left: auto;
}

.boxTextMessage.me>div:not(.img) {
  order: 0;
  align-items: flex-end;
}

.boxTextMessage.me .img {
  order: 1;
  margin-right: 0;
  margin-left: 0.5rem;
}

.boxTextMessage.me .toolsTime {
  flex-direction: row;
}

.newMessage {
  padding: 0.5rem 1rem;
}

.boxMyMessage {
  position: relative;
  height: 100%;
}

.boxMyMessage input,
.boxMyMessage textarea {
  width: 100%;
  height: 100%;
  font-size: 0.8125rem;
  border: 1px solid var(--grayColor);
  border-radius: 1rem;
  padding: 10px 2.5rem 10px 2rem;
  transition: 0.3s;
  outline: none;
}

.boxMyMessage textarea {
  resize: none;
}

.boxMyMessage input:focus,
.boxMyMessage textarea:focus {
  border-color: var(--hoverColor);
}

.boxMyMessage .labelFile {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  cursor: pointer;
  transition: 0.3s;
}

.boxMyMessage .labelFile:hover {
  transform: translateY(-50%) scale(1.05);
}

.boxMyMessage .labelFile svg {
  width: 1.25rem;
  height: 1.25rem;
}

.boxMyMessage .labelFile svg [stroke] {
  stroke: var(--titleGroupLinks);
  transition: 0.3s;
}

.boxMyMessage .labelFile:hover svg [stroke] {
  stroke: var(--hoverColor);
}

.boxMyMessage button {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hoverColor);
  border: 1px solid var(--hoverColor);
  border-radius: 50%;
  width: 1.75rem;
  height: 1.75rem;
  cursor: pointer;
  transition: 0.3s;
}

.boxMyMessage button svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
}

.boxMyMessage button:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.boxMyMessage button:hover svg [fill] {
  fill: var(--hoverColor);
}

.bgColContentTab {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

@media (max-width: 575.9px) {

  .rowChat,
  .rowChat>div {
    height: auto;
  }

  .boxContentTab {
    height: 100vh;
    /* margin-bottom: 1.5rem; */
    overflow: hidden;
  }

  .boxChat {
    height: calc(100vh - 7.3rem);
  }
}

@media (max-width: 991.9px) {
  .boxChat {
    border-radius: 6px;
  }

  .colContentTab {
    position: fixed;
    top: 0;
    left: -50%;
    width: 50%;
    z-index: 999;
    height: 100%;
    transition: 0.1s;
  }

  .colContentTab.show {
    left: 0;
    transition: 0.3s;
  }

  .colContentTab.show+.bgColContentTab {
    display: block;
    animation: showFade 0.3s linear;
  }
}

@media (max-width: 575.9px) {
  .colContentTab {
    left: -80%;
    width: 80%;
  }
}

/* Login Page */

.bgLogin {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  object-fit: cover;
}

.parentShapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: hidden;
  background-color: #F1F5FA;
}

.auth-login-shape1 {
  content: "";
  position: absolute;
  left: -125px;
  bottom: -100px;
  width: 427px;
  height: 417px;
  border-radius: 100%;
  background-color: #fb977d;
}

.auth-login-shape2 {
  content: "";
  position: absolute;
  top: -60px;
  right: 0;
  width: 304px;
  height: 315px;
  background-image: url(../imgs/shap-login.png);
  background-repeat: no-repeat;
}

.containerLogin {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 7rem;
  z-index: 9;
  width: calc(100% - 14rem);
  max-height: calc(100% - 6rem);
  display: flex;
  justify-content: space-evenly;
  /*gap: 1rem;*/
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 30px 15px rgba(37, 83, 185, .1);
    flex-direction: column;
}

.langsLogin {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: #1B1B28;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.langsLogin a {
    text-decoration: underline;
    color: #009ef7;
}

.containerLogin .info {
  width: 41%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

/* .containerLogin .info .simplebar-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
} */

.containerLogin .info .top {
  display: flex;
  height: 2.5rem;
}

.containerLogin .info .top img {
  width: auto;
  object-fit: contain;
  height: 2.5rem;
}

.containerLogin .info .center {
  height: calc(100% - 4rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.containerLogin .info .center img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.containerLogin form {
  width: 44%;
  /* height: 100%; */
  padding: 0 1.5rem;
  margin: 2.25rem 0 1rem;
}

.containerForm {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  height: 100%;
  padding: 0 1rem;
}

.containerLogin form .simplebar-content {
  height: 100%;
}

.containerForm h2 {
  margin-bottom: 0.25rem;
  font-size: 2.25rem;
  color: #111C2D;
  font-weight: 900;
}

.containerForm h2+p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: rgb(17, 28, 45);
  font-weight: 100;
}

.anotherLogin {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.anotherLogin a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(230, 236, 241);
  padding: 0.325rem;
  flex: 1 0 calc(50% - 0.5rem);
  border-radius: 0.25rem;
  font-size: 0.85rem;
  color: rgb(17, 28, 45);
  justify-content: center;
  transition: 0.3s;
}

.anotherLogin a:hover {
  transform: scale(1.025);
}

.anotherLogin a img {
  width: auto;
  max-width: 2rem;
  height: 1.5rem;
  object-fit: contain;
  margin-right: 0.325rem;
}

.textOr {
  position: relative;
  display: flex;
  justify-content: center;
}

.textOr span {
  font-size: 0.75rem;
  color: rgb(112, 122, 130);
  display: inline-flex;
  padding: 0 0.5rem;
  background-color: #fff;
  position: relative;
  z-index: 9;
  font-weight: 600;
}

.textOr::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e6ecf1;
}

.containerForm .inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.containerForm .remeberMe label {
  color: rgb(17, 28, 45);
  font-size: 0.85rem;
}

.containerForm .remeberMe input,
.checkBoxNormal input {
  width: 1.125em;
  height: 1.125em;
  border-radius: 0.25rem;
}

.containerForm .inputs .boxInput label {
  color: rgb(17, 28, 45);
  font-size: 0.85rem;
  margin-bottom: 0.325rem;
}

.containerForm .inputs .boxInput input {
  font-size: 1rem;
  padding: 0.45rem 0.625rem;
}

.containerForm .inputs .boxInput button {
  background-color: #0071BA;
  font-size: 1rem;
  padding: 0.5rem;
  height: auto;
  text-align: center;
  border: 1px solid #0071BA;
  transition: 0.3s;
  border-radius: 4rem;
  color: #fff;
  cursor: pointer;
}

.containerForm .inputs .boxInput button:hover {
  transform: scale(1.025);
  background-color: #fff;
  color: var(--hoverColor);
}

.containerForm .inputs .boxInput a,
.containerForm .inputs .boxInput .textGray {
  color: rgb(0, 133, 219);
  font-size: 0.825rem;
  font-weight: 600;
}

.containerForm .inputs .boxInput .textGray {
  color: var(--grayColor);
}

@media (max-width: 1199.9px) {
  .containerLogin {
    left: 3.5rem;
    width: calc(100% - 7rem);
  }

  .containerLogin .info {
    width: 50%;
  }

  .containerLogin form {
    width: 50%;
  }
}

@media (max-width: 991.9px) {
  .containerLogin {
    left: 7.5rem;
    width: calc(100% - 15rem);
  }

  .containerLogin form {
    width: 100%;
  }

  .containerLogin .info {
    display: none;
  }
}

@media (max-width: 767.9px) {
  .containerLogin {
    left: 6.2rem;
    width: calc(100% - 12.4rem);
    height: auto;
    max-height: 90%;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 575.9px) {
  .containerLogin {
    left: 2rem;
    width: calc(100% - 4rem);
  }

  .containerLogin form {
    padding: 1rem;
  }

  .anotherLogin {
    gap: 1rem;
  }

  .anotherLogin a {
    flex: 1 0 100%;
  }
}

/* Modal */

.modalCustom {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modalCustom>div {
  min-height: calc(100% - (2rem * 2));
  margin: 2rem auto;
  width: 100%;
  display: flex;
}

.modalCustom[vertical="top"]>div {
  align-items: flex-start;
}

.modalCustom[vertical="center"]>div {
  align-items: center;
}

.modalCustom[vertical="bottom"]>div {
  align-items: flex-end;
}

.modalCustom.show {
  display: block;
}

.modalCustom .close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.modalCustom.show .close {
  animation: showFade 0.3s linear;
}

.modalCustom .contentModal {
  max-width: 94%;
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.modalCustom[size="1"] .contentModal {
  width: 350px;
}

.modalCustom[size="2"] .contentModal {
  width: 575px;
}

.modalCustom[size="3"] .contentModal {
  width: 850px;
}

.modalCustom[size="4"] .contentModal {
  width: 1050px;
}

.modalCustom[size="5"] .contentModal {
  width: 92%;
}

@media (max-width: 400px) {
  .modalCustom[size="1"] .contentModal {
    width: 92%;
  }
}

@media (max-width: 625px) {
  .modalCustom[size="2"] .contentModal {
    width: 92%;
  }
}

@media (max-width: 900px) {
  .modalCustom[size="3"] .contentModal {
    width: 92%;
  }
}

@media (max-width: 1100px) {
  .modalCustom[size="4"] .contentModal {
    width: 92%;
  }
}

.loader {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.loader>svg {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  flex: 0 0 1.5rem;
  height: auto;
}

.loader>svg [stroke] {
  stroke: var(--hoverColor);
}

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

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

.modalCustom.show .contentModal {
  animation: showDown 0.5s linear both;
  border-radius: 1rem;
  overflow: hidden;
}

@keyframes showDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modalCustom .bodyModal {
  /* max-height: calc(100% - 7.5rem); */
}

.modalCustom .headModal,
.modalCustom .bodyModal,
.modalCustom .footModal {
  padding: 1rem 1.5rem;
  background-color: #fff;
}

.modalCustom .headModal {
  border-bottom: 1px solid var(--grayColor);
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-radius: 1rem 1rem 0 0; */
}

.headModal .iconClose {
  display: inline-flex;
  cursor: pointer;
}

.headModal .iconClose svg {
  width: 1.75rem;
  height: auto;
}

.headModal .iconClose svg [stroke] {
  stroke: #b30000;
}

.modalCustom .headModal span {
  font-size: 1.25rem;
  color: var(--titleGroupLinks);
}

.modalCustom .footModal {
  border-top: 1px solid var(--grayColor);
  /* border-radius: 0 0 1rem 1rem; */
}

/* Sweet Alert */

.sweetAlert {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  border-radius: 0.25rem;
  align-items: center;
  overflow: hidden;
  display: none;
}

.sweetAlert .time {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
}

@keyframes minusWidthZero {
  from {
    width: 100%;
  }

  to {
    width: 0;
  }
}

.sweetAlert.show .time {
  animation-name: minusWidthZero;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.sweetAlert.show {
  display: inline-flex;
  /* animation: tada 1s both; */
}

.sweetAlert.sweetSuccess {
  background-color: #009933;
  border: 1px solid #009933;
}

.sweetAlert.sweetDanger {
  background-color: #b30000;
  border: 1px solid #b30000;
}

.sweetAlert.sweetWarning {
  background-color: #e68a00;
  border: 1px solid #e68a00;
}

.sweetAlert.sweetInfo {
  background-color: #0099e6;
  border: 1px solid #0099e6;
}

.sweetAlert.sweetPrimary {
  background-color: #0162E8;
  border: 1px solid #0162E8;
}

.sweetAlert .icon {
  margin-right: 0.75rem;
}

.sweetAlert svg {
  width: 1.75rem;
  height: 1.75rem;
}

.sweetAlert svg [fill] {
  fill: #fff;
}

.sweetAlert svg [stroke] {
  stroke: #fff;
}

.sweetAlert span:not(.icon) {
  color: #fff;
  font-size: 1rem;
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.containerLogin2 {
  width: 35%;
  left: 33.5%;
}

.containerLogin2 .containerForm {
  padding: 1rem;
}

.containerLogin2 form {
  width: 100%;
}

.containerLogin2 .logo {
  width: auto;
  max-width: 100%;
  height: 3rem;
}

.parentShapes2 {
  width: 56%;
  left: 22%;
  background-color: #EDF3FC;
}

.parentShapes2::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
  background-color: #EDF3FC;
}

.parentShapes2 .auth-login-shape2 {
  top: -30px;
  right: 0;
  width: 200px;
  height: 215px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 9;
}

.parentShapes2 .auth-login-shape1 {
  left: 50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  z-index: 9;
}

@media (max-width: 1199.9px) {
  .containerLogin2 {
    width: 45%;
    left: 27.5%;
  }

  .parentShapes2 {
    width: 64%;
    left: 18%;
  }
}

@media (max-width: 991.9px) {
  .containerLogin2 {
    width: 60%;
    left: 20%;
  }

  .parentShapes2 {
    width: 80%;
    left: 10%;
  }
}

@media (max-width: 767.9px) {
  .containerLogin2 {
    width: 70%;
    left: 15%;
  }

  .parentShapes2 {
    width: 100%;
    left: 0%;
  }
}

@media (max-width: 575.9px) {
  .containerLogin2 {
    width: 85%;
    left: 7.5%;
  }

  .parentShapes2 {
    width: 100%;
    left: 0%;
  }
}

.checkBoxNormal input {
  margin-right: 0.325rem;
}

.checkBoxNormal input+label {
  font-size: 0.825rem;
  color: var(--textLinks);
  transition: 0.3s;
}

.checkBoxNormal input:checked+label {
  color: var(--hoverColor);
}

/* Tree Page */

.tree {
  overflow: hidden;
}

.tree ul {
  list-style: none;
  padding: 0;
}

.tree ul div {
  display: inline-flex;
  background-color: #fff;
  border: 2px solid #EBEEF8;
  margin: 0.75rem 0;
  border-radius: 10px;
  padding: 0.75rem 0.875rem;
}

.tree li {
  position: relative;
  padding-inline-start: 2rem;
}

.tree li::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 0.5rem;
  width: 2px;
  height: calc(150% + 3.3rem);
  background-color: #EBEEF8;
}

.tree ul>li:last-child::before {
  background-color: #fff;
  top: unset;
  bottom: -1rem;
  height: calc(50% + 1rem);
  z-index: 1;
}

.tree div {
  position: relative;
  max-width: 33vw;
  flex-direction: column;
  z-index: 9;
}

.tree div::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 1.5rem;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.tree .iconAngle {
  display: inline-flex;
  position: absolute;
  background-color: transparent;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

.tree .iconAngle svg {
  height: auto;
  width: 1.25rem;
  flex: 0 0 1.25rem;
}

.tree .header {
  display: inline-flex;
  gap: 0.875rem;
  width: calc(100% - 1rem);
  position: relative;
}

.tree .header img {
  width: 3.56rem;
  height: 3.56rem;
  flex: 0 0 3.56rem;
}

.tree .header>span {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  max-width: 25vw;
  padding-right: 1.5rem;
}

.tree .header>span>span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.tree .header>span>.span1 {
  color: #104E9F;
}

.tree .header>span>.span2 {
  color: #000000;
}

.tree .header>span>.span3 {
  font-weight: 900;
  color: #6C63FF;
}

.tree .iconOnOff {
  display: inline-flex;
  position: absolute;
  top: 0;
  right: -1.5rem;
  z-index: 3;
}

.tree .iconOnOff.unActive [stroke] {
  stroke: #EBEEF8;
}

.tree .info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-top: 0.625rem;
}

.tree .info>span {
  display: flex;
  align-items: center;
}

.tree .info .icon {
  display: inline-flex;
  margin-right: 0.5rem;
}

.tree .info .icon svg {
  flex: 0 0 1rem;
  height: auto;
  width: 1rem;
}

.tree .info b {
  font-size: 0.8125rem;
  display: inline-block;
  width: 4.5rem;
  font-weight: 100;
}

.tree .info b+a {
  font-size: 0.8125rem;
  display: inline-block;
  color: #104E9F;
}

.tree h2 {
  font-size: 1.75rem;
  color: #1E1D2D;
}

.formTree input,
.formTree button {
  border: 1px solid #EBEEF8;
  font-size: 1rem;
  color: #5A6EB5;
  padding: 0.325rem 0.75rem;
  border-radius: 10px;
  outline: none;
  transition: 0.3s;
}

.formTree input:focus {
  border-color: #5A6EB5;
}

.formTree button {
  color: #000;
  padding: 0.325rem 0.5rem;
  background-color: #fff;
  cursor: pointer;
}

.formTree button:hover {
  background-color: #5A6EB5;
  color: #fff;
}

@media (max-width: 991.9px) {
  .tree div {
    max-width: 100%;
  }

  .tree .iconOnOff {
    top: 0.25rem;
    right: -1rem;
  }
}

@media (max-width: 575.9px) {
  .tree li {
    padding-inline-start: 1.5rem;
  }

  .tree .iconAngle {
    left: -1rem;
  }

  .tree .iconAngle svg {
    width: 0.75rem;
    flex: 0 0 0.75rem;
  }

  .tree ul div {
    padding: 0.25rem;
  }
}

/* Parent Tools */

@media (max-width: 767.9px) {
  .parentTools {
    position: relative;
  }

  .parentTools>span {
    cursor: pointer;
  }

  .parentTools>span svg {
    flex: 0 1 auto;
    height: 1.625rem;
    width: auto;
  }

  .parentTools>span svg [stroke] {
    stroke: var(--bgLogo);
  }

  .parentTools .tools {
    position: absolute;
    top: 1.825rem;
    right: 0;
    z-index: 5;
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 .25rem .625rem rgba(20, 20, 20, .1);
    display: none;
    white-space: nowrap;
  }

  .parentTools .tools.active {
    display: flex;
    animation: showFade 0.3s linear;
  }
}

.parentLoader {
  position: relative;
}

.parentLoader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.6);
}

.parentLoader .loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

td.tools>span {
  gap: 0.5rem;
}

td a {
  color: #0040D3;
}

/* Card & Tabs */



.card>* {
  padding: 0.75rem 1rem;
}

.card>:first-child {
  border-bottom: 1px solid var(--borderColor);
}

.card>:last-child {
  border-top: 1px solid var(--borderColor);
}

.card .headerCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footerCard {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.tabsLink .headTabs {
  display: flex;
  white-space: nowrap;
  overflow: auto;
  position: relative;
  border-bottom: 1px solid #d9d9d9;
}

.tabsLink .headTabs::before {
  /* content: ""; */
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  /* width: 100%; */
  z-index: 6;
  background-color: #d9d9d9;
}

.tabsLink .headTabs>* {
  padding: 0.325rem 0.625rem;
  /* border-radius: 0.325rem 0.325rem 0 0; */
  border: 1px solid transparent;
  transition: 0.3s;
  color: var(--grayColor);
  font-size: 0.925rem;
  cursor: pointer;
}

.tabsLink .headTabs>*.active {
  background-color: #fff;
  border-color: #d9d9d9;
  border-bottom-color: #fff;
  position: relative;
  color: var(--hoverColor);
  /* box-shadow: 0px 2px 0px -1px #fff; */
}

.tabsLink .headTabs>*.active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  z-index: 9;
}

.tabsLink .headTabs>*.active::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 3px;
  background-color: var(--hoverColor);
}

.tabsLink .contentTabs {
  padding: 1rem 0.625rem;
  border: 1px solid #d9d9d9;
  border-top: none;
  /* border-radius: 0 0.325rem 0.325rem 0.325rem; */
}

.tabsLink .contentTabs>* {
  display: none;
}

.tabsLink .contentTabs>*.active {
  display: block;
}

/* Style Select2 Multi Select */

.select2-container .select2-selection--multiple .select2-selection__rendered {
  font-size: 0.83rem;
}

.select2-container .select2-selection--multiple {
  max-height: 32px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #eae8f1;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 4px;
  position: relative;
  padding: 0 16px 0 2px;
  background: #393963;
  border-color: #393963;
  color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  left: unset;
  background-color: transparent !important;
  color: #fff !important;
  border: none;
  padding: 0 !important;
}

.select2-results__option {
  padding: 4px;
  font-size: 0.83rem;
}

.select2-dropdown {
  border: 1px solid #eae8f1;
}

/* Date Picker */

.picker {
  font-size: 14px;
}

.picker__holder {
  max-width: 300px;
}

.picker__day {
  padding: 0.2125em 0;
}

.boxItems {
  border: 1px solid #a0a0a0;
  border-radius: 0.35rem;
  overflow: hidden;
}

.boxItems .title {
  border-bottom: 1px solid #a0a0a0;
  padding: 4px 6px;
  background-color: #f5f5ef;
}

.boxItems .title+div {
  padding: 4px 6px;
}

.boxItems .title h4 {
  font-size: 0.85rem;
  color: var(--bgLogo);
}

.boxItems .rowInfo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.25rem;
}

.boxItems h5 {
  font-size: 0.7rem;
  font-weight: 100;
}

.boxItems h6 {
  font-size: 0.925rem;
  flex: 1 0 auto;
  font-weight: 100;
  max-width: 100%;
}

.textPrimaryColor {
  color: #0162E8;
}

.textWarningColor {
  color: #e68a00;
}

.textDangerColor {
  color: #b30000;
}

@keyframes fadeInUpSlow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.parent_notification {
  position: fixed;
  right: 1.6rem;
  bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.notification_message {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  width: 250px;
  display: none;
  display: flex;
  flex-direction: column;
  -webkit-animation-name: fadeInUpSlow;
  animation-name: fadeInUpSlow;
  animation-duration: 1s;
}

.notification_message .header_notification_message>svg,
.notification_message .header_notification_message .btn_close svg {
  width: 1.5rem;
  flex: 0 0 1.5rem;
  height: auto;
}

.notification_message .header_notification_message>svg [stroke] {
  stroke: #009EF7;
}

.notification_message .header_notification_message .btn_close svg [stroke] {
  stroke: #ff3535;
}

.notification_message {
  font-size: 0.85rem;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notification_message a,
.link_notifications {
  color: #009EF7;
}

.header_notification_message {
  width: 100%;
}

.notification_message p.title_notification {
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no_chat_selected {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.boxChat {
  position: relative;
}

.no_chat_selected+.openList {
  position: absolute;
  left: 1rem;
  top: 1rem;

}

.no_chat_selected h3 {
  font-size: 1.25rem;
  color: var(--bgLogo);
}

.no_chat_selected p {
  font-size: 0.9rem;
  color: var(--titleGroupLinks);
}

.messageSystem {
    display: flex;
    justify-content: center;
    background: #fffbf4;
    color: #222;
    padding: 8px;
    margin: 0 auto;
    width: calc(100% - 3rem);
    border-radius: 8px;
}

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

.addUser {
    border: 1px solid #AEBCC3;
    padding: 0.5rem;
    color: #111C2D;
    border-radius: 4px;
}
.custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: #555 #eee;
    overflow: auto;
}

.custom-scroll::-webkit-scrollbar {
    width: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.filterTypes {
    display: flex;
    gap: 0.25rem;
}

.filterTypes label,.filterTypes a {
    border: 1px solid #aaaaaa;
    /*border-right: none;*/
    font-size: 0.8rem;
    padding: 0.25rem;
    cursor: pointer;
    color: #999696;
    transition: 0.3s;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.25rem;
    height: 2.25rem;
    width: 2.25rem;
}
.filterTypes a {
    width: auto;
    margin-left: auto
}
.filterTypes label:first-of-type {
    /*border-radius: 0.25rem 0 0 0.25rem;*/
}

.filterTypes label:last-child {

    /*border-right: 1px solid #aaaaaa;*/
    /*border-radius: 0 0.25rem 0.25rem 0;*/
}

.filterTypes label:hover,.filterTypes a:hover {
    border: 1px solid #1e1e2d;
}

.filterTypes input:checked+label {
    background: #1e1e2d;
    color: #fff;
    border: 1px solid #1e1e2d;
}

.btnArchive {
    display: inline-flex;
    font-size: 0.625rem;
    text-decoration: underline;
    color: #009ef7;
    opacity: 0;
    transition: 0.3s;
    padding: 0!important;
}

.contentTab a:hover .btnArchive {
    opacity: 1;
}

.toolsNav>div,
.toolsNav>div>div,
.toolsNav>div>a{
    display: inline-flex;
    align-items: center;
}

.modalCustom,
.modalCustom>div {
    /*padding-bottom: 4rem;*/
}

.modalCustom.show .contentModal {
    position: relative;
    min-height: calc(100vh - (2rem* 2));
    overflow: unset;
}

.modalCustom .headModal {
    border-radius:  1rem 1rem 0 0;
}

.modalCustom .footModal {
    border-radius:  0 0 1rem 1rem!important;
}

.modalCustom.show .contentModal>*{
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    /*min-height: 50px;*/
}

.modalCustom {
    overflow-y: auto;
    overflow-x: hidden;
}

.modalCustom.show .contentModal>*>div:last-child,
.contentModal .headModal+div .bodyModal:last-child{
    border-radius:  0 0 1rem 1rem;
}

.modalCustom.show .contentModal>.bodyModal {
    border-radius: 1rem;
}
