/* Header */

.avartar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.txtHappy {
  display: flex;
  flex-direction: row;
  text-align: end;
  font-weight: bold;
  margin-top: 8px;
  justify-content: center;
}

/* Menu Mobile */

.iConItemMobile {
  width: 20px;
  height: 20px;
  /* text-align: center;
  margin: auto; */
}
.menuMobile {
  display: flex;
  flex-direction: row;
}
/* Main Menu */

.menu-w ul.main-menu > li span {
  padding: 0.8rem;
}

.menu-w ul.main-menu > li {
  border-bottom-width: 0;
}

.itemClicked {
  width: 140px;
  max-height: 90px;
  height: calc((100vh - 158px) / 6);
  min-height: 65px;
  flex-direction: column;
  background: #f7f7f7;
  border-radius: 15px;
  text-align: center;
  margin-left: 35px;
  margin-right: 15px;
  transition: 0.5s ease;
  cursor: pointer;
  align-content: center;
  display: grid;
  justify-items: center;
}

.itemNotClick {
  width: 140px;
  max-height: 90px;
  height: calc((100vh - 158px) / 6);
  min-height: 65px;
  flex-direction: column;
  background: transparent;
  border-radius: 15px;
  text-align: center;
  margin-left: 35px;
  margin-right: 15px;
  transition: 0.5s ease;
  cursor: pointer;
  align-content: center;
  display: grid;
  justify-items: center;
}

.itemClicked:hover {
  transform: scale(0.9);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
}

.itemNotClick:hover {
  transform: scale(0.9);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
}

.itemMobileClicked {
  height: 10%;
  max-height: 50px;
  width: 90%;
  margin: auto;
  flex-direction: column;
  background: #f7f7f7;
  /* display: -webkit-box; */
  transition: 0.5s ease;
  cursor: pointer;
  border-radius: 10px;
}

.itemMobileNotClick {
  height: 10%;
  max-height: 50px;
  width: 90%;
  margin: auto;
  flex-direction: column;
  background: transparent;
  /* display: -webkit-box; */
  transition: 0.5s ease;
  cursor: pointer;
}

.itemMobileClicked:hover {
  transform: scale(0.9);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
}

.itemMobileNotClick:hover {
  transform: scale(0.9);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
}

.iConItem {
  width: 25px;
  height: 25px;
  text-align: center;
}

.txtItem {
  height: 30px;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 1rem;
  line-height: 16px;
  text-align: center;
  color: #09b585;
}

.txtItemNotClick {
  height: 30px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 16px;
  text-align: center;
  color: white;
}

.txtItemMobile {
  /* height: 30px; */
  padding: 0px 20px;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 16px;
  color: #09b585;
}

.txtItemMobileNotClick {
  /* height: 30px; */
  padding: 0px 20px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 0.9rem;
  line-height: 16px;
  color: white;
}

.btnAdd {
  width: 40px;
  height: 40px;
  background: rgba(9, 181, 133, 0.2);
  border: 1.3px solid #38c39b;
  box-sizing: border-box;
  border-radius: 20px;
  justify-content: center;
  float: right;
}

.btnAddCompany {
  width: 40px;
  height: 40px;
  background: rgba(9, 181, 133, 0.2);
  border: 1.3px solid #38c39b;
  box-sizing: border-box;
  border-radius: 20px;
  justify-content: center;
  text-align: center;
  float: left;
}

.btn-success {
  background: #09b585;
  border-color: #09b585;
}

.btn-success:disabled {
  background: #0ac791;
  border-color: #0ac791;
}

.btn-success:hover {
  background: #0ac791;
  border-color: #0ac791;
}

.btn-danger.disabled:hover,
.btn-danger:disabled:hover {
  background-color: #e65252;
  border-color: #e65252;
}

.btn-warning.disabled:hover,
.btn-warning:disabled:hover {
  background-color: #fbe4a0;
  border-color: #fbe4a0;
}

.body-wrapper {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Right menu */
.dashboardRight {
  position: relative;
  background: white;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  height: 100vh;
  overflow: scroll;
}
.dashboardRightMobile {
  background: white;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

.rightMenu {
  position: relative;
  background: transparent;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  max-width: 350px;
  min-width: 350px;
}

.rightMenu .content-panel {
  padding-left: 10px !important;
  padding-right: 15px !important;
}

.rightMenuMobile .content-panel {
  padding-left: 10px !important;
  padding-right: 15px !important;
}

.tab-rightMenu {
  display: none;
}

@media (min-width: 768px) {
  .collapse-rightMenu {
    max-width: 0px;
    right: 0px;
    top: 0px;
    display: flex;
    background: white;
    z-index: 1;
  }

  .rightMenu .content-panel {
    border-left: 0px !important;
  }

  .tab-rightMenu {
    display: block;
    position: absolute;
    top: 40px;
    left: -26px;
    width: 27px;
    height: 30px;
    z-index: 1;
    padding: 1px;
    background: white;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: 1px gainsboro solid;
    border-right: 0px;
    display: grid;
    align-items: center;
    cursor: pointer;
    justify-content: center;
  }

  .tab-rightMenu i:before {
    font-size: 23px;
  }

  .tab-rightMenu:hover {
    color: #ffd651;
  }

  .rightMenu {
    border: 1px gainsboro solid;
  }

  .icon-rightMenu {
    width: 25px;
    height: 25px;
  }
}

@media (min-width: 1395px) {
  .collapse-rightMenu {
    position: relative;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .tab-rightMenu {
    top: 70px;
  }
}

@media (min-width: 768px) and (max-width: 1395px) {
  .collapse-rightMenu {
    position: absolute;
    margin-top: 60px;
  }

  .tab-rightMenu {
    opacity: 1 !important;
  }

  .rightMenu {
    background: white;
  }
}

.rightMenuMobile {
  background: white;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  overflow: auto;
}

/* Search company */
.company-base {
  width: 100%;
  color: white;
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
}

.company-base-mobile {
  width: 100%;
  color: white;
  /* padding: 10px; */
  text-align: center;
  justify-content: center;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100px;
}
.company-base .span {
  color: white;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.company-base-mobile span {
  padding: 0px 10px;
  white-space: nowrap;
}

.img-drop {
  border-radius: 50%;
  padding: 10px 7.5px;
  width: 30px;
  height: 30px;
}
.img-drop.hover {
  background: #f7f7f7 50%;
}
.img-collapse {
  width: 25px;
  height: 25px;
  margin-top: 15px;
  margin-bottom: 15px;
  justify-content: center;
  background-color: white;
  border-color: gainsboro;
  border-radius: 50%;
  border-style: groove;
  border-width: 1px;
  cursor: pointer;
  opacity: 0;
}

.collapse {
  position: relative;
  width: 26px;
  background: linear-gradient(90deg, #09b585 50%, #f7f7f7 50%);
}

.button:hover .img-collapse {
  background-color: #f8da75;
  border-color: #f8da75;
  opacity: 1;
}

.button {
  cursor: pointer;
  width: 27px;
  position: relative;
}

.badge {
  width: auto;
}

.badge.status {
  width: 80px;
}

.bg-grey {
  background: rgb(145, 150, 150);
  color: white;
}

.bg-yellow {
  background: #ffd651;
  color: white;
}

.bg-green {
  background: #09b585;
  color: white;
}

.bg-red {
  background: rgb(226, 119, 92);
  color: white;
}

.bg-blue {
  background: rgb(92, 139, 226);
  color: white;
}

.bg-pink {
  background: rgb(226, 92, 215);
  color: white;
}

.lock {
  position: absolute;
  right: 10px;
  top: -1px;
}

.layout-search {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 10px;
  text-align: center;
  justify-content: center;
  background: white;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.layout-search .text {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 5px;
}
.txt-recent {
  width: 100%;
  text-align: left;
  padding-left: 10px;
  font-size: 11px;
  font-weight: bold;
  color: #999999;
}
.layout-search .text .txt-view-all {
  width: 100%;
  text-align: right;
  padding-right: 10px;
  font-size: 11px;
  font-weight: 500;
  color: #09b585;
}
.layout-search .text .txt-view-all:hover {
  color: #07926b;
  cursor: pointer;
}
.layout-search .item-campany {
  display: flex;
  flex-direction: row;
  text-align: left;
  margin-top: 10px;
  padding: 5px;
}
.layout-search .item-campany .avartar {
  width: 35px;
  min-width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  background: #09b585;
  color: white;
  font-size: 20px;
  font-weight: 500;
}
.layout-search .item-campany .txt {
  margin-left: 10px;
}
.layout-search .item-campany .title {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #3f3f3f;
}
.layout-search .item-campany .discription {
  font-weight: normal;
  font-size: 11px;
  line-height: 12px;
  color: #999999;
}
.line {
  width: 100%;
  height: 1.5px;
  background: #e0e0e0;
}
.layout-search {
  margin: 0px;
  margin-top: 10px;
}

.create-company {
  width: 100%;
  margin-top: 0px;
}
.txtCreate {
  width: 100%;
  align-items: center;
  height: 35px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
  color: #3f3f3f;
  display: flex;
  padding-left: 5px;
  padding-right: 5px;
}

.item-campany:hover {
  background: rgba(18, 95, 142, 0.075);
}

.layout-search-mobile .create-company:hover {
  background: rgba(18, 95, 142, 0.075);
}

.layout-search .create-company:hover {
  background: rgba(18, 95, 142, 0.075);
}

.layout-search-mobile {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  text-align: center;
  justify-content: center;
  background: white;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0px 0px 5px 1px darkgray;
}

.layout-search-mobile .text {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 5px;
}
.layout-search-mobile .text .txt-recent {
  width: 100%;
  text-align: left;
  padding-left: 10px;
  font-size: 11px;
  font-weight: bold;
  color: #999999;
}
.layout-search-mobile .text .txt-view-all {
  width: 100%;
  text-align: right;
  padding-right: 10px;
  font-size: 11px;
  font-weight: 500;
  color: #09b585;
}
.layout-search-mobile .item-campany {
  display: flex;
  flex-direction: row;
  text-align: left;
  margin-top: 10px;
  padding: 5px;
}
.layout-search-mobile .item-campany .avartar {
  width: 35px;
  min-width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  background: #09b585;
  color: white;
  font-size: 20px;
  font-weight: 500;
}
.layout-search-mobile .item-campany .txt {
  margin-left: 10px;
}
.layout-search-mobile .item-campany .title {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #3f3f3f;
}
.layout-search-mobile .item-campany .discription {
  font-weight: normal;
  font-size: 11px;
  line-height: 12px;
  color: #999999;
}
.layout-search-mobile .line {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin: 0px;
  margin-top: 10px;
}

.layout-search-mobile .create-company {
  width: 100%;
  margin-top: 0px;
  text-align: center;
}
.layout-search-mobile .create-company .txtCreate {
  width: 100%;
  align-items: center;
  height: 35px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
  color: #3f3f3f;
  display: flex;
  padding-left: 5px;
  padding-right: 5px;
}

/* Search */
.searchbar {
  display: flex;
  margin-bottom: auto;
  margin-top: auto;
  height: 40px;
  background-color: #eaeaea;
  border-radius: 30px;
  padding: 5px;
  margin-top: 10px;
}

.search_input {
  width: 100%;
  color: #3f3f3f;
  border: 0;
  outline: 0;
  background: none;
  caret-color: transparent;
  line-height: 30px;
  padding: 0 10px;
  caret-color: red;
  transition: width 0.4s linear;
}

.searchbar:hover > .search_input {
  width: 100%;
  padding: 0 10px;
  caret-color: red;
  transition: width 0.4s linear;
}

.searchbar:hover > .search_icon {
  background: #09b585;
  color: white;
}

.search_icon {
  height: 30px;
  width: 30px;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #09b585;
  font-size: 18px;
  background: white;
  text-decoration: none;
}

/* People */
.btnedit {
  /* display: flex; */
  width: 25px;
  height: 25px;
  justify-content: center;
  background: #f7f7f7;
  border-radius: 5px;
  align-items: center;
  text-align: center;
}
.iconedit {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  margin-bottom: 2px;
  align-items: center;
  color: white;
}
.dashboard_item_people {
  background: white;
  padding-left: 5px;
  padding-top: 5px;
  margin-left: 0px;
  margin-right: 0px;
}

.dashboard_item_people:hover {
  background: rgba(18, 95, 142, 0.075);
}

.dashboard_item_people .btnedit {
  position: absolute;
  margin-top: 20px;
  right: 25px;
  width: 30px;
  height: 30px;
  justify-content: center;
  background: #f7f7f7;
  border-radius: 5px;
  text-align: center;
}
.dashboard_item_people .body {
  height: 60px;
  display: flex;
  flex-direction: row;
}
.dashboard_item_people .imgavatar {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-right: 10px;
}
.dashboard_item_people .cnt {
  text-align: left;
}
.dashboard_item_people .title {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
}
.dashboard_item_people .discription {
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
}
.dashboard_item_people .fulltime {
  color: #09b585;
  font-size: 11px;
  font-weight: 500;
}
.dashboard_item_people .line {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin: 0px;
}
/* Timesheet */
.content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.contentRight {
  display: flex;
  flex-direction: column;
}

/* Sick */
.bgSick {
  position: relative;
  height: 180px;
  display: flex;
  flex-direction: row;
  background: #6554e0;
  text-align: left;
  border-radius: 15px;
  padding-top: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.badge-sick {
  background: #6554e0;
  border-color: #6554e0;
  color: white !important;
}

.imgSick {
  width: 140px;
  height: 150px;
  border-bottom-left-radius: 15px;
  margin-top: 10px;
}

.contentSick {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 10px;
}
.txtTitleSick {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 10px;
  text-align: right;
  color: white;
  margin-top: 25px;
}
.txtContentSick {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  color: white;
  margin-top: 10px;
}
/* AnnualLeave */

.bgAnnualLeave {
  position: relative;
  height: 180px;
  display: flex;
  flex-direction: row-reverse;
  background: #ffd651;
  text-align: left;
  border-radius: 15px;
}

.badge-annual {
  background: #ffd651;
  border-color: #ffd651;
  color: white !important;
}

.imgAnnualLeave {
  position: absolute;
  margin-top: 40px;
  margin-left: 10px;
  width: 140px;
  height: 140px;
}

.contentAnnualLeave {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.txtTitleAnual {
  width: 100%;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 10px;
  text-align: left;
  color: #3f3f3f;
  margin-top: 25px;
}
.txtContentAnual {
  width: 80%;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  text-align: left;
  color: #3f3f3f;
  margin-top: 10px;
}
.btnCreateAnnual {
  width: 40%;
  height: 30px;
  background: #6554e0;
  border-radius: 10px;
}
/* .btn:hover  {
  background: #8c8cd9;
  border-color: #8c8cd9;
} */
.imgcircle {
  width: 100px;
  height: 100px;
}
.btnCreate {
  position: absolute;
  width: 40%;
  height: 30px;
  right: 5%;
  margin-top: 120px;
  background: #ffd85a;
  border-radius: 10px;
}

/* Pagination */

.bgPagination {
  position: absolute;
  display: flex;
  left: 30%;
  width: 60%;
  margin-top: 30px;
}

.itemPagination {
  background: #ecf0f4;
}

ul.itemPagination {
  width: 100%;
  justify-content: center;
  border-radius: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

div.itemPagination {
  padding-top: 12px;
  border-radius: 50px;
}

.bgClick {
  width: 40px;
  height: 40px;
  background: #09b585;
  border-radius: 5px;
  text-align: center;
  justify-content: center;
  padding-top: 7px;
  color: #ecf0f4;
  cursor: context-menu;
}
.bgNotClick {
  width: 50px;
  height: 40px;
  justify-content: center;
  padding-top: 7px;
  text-align: center;
  background: #ecf0f4;
  cursor: pointer;
}

.bgNotClick:hover {
  color: #09b585;
}

div.bgNotClick:hover {
  background: #09b585;
  border: white;
}

#img-left {
  width: 18px;
  height: 18px;
  margin: auto;
  background: url("../img/outline_chevron_left_black_18dp.png");
}

div.bgNotClick:hover #img-left {
  background: url("../img/outline_chevron_left_white_18dp.png");
}

#img-right {
  width: 18px;
  height: 18px;
  margin: auto;
  background: url("../img/outline_chevron_right_black_18dp.png");
}

div.bgNotClick:hover #img-right {
  background: url("../img/outline_chevron_right_white_18dp.png");
}

.previous {
  background: #ecf0f4;
}

/* Dashboard */
.topHeader {
  height: 200px;
  display: flex;
  flex-direction: row;
  background: #ecf0f4;
  border-radius: 20px;
}
.topContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: left;
  background: transparent;
  padding-top: 30px;
  padding-left: 15px;
}
.topContent .name {
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 46px;
  color: #453c9e;
}
.topContent .discriptions {
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 150%;
  font-weight: 500;
  color: #3f3f3f;
}
.topContent .btnCreateAccount {
  width: 130px;
  height: 30px;
  background: #6554e0;
  border-radius: 10px;
  color: white;
  align-items: center;
  font-weight: 500;
}
.topHeader .imgLeft {
  position: relative;
  top: -30px;
  left: 1%;
  width: 250px;
  height: 240px;
}

.topHeader .imgRight {
  position: absolute;
  right: 10%;
  width: 70px;
  height: 200px;
}

.boxImgRight {
  margin-left: 30px;
  width: 45%;
}

.chart {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 30px;
}
.chart .doughnut {
  width: 40%;
  max-width: 500px;
}
.chart .bar {
  width: 60%;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .chart {
    display: block;
  }
  .chart .doughnut {
    width: 350px;
    margin: auto;
    margin-bottom: 20px;
  }
  .chart .bar {
    width: 350px;
    height: 350px;
    margin: auto;
  }
}

@media (max-width: 660px) {
  .boxImgRight {
    display: none;
  }

  .imgRight {
    display: none;
  }
}

@media (max-width: 500px) {
  .imgLeft {
    display: none;
  }
}

.chart .topIncome {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 42px;
  color: #3f3f3f;
}

/* Popup Employye */
.headerimg {
  width: 100%;
  height: 130px;
  background: #5f49a7;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  /* background-image: url(/assets/img/bg_popup.png); */
}

.img {
  margin-top: 30px;
  height: 120px;
  width: 120px;
  background: #90bcdd;
  border-radius: 50%;
}

.title {
  font-weight: bold;
  font-size: 25px;
  line-height: 42px;
  color: #3f3f3f;
}

.txtSend {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #6554e0;
}

/* Header */
.title {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.txt-title {
  font-style: normal;
  font-weight: bold;
  font-size: 1.35rem;
  margin-left: 10px;
  color: white;
  margin-right: 20px;
}
.icon-run-payroll {
  width: 30px;
  height: 20px;
  margin-bottom: 5px;
}

.btn-new {
  background: #6554e0;
  border-color: #6554e0;
  color: white !important;
}

.load {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.companies {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
.companies .text {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-left: 10px;
}
.companies .blu {
  color: #377dff;
}
.companies .gray {
  color: #999999;
}

.group {
  margin-top: 10px;
}

.group-left {
  width: 50%;
  padding-right: 10px;
}
.group-right {
  width: 50%;
  padding-left: 10px;
}

.value-input {
  display: flex;
  width: 85%;
  color: #3f3f3f;
  border: 0;
  outline: 0;
  background: none;
  caret-color: transparent;
  line-height: 30px;
  font-size: 13px;
  caret-color: red;
  transition: width 0.4s linear;
  align-items: center;
  justify-content: center;
}

.unit {
  display: flex;
  width: 15%;
  font-size: 15px;
  line-height: 14px;
  color: #999999;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.line-input {
  width: 100%;
  height: 1.5px;
  background: #dddcde;
}
.text-name {
  display: flex;
  font-size: 12px;
  line-height: 14px;
  color: #999999;
  align-items: center;
  margin-right: 5px;
  justify-content: center;
}
.right-menu {
  max-width: 550px;
}
.user-title:hover {
  color: #047bf8;
}
.disable-funtion:hover::after {
  content: "This feature is temporarily unavailable";
  z-index: 10000;
  margin-top: -30px;
}

.disabled:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.pagination {
  justify-content: center;
  text-align: center;
}
.format-input {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.thien {
  background: tomato;
}

th {
  cursor: default;
  opacity: 0.6;
}

.sort {
  cursor: pointer;
  white-space: nowrap;
}

.sort i {
  margin-left: 3px;
}

.sort:hover {
  color: #2a7e66 !important;
}

.icon-sort {
  font-size: smaller;
}

.icon-sort-up {
  font-size: smaller;
  color: #09b585;
}

.icon-sort-down {
  font-size: smaller;
  color: #09b585;
}

.sort:hover .icon-sort {
  color: #2a7e66;
}

.sort:hover .icon-sort-up {
  color: #2a7e66;
}

.sort:hover .icon-sort-down {
  color: #2a7e66;
}
input.disabled-address {
  pointer-events: none;
  color: #aaa;
  background: #f5f5f5;
}

.date-picker .mx-input-wrapper .mx-input {
  background-color: white;
  font-weight: 300;
  font-family: "Avenir Next W01", "Proxima Nova W01", "Rubik", -apple-system,
    system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  display: block;
  width: 100%;
  height: 37.6px;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid #dde2ec;
  border-radius: 4px;
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}

.date-picker .mx-input-wrapper .mx-input:focus {
  border-color: #61a534;
}

.box-id {
  background: #09b585;
  margin-bottom: 10px;
  margin-left: 20px;
  padding: 10px;
  width: max-content;
  border-radius: 5px;
  cursor: default;
}

.is-invalid fieldset,
.date-picker.is-invalid .mx-input {
  border-color: red !important;
}

select.form-control {
  background: #fff
    url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 5L0 2h4z'/%3E%3C/svg%3E")
    no-repeat right 0.75rem center;
  background-size: 8px 12px;
}

.vue-html2pdf .layout-container {
  opacity: 0;
}
.vue-html2pdf .pdf-preview {
  width: 100% !important;
  height: 100% !important;
  top: 62px !important;
}
.vue-html2pdf button {
  display: none !important;
}

.company-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #00b780;
  text-align: left;
  font-weight: 500;
}
.company-discription {
  font-weight: normal;
  font-size: 10px;
  line-height: 18px;
  color: #00b780;
  text-align: left;
}
.show-all-company {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  color: #3f3f3f;
  padding: 7 15 7 15;
  text-align: center;
}

.show-all-company:hover {
  background: rgba(18, 95, 142, 0.075);
}

.text-create-all {
  width: 100%;
  align-items: center;
  height: 35px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
  color: #3f3f3f;
  display: flex;
  text-align: center;
  padding: 10px 5px 10px 5px !important;
}

.show-Feedback {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  color: #3f3f3f;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 5px;
  text-align: center;
}

.show-Feedback:hover {
  background: rgba(18, 95, 142, 0.075);
}

.btn-feedback {
  width: 100%;
  align-items: center;
  height: 50px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
  color: #3f3f3f;
  display: flex;
  text-align: center;
  padding: 10px;
}

.emoji-feedback {
  width: 25px;
  margin-right: 20px;
  cursor: pointer;
  opacity: 0.5;
}

.emoji-feedback.active {
  opacity: 1;
}

.btn-file {
  color: #fff !important;
  background-color: #6554e0;
  border-color: #6554e0;
  position: absolute;
  cursor: pointer;
  left: 17px;
}

.input-file {
  display: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.v-input--selection-controls__ripple {
  left: -10px !important;
}

.el-autocomplete.form-control {
  padding: 0px;
}

.form-control .el-input__inner {
  width: 100% !important;
  border: 0px;
  padding-left: 45px;
  height: 35px;
}

.flag-input {
  margin: 0px !important;
  position: absolute;
  z-index: 1;
  left: 5px;
  top: 25px;
}

.icon-menu:hover {
  color: dodgerblue !important;
  background-color: rgb(164, 199, 185) !important;
}

.box-title:hover::after {
  text-align: center;
  position: absolute !important;
  font-size: 12px;
  padding: 5px 7px;
  justify-content: center;
  align-items: center;
  background-color: #122442 !important;
  color: white !important;
  opacity: 0.7;
  font-family: Arial;
  letter-spacing: 0px;
  border-radius: 5px !important;
  cursor: not-allowed;
  pointer-events: none;
  text-transform: initial;
  transform: none !important;
  line-height: normal;
  z-index: 1;
}

.notify:hover::after {
  content: "Notifications";
  top: 50px;
}

.feedback:hover::after {
  content: "Feedback";
  top: 50px;
}

.help:hover::after {
  content: "Help";
  top: 50px;
}

.close-hover:hover::after {
  content: "Close page";
  top: 40px;
  left: -4px;
}

.edit-employe:hover::after {
  content: "Edit Employee Details";
  top: 50px;
}

.configure-columns:hover::after {
  content: "Configure columns";
  top: 35px;
  right: -35px;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: transparent;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: transparent;
  color: white !important;
  opacity: 0.5;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: var(--pale-purple);
  color: white;
}

.disable-scrollbars::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* Chrome/Safari/Webkit */
}

.disable-scrollbars {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.v-text-field--outlined .v-label {
  opacity: 0.5;
}

.v-text-field--outlined .v-label--active {
  opacity: 1;
}

.btn-manually:hover::after {
  content: "Manually input all informations";
  margin-top: -30px;
  margin-left: -174px;
}

.btn-invite:hover::after {
  content: "Ask your employee to fill out information";
  margin-top: -30px;
  margin-left: -185px;
}

.notices .toast {
  margin: 3em 0 !important;
}

.yellow--text.mdi-star:hover {
  color: #e7d213 !important;
}

.starred:hover::after {
  content: "Remove from starred";
  margin-top: 30px;
  margin-left: -50px;
  z-index: 2;
}

.gray--text.mdi-star:hover {
  color: rgba(219, 221, 67, 0.795) !important;
}

.recent:hover::after {
  content: "Add to starred";
  width: 100px;
  margin-top: 30px;
  margin-left: -60px;
}

.not-padding {
  padding: 0px !important;
}

.not-margin {
  margin: 0px !important;
}

.image-swal {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.swal2-title {
  font-size: 1.5rem !important;
  font-weight: normal !important;
  color: #000 !important;
  margin: 20px 10px !important;
}

.swal2-popup {
  width: 400px !important;
}

.list-img-feedback {
  margin: 15px 15px 0px 0px;
}

.img-feedback {
  width: 120px;
  height: 120px;
  border-radius: 10px;
}

/*table design for the home page*/

.table.table-striped thead th {
  border: 0;
  text-transform: capitalize;
  font-size: 15px;
  color: var(--cyrus-green);
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0.3px;
}

.table.table-striped tbody td {
  border: 0;
  font-size: 13px;
  letter-spacing: 0.26px;
  color: #3f3f3f;
}

/* pay run block style*/
.pay-run-section .pay-run-header {
  display: flex;
  justify-content: space-between;
}

/* new task menu style */
.pay-run-section .v-list {
  padding: 0;
  background-color: #09b585;
}

.pay-run-section .v-list .v-list-item {
  min-height: 30px;
}

.pay-run-section .v-list .v-list-item .v-list-item__title {
  font-size: 12px;
  color: #fff;
}

.pay-roll-top-header-heading {
  color: var(--cyrus-green);
}

.pay-run-today-text {
  color: #09b585;
}

.pay-run-overdue-text {
  color: #ff5722;
}

.calender-event-dot-margin {
  margin-top: 5px !important;
  background-color: #b0c5d9 !important;
  border-color: #b0c5d9 !important;
}
@media only screen and (max-width: 768px) and (min-width: 320px) {
  .notify:hover::after,
  .feedback:hover::after,
  .help:hover::after {
    top: 40px;
    position: absolute;
    font-size: 10px;
  }
}
