@import "../css/font-icon.css?v1";

.main-container {
  position: relative;
  min-height: 100vh;
}

/* -------------login------------ */
.login-bg {
  width: 100%;
  min-height: 100vh;
  background: url(../images/login-bg.jpg) no-repeat center;
  background-size: cover;
}

.container {
  margin: auto;
  max-width: 1240px;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.login-box {
  width: 470px;
  height: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  display: flex;
  flex-direction: column;
}

.login-box>p {
  margin: 25px 0 30px;
  font-weight: 400;
  font-size: 14px;
  color: var(--deep-grey);
}

.login-title {
  margin-bottom: 15px;
}

.login-title h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 36px;
  color: #23262d;
  margin-bottom: 0;
}

.login-title p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--light-grey);
}

.reset-password-form #timer {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--light-grey);
}

.input_box {
  position: relative;
}

.form-icon {
  position: absolute;
  top: 13px;
  right: 20px;
}

.input-item {
  width: 100%;
  border: 1px solid rgba(159, 159, 159, 0.3);
  border-radius: 4px;
  height: 45px;
  padding: 13px 45px 13px 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: var(--deep-black);
}

.input-item::-webkit-input-placeholder {
  /* Edge */
  color: var(--light-grey);
}

.input-item:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--light-grey);
}

.input-item::placeholder {
  color: var(--light-grey);
}

.input-item:focus {
  border: 1px solid #009181;
}

.login-form ul .input_box {
  margin-top: 20px;
}

/* .login-form .input_box:first-child .input-item{
        background-image: url('../images/email-icon.svg');
    }
    .login-form .input_box:nth-child(2) .input-item{
        background-image: url('../images/lock-icon.svg');
    }
    .login-form .input_box:first-child .input-item,
    .login-form .input_box:nth-child(2) .input-item{
        background-repeat: no-repeat;
        background-position: right 20px center ;
    } */
.recover {
  margin-top: 15px;
  text-align: end;
}

.recover a {
  color: var(--main-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.submit-box {
  margin-top: 30px;
}

.login-submit {
  width: 100%;
  min-height: 40px;
}

/* .login-submit .gradient-button {
        min-height: 40px;
    } */
.account {
  text-align: center;
  margin-top: 40px;
}

.account p {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--deep-black);
}

.account a {
  color: var(--main-color);
  margin-left: 5px;
}

.login-footer {
  text-align: center;
  margin-top: 90px;
}

.login-submit {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-footer li,
.login-footer li a {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--light-grey);
}

/*--------------------Side bar---------------------------- */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  z-index: 1;
  transition: all 0.4s ease-in;
}

.side-menu-wrapper {
  background-color: var(--white-color);
  height: 100%;
  width: 100%;
  transition: all 0.4s ease-in;
}

.side-header {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 18px;
  background-color: #ffffff;

}

.half-logo {
  display: none;
}

.avatar-box {
  width: 86%;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f6f6f6;
  margin: 0 18px;
}

.profile-pic {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.8s all ease-in;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-details h4 {
  padding-top: 5px;
  color: var(--deep-grey);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  margin: 0;
}

.profile-details p {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: var(--light-grey);
}

.card-details h4 {
  padding-top: 5px;
  color: var(--deep-grey);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  margin: 0;
}

.card-details p {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: var(--light-grey);
}

.sidebar-menu {
  height: calc(100% - 220px);
  padding: 16px 18px;
  overflow-y: auto;
}

.side-menu.side-menu-hover .sidebar-menu {
  height: calc(100% - 131px);
}

.side-menu.side-menu-hover.sisdebar-hover .sidebar-menu {
  height: calc(100% - 220px);
}

.sidebar-menu::-webkit-scrollbar {
  display: none;
}

.menu_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none !important;
}

.icon_bx {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_bx span {
  font-size: 18px;
  margin-right: 10px;
  color: var(--menu-color);
  transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.fill-icon {
  display: none;
}

.menu_item {
  margin: 3px 0;
}

.menu_link>div {
  padding: 15px;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.menu_link.open-menu>div {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.menu_item.active .menu_link>div {
  background: var(--gradient-bg) !important;
  background: linear-gradient(93.66deg, #ffffff 0.75%, #ffffff 115.87%);
  transition: background 0.4s;
  -webkit-transition: background 0.4s;
  -moz-transition: background 0.4s;
}

.menu_item.active .fill-icon {
  display: block;
  color: var(--white-color);
}

.menu_item.active .line-icon {
  display: none;
}

.menu_link .link-text {
  color: var(--menu-color);
  flex-grow: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.menu_item .icon_red span {
  color: #cc5f5f;
}

.drop-arrow span {
  font-size: 6px;
  color: var(--menu-color);
}

.menu_item.active .link-text,
.menu_item.active .icon_bx span,
.menu_item:hover .link-text,
.menu_item:hover .icon_bx span,
.menu_item:hover .drop-arrow span,
.menu_item:hover .icon-link,
.menu_item.active .drop-arrow span,
.menu_link.open-menu .link-text,
.menu_link.open-menu .drop-arrow span,
.menu_link.open-menu .icon_bx span {
  color: var(--white-color);
}

.menu_link.open-menu>div {
  background: linear-gradient(93.66deg, #00a293 0.75%, #17edd9 115.87%);
}

.drop-arrow {
  transition: all 0.3s ease-in;
  -webkit-transition: rotate(180deg);
  -moz-transition: rotate(180deg);
  -o-transition: rotate(180deg);
  -ms-transition: rotate(180deg);
}

.menu_link.open-menu .drop-arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu_item:hover .menu_link>div {
  background: linear-gradient(93.66deg, #00a293 0.75%, #17edd9 115.87%);
}

.submenu {
  display: none;
  background-color: var(--body-bg-color);
  padding: 20px 20px 20px 43px;
  border-radius: 0px 0px 8px 8px;
}

.sub-menu-item:not(:last-child) {
  padding-bottom: 10px;
}

.sub-menu-item a {
  color: var(--menu-color);
  font-size: 14px;
}

.sub-menu-item.active a {
  color: var(--main-color);
}

.sub-menu-item:hover a {
  color: var(--main-color);
}

.icon-link {
  margin-left: 10px;
  color: var(--menu-color);
}

.side-bar-close {
  display: none;
}

.side-bar-close span {
  color: var(--light-grey);
}

.side-bar-close span:hover {
  color: var(--main-color);
}

/*--------------------------------- small side bar-------------------------- */
.size-reduce .side-menu {
  transform: translateX(-71%);
}

.size-reduce .profile-pic {
  width: 40px;
  height: 40px;
}

.size-reduce .avatar-box {
  height: auto;
  padding: 15px 0;
  align-items: flex-end;
}

.size-reduce .profile-details,
.size-reduce .drop-arrow,
.size-reduce .menu_link .link-text {
  display: none !important;
}

.size-reduce .icon_bx span {
  margin-right: 0;
}

.size-reduce .menu_link {
  flex-direction: row-reverse;
}

.size-reduce .menu_link>div {
  width: auto;
}

.size-reduce .full-logo {
  display: none;
}

.size-reduce .half-logo {
  display: block;
}

.size-reduce .side-header {
  padding-left: 0;
  justify-content: flex-end;
}

.size-reduce .open-menu+.submenu {
  display: none !important;
}

.size-reduce .sidebar-hover .side-header {
  justify-content: flex-start;
  padding-left: 10px;
  padding-right: 18px;
}

/*------side menu hover----------- */
.size-reduce .sidebar-hover.side-menu {
  transform: translateX(0%);
}

.sidebar-hover .side-menu-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  box-shadow: 3px 5px 10px 2px #e6e6e6;
}

.size-reduce .sidebar-hover .avatar-box {
  height: 160px;
  padding: 0;
  align-items: center;
}

.size-reduce .sidebar-hover .profile-pic {
  width: 76px;
  height: 76px;
}

.size-reduce .sidebar-hover .profile-details {
  display: block !important;
}

.size-reduce .sidebar-hover .menu_link {
  flex-direction: row;
}

.size-reduce .sidebar-hover .menu_link>div {
  width: 100%;
}

.sidebar-hover .drop-arrow,
.sidebar-hover .menu_link .link-text {
  display: block !important;
}

.size-reduce .sidebar-hover .icon_bx span {
  margin-right: 10px;
}

.size-reduce .sidebar-hover .open-menu+.submenu {
  display: block !important;
}

.size-reduce .sidebar-hover .full-logo {
  display: block;
}

.size-reduce .sidebar-hover .half-logo {
  display: none;
}

/*------------------------ main panel------------------ */
.main-panel {
  position: relative;
  float: right;
  width: 100%;
  min-height: 100vh;
  background-color: var(--body-bg-color);
  z-index: 0;
}

/*------------------------ header------------------ */
.header {
  width: calc(100% - 260px);
  height: 60px;
  margin: 0 20px 30px 260px;
  background-color: var(--white-color);
  padding: 0 20px 0 20px;
  position: fixed;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f4f5fa;
  transition: all 0.4s ease-in;
}

.toggle-btn span,
.hamburger-btn span {
  cursor: pointer;
  color: #babdc0;
}

.hamburger-btn {
  display: none;
}

.toggle-btn span:hover {
  color: var(--main-color);
}

.profile-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-logo-wrapper {
  margin-left: 30px;
  display: none;
}

/*------------------------ notification------------ */
.notification-alert {
  display: none;
  position: absolute;
  max-width: 400px;
  top: 65px;
  right: 20px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  z-index: 9;
  height: 70vh;
  box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0.1);
}

.notification-alert.show {
  display: block;
}

.notification-alert .pop-body {
  height: 100%;
}

.notification-list-wrapper {
  height: calc(100% - 20px);
}

.notification-alert .notification-list {
  margin: 35px -20px 0 -20px;
  max-height: calc(100% - 70px);
  overflow-y: auto;
}

.notification-alert .notification-list::-webkit-scrollbar {
  display: none;
}

.notification-list>li {
  border-bottom: 1px solid #eaeaea;
  padding: 8px 12px;
}

.notification-alert .notification-list>li:first-child {
  border-top: 1px solid #eaeaea;
}

.notifi-info {
  margin-left: 20px;
  width: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.notifi-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
}

.notifi-info .alert-time {
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: var(--light-grey);
  padding-top: 5px;
  display: block;
}

.notifi-bottom a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--main-color);
}

.notifi-bottom a:hover {
  text-decoration: underline;
}

.notification-page .notifi-info {
  display: flex;
  justify-content: space-between;
}

.notification-page li:last-child {
  border-bottom: 0;
}

.notification-page li {
  padding: 8px 0px;
}

.notification-page {
  max-height: calc(100vh - 149px);
  overflow: auto;
}

.notification-page::-webkit-scrollbar {
  display: none;
}

.alert_bx,
.msg_bx {
  margin-right: 20px;
}

.profile-info>div {
  position: relative;
  cursor: pointer;
}

.notification {
  position: absolute;
  top: -60%;
  left: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 22px;
  height: 22px;
  padding: 2px;
  border: 3px solid #f4fdff;
  border-radius: 500px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  z-index: 1;
  background-color: red;
  transition: transform 0.15s, background-color 0.5s;
}

.notify-close {
  color: #d6d6d6;
  cursor: pointer;
}

.notify-close:hover {
  color: var(--main-color);
}

.alert_bx,
.msg_bx {
  margin-right: 20px;
  min-width: 20px;
}

.profile-pop {
  display: none;
  position: absolute;
  min-width: 300px;
  top: 65px;
  right: 20px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  z-index: 9;
  height: auto;
  background-color: #ffffff;
  box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0.1);
}

.profile-pop.show {
  display: block;
}

.profile-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #d6d6d6;
  cursor: pointer;
}

.right-profile {
  padding: 10px;
}

.right-profile .avatar-box {
  height: auto;
  border-bottom: 0;
}

.right-profile>li {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  border-bottom: 1px solid #f6f6f6;
}

.right-profile>li a {
  color: var(--menu-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.right-profile>li a:hover {
  color: var(--main-color);
}

.right-profile>li:last-child {
  border-bottom: 0;
}

.right-profile .avatar-box {
  margin: 0;
  width: 100%;
}

/*-------------- toggle--------------*/
.size-reduce .header {
  width: calc(100% - 75px);
  margin: 0 20px 30px 75px;
}

.size-reduce .content {
  width: calc(100% - 115px);
  margin: 90px 20px 20px 95px;
}

/*------------------------End of header------------------ */
/*------------------------ content------------------ */
.content {
  width: calc(100% - 300px);
  margin: 90px 20px 20px 280px;
  transition: all 0.4s ease-in;
}

.content-title h4 {
  font-size: 17px;
  color: var(--deep-black);
}

.content-title p {
  color: var(--light-grey);
}

.main-contents {
  width: 100%;
}

/* ------post section-------------- */

.text-feild {
  flex-grow: 1;
  margin-left: 15px;
}

.text-feild h6 {
  margin: 0;
}

.text-feild span {
  color: var(--light-grey);
  font-weight: 300;
  font-size: 12px;
}

.write-box .text-feild textarea {
  border: none;
  padding: 7px 15px 0 0;
  height: 60px;
  resize: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--deep-black);
}

.text-feild textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--light-grey);
  opacity: 1;
  /* Firefox */
}

.text-feild textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--light-grey);
}

.text-feild textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--light-grey);
}

.write-box>div {
  padding-bottom: 10px;
}

.write-box:not(.posted-coments .write-box) {
  border-bottom: 1px solid #f7f7f7;
}

.write-box .text-para {
  flex-grow: 1;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.write-box .text-para p {
  margin-right: 20px;
  font-weight: 400;
  font-size: 14px;
  color: var(--deep-black);
}

.write-box .text-para a {
  color: var(--light-grey);
  font-weight: 400;
  font-size: 12px;
}

.write-box .text-para a:hover {
  color: var(--main-color);
  cursor: pointer;
}

.side-action .drop-parent {
  padding: 10px;
  padding-right: 0;
}

.post-info {
  padding-top: 10px;
}

.post-info h6 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
  margin-right: 20px;
}

.post-info span {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: var(--light-grey);
}

.post-info .post-action {
  margin-top: 0;
}

.post-info .post-action li {
  padding: 0 20px;
  margin-right: 0;
  position: relative;
}

.post-info .post-action .liked-list {
  display: none;
  min-width: 200px;
  position: absolute;
  background-color: #ffffff;
  top: 40px;
  left: 0;
  padding: 10px;
  -webkit-box-border-radius: 12px;
  -moz-box-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.post-info .post-action .liked-list::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 20%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 8px solid black;
  border-color: transparent transparent #ffffff #ffffff;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(136deg);
  -moz-transform: rotate(136deg);
  -o-transform: rotate(136deg);
  transform: rotate(136deg);
  -webkit-box-shadow: -2px 2px 5px 0 rgb(0 0 0 / 7%);
  box-shadow: -2px 2px 5px 0 rgb(0 0 0 / 8%);
  z-index: 1;
}

.liked-person-info {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.liked-person-info p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 14px;
  font-weight: 500;
  color: var(--deep-black);
}

.liked-person-info span {
  margin-top: 2px;
  font-size: 12px;
  line-height: 13px;
  color: var(--light-grey);
}

.post-info .post-action .liked-list ul {
  margin-top: -10px;
  margin-bottom: -10px;
  max-height: 210px;
  overflow: auto;
}

.post-info .post-action .liked-list ul::-webkit-scrollbar {
  display: none;
}

.post-info .post-action .liked-list li {
  all: unset;
  display: flex;
  padding: 10px 0;
}

.post-info .post-action .liked-list li~li {
  border-top: 1px solid #f7f7f7;
}

.post-info .post-action .post-type {
  font-size: 12px;
}

.post-info .post-action .post_btn span {
  color: var(--deep-black);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.post-info .post-time {
  position: relative;
}

.post-info .post-time:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--light-grey);
  border-radius: 50%;
  top: 50%;
  left: -10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post-action {
  display: flex;
  flex-grow: 1;
  margin-top: 10px;
}

.post-action li {
  margin-right: 40px;
  padding: 8px 18px;
}

.post-action li.bg-grey {
  background-color: #f1f1f1;
  border-radius: 8px;
}

.post_btn {
  cursor: pointer;
}

.post-disabled span {
  color: rgb(150, 149, 149);
}

.post-info .post-action .post_btn .icon-heart-line:hover,
.post-info .post-action .post_btn .icon-cmnt:hover {
  color: var(--main-color);
}

.post_btn span:first-child {
  margin-right: 10px;
  font-size: 18px;
}

.post_btn .like-red {
  display: none;
  font-size: 18px;
  margin-right: 10px;
}

.post_btn.liked .like-red {
  display: block;
}

.post_btn.liked .dis-like {
  display: none;
}

.post_btn .post-type {
  font-size: 14px;
  margin-right: 0;
}

.post-action .post-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}

.post-submit {
  padding: 6px 28px;
  background: var(--gradient-bg);
  border-radius: 8px;
  color: var(--white-color);
  font-weight: 500;
  font-size: 14px;
}

.posted-coments {
  height: 802px;
  overflow-y: hidden;
}

.posted-coments:hover {
  overflow-y: auto;
}

.posted-coments.hr-posts-section {
  max-height: 802px;
}

.posted-coments:hover::-webkit-scrollbar {
  display: none;
}

.posted-coments .card-boxes:last-child {
  margin-bottom: 0 !important;
}

.posted-coments .post-info {
  border-top: 1px solid #f7f7f7;
  margin-top: 15px;
}

/* .posted-coments .text-para {
    padding-bottom: 10px;
} */
.posted-coments .text-para p {
  font-weight: 400;
  font-size: 14px;
  color: var(--deep-black);
  margin-right: 15px;
  word-break: break-all;
}

.posted-coments .text-para>a:last-child {
  color: var(--light-grey);
  font-weight: 400;
  font-size: 12px;
}

.post-profile-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  margin-left: 15px;
}

.post-profile-details h6 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
  margin-right: 20px;
}

.post-profile-details .post-time {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: var(--light-grey);
}

.posted_media {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  position: relative;
}

.multiple-img {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 13px;
  width: 30px;
  height: 30px;
  background-color: #3a3a3a94;
  padding: 5px;
  border-radius: 100%;
}

.posted_media-wrapper.image .multiple-img {
  display: block;
}

.posted_media-wrapper {
  position: relative;
  margin-right: 20px;
  width: 20%;
  min-height: 140px;
  max-height: 140px;
  max-width: 215px;
}

.posted_media-wrapper>li {
  height: 100%;
}

.posted_media-wrapper>li a {
  height: 100%;
}

.circle_percent {
  width: 0.9em;
  height: 0.9em;
  min-width: 32px;
}

.percent_text::after {
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #00a293;
}

.posted-coments .text-para p {
  font-size: 14px;
}

.posted-coments .text-para p a:hover {
  color: var(--main-color);
}

.posted-content>li p a {
  color: #005eed;
}

.posted-coments .text-para p a {
  color: #005eed;
}

.posted-content>li p a:hover {
  color: var(--main-color);
}

.posted_media-wrapper .circle_percent {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.posted_media-wrapper.video-post .circle_percent {
  display: block;
}

.multiple-item-two,
.multiple-item-three {
  display: flex;
  align-items: stretch;
}

.multiple-item-two>li,
.multiple-item-three>li {
  width: 48%;
  margin: 0 1px;
}

.multiple-item-two .posted_media,
.multiple-item-two .thumb-img {
  height: 100%;
}

.multiple-item-two .posted_media {
  border-radius: 0;
}

.multiple-item-two>li:first-child .posted_media,
.multiple-item-three>li:first-child .posted_media {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.multiple-item-two>li:last-child .posted_media {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.multiple-item-three .posted_media {
  height: 49%;
  border-radius: 0;
}

.multiple-item-three>li:first-child .posted_media,
.multiple-item-three>li:first-child .posted_media img {
  height: 100%;
}

.multiple-item-three>li:last-child {
  margin: -1px 1px;
}

.multiple-item-three>li:last-child .posted_media {
  margin: 1.5px 0;
}

.multiple-item-three>li:last-child .posted_media:first-child {
  border-top-right-radius: 12px;
}

.multiple-item-three>li:last-child .posted_media:last-child {
  border-bottom-right-radius: 12px;
  position: relative;
}

.more-image-overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: calc(100% - 2px);
  top: 0;
  right: 0;
  background-color: rgba(68, 68, 68, 0.5);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}

.more-image .more-image-overlay {
  display: flex;
}

.multiple-item-three .circle_percent,
.multiple-item-two .circle_percent {
  width: 0.7em;
  height: 0.7em;
}

.multiple-item-three .percent_text::after,
.multiple-item-two .percent_text::after {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #00a293;
}

.post-details .post-action {
  margin: 0 -20px;
}

.posted-coments.no-post-found {
  background-color: #fff;
  border-radius: 11px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.posted-coments .no-post {
  display: none;
  color: var(--light-grey);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.posted-coments.no-post-found .no-post {
  display: block;
}

/*------------------------------------- post fancy box-------------------------------- */
.posted-details {
  width: 100%;
}

.posted-content {
  border-bottom: 1px solid #f7f7f7;
}

.posted-details .post-info {
  padding-top: 0;
  margin-left: 15px;
}

.posted-details p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--deep-black);
}

.posted-content>li~li {
  margin: 15px 0;
}

.posted-details .video-link {
  display: block;
  color: blue;
  text-decoration: underline;
}

.post-user-action {
  margin-top: 15px;
}

.post-user-action .pop-user-likes li {
  margin: 0 10px;
}

.post-user-action .pop-user-likes {
  margin: 0 -10px;
}

.users-comments {
  max-height: 320px;
  overflow-y: auto;
}

.users-comments::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.users-comments>li {
  padding-bottom: 15px;
}

.users-comments>li:last-child {
  padding-bottom: 0;
}

.users-comments>li~li {
  padding-top: 15px;
  border-top: 1px solid #f7f7f7;
}

.users-comments .side-action {
  margin-left: 15px;
}

.users-comments .post-info>.post-info {
  margin-left: 0;
}

.users-comments .post-info p {
  margin-bottom: 18px;
}

.comment-section {
  margin: 22px 0 20px 0;
}

.comment-section .text-feild {
  background-color: #f3f3f3;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  padding-right: 10px;
  overflow: visible;
}

.comment-section textarea {
  border: 0;
  background-color: #f3f3f3;
  resize: none;
  padding: 5px 10px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.tumbnail-wrapper {
  width: 100%;
  max-width: 560px;
  position: relative;
  overflow: hidden;
}

.tumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.posted-details .post-info .post-time:before {
  display: none;
}

.new-post {
  min-width: 600px;
  max-width: 600px;
}

.posts .pop-body {
  min-width: 740px;
}

#add-post .text-feild {
  margin-left: 0;
}

#add-post .text-feild textarea {
  min-height: 150px;
}

.upload__inputfile,
.video-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.upload__btn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  min-width: 116px;
  padding: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 26px;
  font-size: 14px;
}

.upload__btn:hover {
  background-color: unset;
  color: #4045ba;
  transition: all 0.3s ease;
}

.upload__btn-box {
  margin-bottom: 10px;
}

.upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.upload__img-box {
  width: 180px;
  padding: 10px;
}

.upload__img-wrap.max-size .upload__img-box {
  position: relative;
  overflow: hidden;
}

.upload__img-wrap.max-size .upload__img-box:last-child:after {
  content: attr(title);
  position: absolute;
  background-color: rgba(34, 34, 34, 0.5);
  width: 90%;
  height: 100%;
  top: 0;
  left: 10px;
  padding: 0 10px;
}

.upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
  color: #ffffff;
  font-size: 12px;
}

.img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  padding-bottom: 100%;
}

.vid-thumb {
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.vid-thumb.video-active {
  width: 310px;
}

.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.create-post {
  max-width: 740px;
  margin: 0 auto;
  max-height: 100vh;
  overflow: auto;
}

.create-post::-webkit-scrollbar {
  display: none;
}

.createpost-wrapper {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

.createpost-wrapper.active {
  display: flex;
}

#postSts {
  font-size: 14px;
  color: red;
  margin-bottom: 15px;
}

.posted-content .buttons button:before {
  font-size: 16px;
  width: 44px;
}

/*-------------- graph block---------- */
.graph-card-block {
  height: 370px;
}

.graph-top .SelectBox,
.leaves-works .SelectBox {
  padding: 8px;
  height: 30px;
  /* border: none !important; */
}

.leaves-works .SumoSelect,
.graph-card-block .SumoSelect {
  min-width: auto;
}

.leaves-works .SumoSelect .SelectBox,
.graph-card-block .SumoSelect .SelectBox {
  border: 0;
  font-weight: 500;
}

.leaves-works .SumoSelect .optWrapper,
.graph-card-block .SumoSelect .optWrapper {
  min-width: 150px;
  left: auto;
  right: 0;
}

.graph-top h4 {
  font-size: 17px;
  color: var(--deep-black);
}

.leaves-works .SumoSelect>.CaptionCont>label>i {
  z-index: 0;
}

/* .graph-top .select-field{
  width: 100%;
  height: 30px;
  color: var(--deep-black);
  border: 1px solid #EFF0F3;
  appearance: none;
  background-image: url('../images/arrow_down.png') ;
  background-repeat: no-repeat;
  background-position: 95% 50%;
}  */
.graph-body {
  height: calc(100% - 50px);
}

.graph-body>.d-flex {
  height: 100%;
}

.bar-chart {
  display: flex;
  justify-content: space-around;
}

.bar-chart>li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bar_outer {
  background: rgba(238, 240, 250, 1);
  box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  height: calc(100% - 36px);
  display: flex;
  align-items: flex-end;
  width: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  position: relative;
}

.bar_outer:hover {
  background: rgba(238, 240, 250, 1);
}

.bar_outer .bar-color,
.bar_outer .bar-inner-color {
  width: 100%;
  border-radius: 50px;
  display: block;
  opacity: 0.4;
  /* transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in; */
  position: absolute;
}

.bar_outer .bar-color {
  background: linear-gradient(180deg, #17edd9 0%, #00a293 100%);
}

.bar_outer .bar-inner-color {
  background: linear-gradient(180.21deg, #89b7fc 10.45%, #3686fe 98.6%);
  z-index: 1;
}

.bar_outer:hover .bar-color,
.bar_outer:hover .bar-inner-color {
  opacity: 1;
}

.bar-color:hover .graph-tooltip {
  display: block;
}

.bar-inner-color:hover .graph-tooltip {
  display: block;
}

.graph-month,
.percentage-left li {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--light-grey);
  padding-top: 20px;
  display: block;
}

.percentage-left li {
  padding-top: 0;
}

.percentage-left {
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 25px;
  overflow: hidden;
}

.graph-tooltip {
  display: none;
  position: absolute;
  bottom: 90%;
  right: 30%;
  width: 110px;
  height: auto;
  border-radius: 6px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.bar-chart li:first-child .graph-tooltip {
  right: auto;
  left: 30%;
  z-index: 9999;
}

.tooltip-top {
  background-color: #eef0fa;
  text-align: center;
  display: block;
  padding: 5px 20px;
}

.tooltip-top p {
  font-weight: 400;
  font-size: 10px;
}

.tooltip-body {
  text-align: center;
  padding: 10px 5px;
  display: block;
}

.bar-inner-color .tooltip-top {
  background-color: #89b7fc;
}

/*-------------- leave chart-------- */
.leave-chart .char-body {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pie-chart {
  width: 350px;
  position: relative;
  z-index: 5;
}

.graph-indicators {
  margin-top: 20px;
  max-height: 100px;
  overflow: auto;
}

.graph-indicators::-webkit-scrollbar {
  display: none;
}

.graph-indicators li:not(:nth-child(3n)) {
  margin-bottom: 10px;
}

.graph-indicators li {
  padding-left: 30px;
  color: #8b8d95;
}

.graph-indicators li span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

/* --------------------------------------- */
/* -------------------dashboard table-------------- */
.table-card-block {
  background-color: var(--white-color);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.table-card-visible {
  overflow: visible;
}

.table-card-block table {
  -webkit-border-radius: 0 0 12px 12px;
  -moz-border-radius: 0 0 12px 12px;
  -o-border-radius: 0 0 12px 12px;
  border-radius: 0 0 12px 12px;
}

.table-card-visible tbody:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.table-top a {
  text-decoration: underline;
  font-size: 13px;
}

.table-top h4 {
  font-size: 16px;
  color: var(--deep-black);
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 0;
}

.table-top h3 {
  font-size: 18px;
  color: var(--deep-black);
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 0;
}

.table-top>p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--light-grey);
  margin-top: 2px;
}

.table-top>div>*,
.table-top>.table-form>* {
  margin: 0 10px;
}

.table-top>div,
.table-top>.table-form {
  margin: 0 -10px;
}

.table-top-icon span {
  font-size: 25px;
}

.table-top-icon a {
  text-decoration: none;
  margin-left: 0;
}

.table-top .date-selector,
.table-top .month-selector {
  font-size: 14px;
  color: var(--deep-black);
  background-image: url("../images/calender_icon.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding: 0 10px;
  min-width: 150px;
  width: 150px;
  min-height: 35px;
}

.table-top .date-selector::placeholder {
  color: var(--deep-black);
  opacity: 1;
  /* Firefox */
}

.table-top .date-selector:-ms-input-placeholder {
  color: var(--deep-black);
}

.table-top .date-selector::-ms-input-placeholder {
  color: var(--deep-black);
}

.table-top.extra h4 {
  padding-bottom: 10px;
}

.table-card-block .table_wrapper {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.table-dashboard {
  height: 407px;
  overflow-y: auto;
}

.dashboard-home .table-dashboard table td {
  white-space: nowrap;
}

.table-hr-dashboard {
  max-height: 407px;
  overflow-y: auto;
}

.table_wrapper.full_table_wrapper {
  height: calc(100% - 100px);
  overflow-y: auto;
}

.table_wrapper.full_table_wrapper::-webkit-scrollbar {
  display: none;
}

.corporate-video-list .table_wrapper {
  height: calc(100vh - 229px);
  overflow-y: auto;
}

.job-description-list .table_wrapper {
  height: calc(100vh - 249px);
  overflow-y: auto;
}

.job-description-list table tr {
  border-bottom: 1px solid #eaeaea;
}

.table_wrapper .table_head {
  position: sticky;
  top: 1px;
  right: 0;
  z-index: 10;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1px #f3f3f9;
  -moz-box-shadow: 0 0 0 1px #f3f3f9;
  -o-box-shadow: 0 0 0 1px #f3f3f9;
  box-shadow: 0 0 0 1px #f3f3f9;
}

.table_wrapper .table_head td {
  padding: 15px 20px;
  vertical-align: top;
}

.table_wrapper::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.expand_dot {
  cursor: pointer;
  min-width: 70px;
}

/*------------ timer box------------- */
.timer-box {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(93.66deg, #17edd9 0.75%, #00a293 115.87%);
  position: relative;
  z-index: 1;
}

/* .timer-box .SumoSelect{
    display: none;
} */
.timer-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("../images/timer-bg.svg");
  background-repeat: no-repeat;
  background-position: right;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.timer-box .timer {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vertical-line {
  width: 1px;
  height: 50px;
  background-color: var(--white-color);
  margin: 0 25px;
}

.timer .display-time {
  font-size: 44px;
  font-weight: 400;
  color: var(--white-color);
}

.display-date {
  font-size: 20px;
  font-weight: 400;
  color: var(--white-color);
}

.display-date #day {
  display: none;
}

.display-date #daynum {
  font-size: 44px;
}

.status-box {
  position: relative;
  z-index: 5;
}

.tt-select {
  position: relative;
  height: auto;
  padding: 0px;
  text-align: left;
}

.tt-select .status {
  position: absolute;
  color: #ffffff;
  z-index: 100;
  top: 20%;
  left: 15px;
  font-size: 14px;
  font-weight: 400;
}

.tt-select select {
  display: none;
  transition: all 0.4s ease-in;
}

.select-selected {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  font-weight: 500;
  font-size: 18px;
  line-height: 70px;
  display: block;
}

.select-selected.select-arrow-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 8px;
}

.select-selected:before {
  position: absolute;
  content: url(../images/arrow_dwn.png);
  top: 0;
  right: 36px;
  width: 0;
  height: 0;
}

.select-selected.select-arrow-active:before {
  top: 100%;
  right: 24px;
  transform: rotate(180deg);
}

/* .select-selected.select-arrow-active:after {
    border-color: transparent transparent #000000 transparent;
    top: 10px;
} */
.select-items div,
.select-selected {
  color: #ffffff;
  padding: 8px 15px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  height: 70px;
}

.select-items div {
  height: 40px;
  color: var(--deep-black);
  border-bottom: 1px solid #f7f7f7;
}

.select-items div:last-child {
  border-bottom: 0;
}

.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 12px 12px;
  padding: 10px 0;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  color: var(--main-color);
}

.status-select {
  position: relative;
}

.status-select .status-text {
  position: absolute;
  color: #ffffff;
  left: 15px;
  top: 15px;
  font-size: 13px;
}

.status-select .SumoSelect {
  width: 100%;
}

.status-select .SumoSelect>.CaptionCont {
  min-height: 70px;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  /* backdrop-filter: blur(2px); */
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
}

.status-select .SumoSelect.open>.CaptionCont {
  border-radius: 12px 12px 0px 0px;
}

.status-select .SumoSelect>.CaptionCont>span {
  color: #ffffff;
}

.status-select .SumoSelect>.CaptionCont>label {
  top: 14px;
  right: 15px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.35);

  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.status-select .SumoSelect>.CaptionCont>label>i {
  background-image: url("../images/arrow_dwn.png");
}

.status-select .SumoSelect.open>.optWrapper {
  top: 70px;
  border-radius: 0 0 12px 12px;
  border: 0;
}

.status-select .SumoSelect>.optWrapper>.options li.opt {
  padding: 0 15px;
  border: 0;
}

.status-select .SumoSelect>.optWrapper>.options li.opt label {
  padding: 11px 0;
  border-bottom: 1px solid #f7f7f7;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
}

.status-select .SumoSelect>.optWrapper>.options {
  max-height: unset;
}

.status-select .SumoSelect>.optWrapper>.options li.opt:hover {
  background-color: #f7f7f7;
}

.status-select .SelectClass {
  z-index: 999;
}

/*---------------- end of time block-------------- */
.rescent-act {
  height: 480px;
}

.rescent-act .right-list .card-details p {
  margin-top: 5px;
}

.card-list {
  height: calc(100% - 25px);
  overflow-y: auto;
}

.card-list::-webkit-scrollbar {
  display: none;
}

.right-list li {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #f7f7f7;
}

.right-list li:last-child {
  border-bottom: none;
}

.right-list .approved p {
  color: #519c66;
}

.right-list .rejected p {
  color: #d20000;
}

.card-details {
  flex-grow: 1;
}

.card-details h5 {
  color: var(--deep-black);
  font-weight: 400;
  font-size: 14px;
}

.card-details p {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  padding-top: 10px;
}

.card-details p span {
  margin-right: 15px;
}

.activity-date {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--light-grey);
  white-space: nowrap;
}

.leave-info {
  margin-left: 15px;
}

.leave-info h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
}

.leave-info span {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--light-grey);
  display: inline-block;
}

.leaves-works {
  height: 480px;
}

.leaves-works .right-list li {
  border-bottom: 0;
  padding-top: 20px;
  padding-bottom: 10px;
}

.leaves-works .right-list li~li {
  padding: 10px 0;
}

.leaves-works .card-details {
  margin-right: 10px;
}

/*-------------- bottom card block----------- */
.bottom-card-block {
  border-radius: 5px;
  background-color: var(--white-color);
}

.wish-list-img {
  width: 46px;
  height: 46px;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.wish-list-img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.bottom-list .card-details h6,
.right-list .card-details h6 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--deep-black);
}

.bottom-list .card-details p,
.right-list .card-details p {
  padding: 0;
  font-size: 12px;
  font-weight: 400;
}

.wish-date {
  margin-left: 10px;
  margin-right: 0;
  position: relative;
  display: inline-block;
}

.wish-date::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--light-grey);
  left: -8px;
  top: 40%;
}

.bottom-list .today p {
  color: var(--main-color);
}

.bottom-list li {
  padding: 15px 0 0 0;
  border-bottom: 0;
}

.today button:hover {
  box-shadow: none;
  color: white;
}

.holiday-date-box,
.job-icon {
  background: var(--gradient-bg);
  width: 62px;
  height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.holiday-date-box h6 {
  font-weight: 500;
  font-size: 24px;
  color: var(--white-color);
  margin: 0;
  line-height: 26px;
}

.holiday-date-box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--white-color);
}

.days_left {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--light-grey);
}

.leave-chart {
  max-height: 370px;
  height: 100%;
  min-height: 370px;
}

.wish-box {
  height: 466px;
  overflow: hidden;
}

.trainging-vedio {
  width: 74px;
  height: 74px;
  min-width: 75px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.trainging-vedio a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.trainging-vedio .play-btn {
  width: 33px;
  height: 33px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trainging-vedio .play-btn span {
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #00a293;
  margin-left: 3px;
}

.video-status {
  padding: 5px 15px;
  display: inline-block;
  border-radius: 8px;
  font-size: 12px;
  margin-top: 10px;
}

.job-icon {
  background: #ffffff;
}

.bottom-list .job-list {
  display: flex;
  flex-wrap: wrap;
}

.bottom-list .job-list li {
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--light-grey);
  margin-right: 11px;
  position: relative;
}

.bottom-list .job-list li:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 50%;
  right: -7px;
  background-color: var(--light-grey);
  border-radius: 50%;
}

.bottom-list .job-list li:last-child:after {
  display: none;
}

.card-action>* {
  margin-left: 10px;
}

.card-action .share {
  color: var(--main-color);
  text-decoration: underline;
}

.notification-alert {
  max-width: 400px;
}

.notification-alert .notification-list {
  margin: 35px -20px 0 -20px;
}

.notification-list>li {
  border-bottom: 1px solid #eaeaea;
  padding: 8px 12px;
}

.notification-alert .notification-list>li:first-child {
  border-top: 1px solid #eaeaea;
}

.notifi-info {
  margin-left: 20px;
  width: calc(100% - 48px);
}

.notifi-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
}

.notifi-info .alert-time {
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: var(--light-grey);
  padding-top: 10px;
  display: block;
}

.notifi-bottom {
  margin-top: 10px;
}

.notifi-bottom a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--main-color);
}

.notifi-bottom a:hover {
  text-decoration: underline;
}

.notification-page .notifi-info {
  display: flex;
  justify-content: space-between;
}

.notification-page li:last-child {
  border-bottom: 0;
}

.notification-page li {
  padding: 8px 0px;
}

.notification-page {
  max-height: calc(100vh - 149px);
  overflow: auto;
}

.notification-page::-webkit-scrollbar {
  display: none;
}

.graph-card-block .graph-indicators li {
  margin-bottom: 0;
}

.graph-card-block .graph-indicators {
  all: unset;
  margin-right: 20px;
  color: #8b8d95;
}

/*---------------- employee directoru------------ */
.four-col .card-boxes {
  width: calc(25% - 20px);
  margin: 0 10px;
}

.card-icon {
  width: 48px;
  min-width: 48px;
}

.emp-boxes {
  margin-left: 15px;
}

.emp-boxes h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--light-grey);
}

.emp-boxes span {
  font-weight: 700;
  font-size: 27px;
  line-height: 29px;
  color: var(--deep-black);
}

.assigned-time-box .emp-boxes {
  margin-left: 0;
}

.table-form {
  display: flex;
  justify-content: space-between;
}

.search-box {
  position: relative;
}

.table-search {
  height: 33px;
  border: 1px solid #e7e7e7;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  /* margin: 0 7px; */
  padding: 0 17px 0 35px;
  width: 300px;
  -webkit-appearance: none !important;
}

.table-search::-webkit-input-placeholder {
  /* Edge */
  color: var(--light-grey);
}

.table-search:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--light-grey);
}

.table-search::placeholder {
  color: var(--light-grey);
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
}

.expandable_view {
  display: none;
  background-color: #f3f3f3;
}

.expandable_view td {
  padding: 15px 20px;
}

.expandable_view.active {
  display: table-row;
}

.expand-parent {
  background-color: #f3f3f3;
}

.expand-title {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #2c2d33;
}

.four-col.m-10-minus .card-boxes {
  align-items: center;
}

/*---------------- employee directoru------------ */
.date-indicate {
  margin: 0 -5px;
}

.date-indicate li {
  width: 34px;
  height: 34px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background-color: #ffffff;
  color: var(--pure-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.date-indicate li.current {
  background: var(--gradient-bg);
  color: var(--white-color);
  border: 1px solid #ffffff;
}

.date-indicate li.diasable-days {
  background: #f7f8fa;
  color: #cbcfd4;
  border: 1px solid #f7f8fa;
}

.emp-boxes p {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--pure-black);
}

.indication_icon {
  margin-left: 10px;
  cursor: pointer;
  position: relative;
}

.indication-tool-tip {
  display: none;
  position: absolute;
  width: 460px;
  height: auto;
  top: 25px;
  left: -30px;
  background-color: var(--white-color);
  padding: 15px;
  z-index: 15;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.4s ease-in;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
}

.indication_icon:hover .indication-tool-tip {
  display: block;
}

.indication-tool-tip li {
  display: flex;
  margin-bottom: 10px;
  align-items: start;
}

.indication-tool-tip li img {
  margin-right: 15px;
}

.indication-tool-tip .tool-desc h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--pure-black);
}

.indication-tool-tip .tool-desc p {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #6e7079;
}

.indication-tool-tip ul:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 10px;
  left: 37px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 6px solid black;
  border-color: transparent #ffffff #ffffff transparent;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(224deg);
  transform: rotate(224deg);
  -webkit-box-shadow: 2px 4px 7px 0 rgb(0 0 0 / 9%);
  box-shadow: 2px 4px 7px 0 rgb(0 0 0 / 9%);
  z-index: -1;
}

.leave-req-form {
  margin-top: 30px;
}

.leave-req-form input,
.leave-req-form textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 10px 15px;
}

.leave-req-form select {
  display: block;
}

.leave-req-form input {
  height: 35px;
  font-size: 14px;
}

.leave-req-form textarea {
  height: 100px;
  resize: none;
}

.leave-req-form label {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 5px;
}

.leave-req-form .input_box {
  margin-bottom: 15px;
}

.leave-req-form .white-button {
  margin-right: 10px;
}

/*----------------- events--------- */
.col-three {
  margin: 10px -1% 0 -1%;
}

.col-three .col-three-item {
  width: 31.33%;
  margin: 1% 1%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.event_wrapper {
  position: relative;
}

.thumb-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-color: #bec5c0;
  background-position: center;
}

.col-three-item .play-btn {
  display: none;
  position: absolute;
  width: 46px;
  height: 46px;
  top: 50%;
  left: 50%;
  background-color: var(--white-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  padding: 13px 18px;
}

.col-three-item .gallery-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.col-three-item .gallery-dlt {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 15px;
  right: 15px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e43737;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

.col-three-item .gallery-dlt span {
  font-size: 18px;
}

.col-three-item .play-btn:hover {
  background-color: var(--main-color);
}

.col-three-item .play-btn svg {
  width: 15px;
  height: 18px;
}

.col-three-item .play-btn:hover svg path {
  fill: var(--white-color);
}

.col-three-item.video .play-btn {
  display: block;
}

.col-three-item.video .play-btn img {
  display: none;
}

/* .col-three-item.image .gallery-item{
 display: block;
} */
.col-three-item .gallery-item img {
  display: none;
}

/*------------ leave records---------- */
.leave-alert {
  height: 156px;
  overflow: auto;
}

.leave-alert::-webkit-scrollbar {
  display: none;
}

.leave-alert li {
  display: flex;
  align-items: flex-start;
}

.leave-alert li>div {
  margin-left: 10px;
  margin-bottom: 10px;
}

.leave-alert h5 {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--deep-black);
}

.leave-alert p {
  font-weight: 400;
  font-size: 11px;
  line-height: 15px;
  color: var(--light-grey);
}

.leave-alert a {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--deep-black);
  text-decoration: underline;
  margin-left: 10px;
  white-space: nowrap;
}

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

.table_wrapper .docs li {
  display: none;
}

.table_wrapper .docs li.active {
  display: block;
}

.table_wrapper .approved li img {
  object-fit: cover;
  object-position: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.table_wrapper .approved li {
  margin: 0 3px;
}

.approve-complete,
.approve-reject,
.approve-pending {
  position: relative;
}

.approve-complete::after,
.approve-reject::after,
.approve-pending::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: bottom;
  background-size: 18px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.approve-complete::after {
  background-image: url(../images/appr_finished.svg);
}

.approve-reject::after {
  background-image: url(../images/appr_cancel.svg);
}

.approve-pending::after {
  background-image: url(../images/appr_pending.svg);
}

.table-leave-record table {
  margin-bottom: 0;
}

.table-leave-record .table_head td:nth-child(6) {
  text-align: center;
}

.pop-cancel-leave {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 330px;
}

.pop-cancel-leave button {
  width: 48%;
}

.pop-cancel-leave p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--light-grey);
}

.lv-rqst-table table thead td {
  vertical-align: top;
}

.lv-rqst-table .table_wrapper.full_table_wrapper::-webkit-scrollbar {
  display: block;
  width: 0;
  height: 10px;
}

/* Track */
.lv-rqst-table .table_wrapper.full_table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.lv-rqst-table .table_wrapper.full_table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177);
}

/*----------- apply-leave----------- */

.form-box>li {
  display: flex;
  margin: 0 -1%;
}

.input-box {
  width: 31.3%;
  display: flex;
  flex-direction: column;
  margin: 0 1%;
}

.form-boxlabel {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #6e7079;
  margin-bottom: 5px;
}

.form-box label span {
  color: red;
}

.input-box {
  margin-bottom: 15px;
}

.input-box input,
.input-box select {
  height: 35px;
  width: 100%;
  font-size: 14px;
}

.input-box input,
.input-box select,
.input-box textarea {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 8px 10px;
  color: var(--pure-black);
}

.input-box input[disabled] {
  background-color: #f4f5fa;
}

.input-box textarea {
  resize: none;
  height: 150px;
}

.input-box .input-50 {
  width: 48%;
}

.input-box label {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: #6e7079;
  margin-bottom: 8px;
}

.form-box {
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
}

.apply-leave .leave-bottom {
  margin-bottom: 10px;
}

.drop-zone {
  max-width: 100%;
  height: 150px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  color: #cccccc;
  border: 1px dashed #d9d9d9;
  border-radius: 10px;
  position: relative;
}

.drop-zone--over {
  border-style: solid;
}

.drop-zone__input {
  display: none;
}

.drop-zone__thumb {
  width: 100%;
  height: 30px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}

/*-----------------Recruitment------------- */
.video-section .item {
  opacity: 0.4;
  transition: 0.4s ease all;
  margin: 0 20px;
}

.video-section .item {
  margin: 0;
}

.video-section .active .item {
  opacity: 1;
}

.video-section .owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.video-section video {
  max-width: 100%;
  height: 75vh;
  overflow: hidden;
  object-fit: cover;
}

.video-section .plyr__video-wrapper {
  height: 100%;
}

.video-section .plyr__poster {
  background-size: cover;
}

.owl-item .plyr--video,
.owl-item {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
}

.video-section .owl-dots {
  text-align: center;
}

.video-section .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-color: #dfdfdf;
  margin: 0 8px;
}

.video-section .owl-dots .owl-dot.active {
  background-color: var(--main-color);
}

.plyr__control--overlaid {
  background-color: #ffffff;
}

.plyr__control svg {
  fill: var(--main-color);
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
  background: #ffffff;
  color: #fff;
}

.plyr__control.plyr__tab-focus {
  box-shadow: none;
}

.plyr--video .plyr__control:hover {
  background-color: #e7e7e7;
}

.table-top button,
.table-top div a {
  margin-left: 20px;
}

.plyr--playing .plyr__control--overlaid {
  min-width: 48px;
  min-height: 48px;
}

.plyr--playing .plyr__control--overlaid:after {
  content: "\e924";
  font-family: "icomoon";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--main-color);
  font-size: 16px;
}

.video-section :hover .plyr--playing .plyr__control--overlaid {
  opacity: 1;
  visibility: visible;
}

.plyr--playing .plyr__control--overlaid svg:first-child {
  display: none;
}

.recruitment .col-four .card-boxes {
  border: 1px solid #d9d9d9;
  transition: all 0.4s ease-in;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  position: relative;
}

.recruitment .job-download {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.recruitment .col-four .card-boxes>a {
  padding: 15px;
}

.recruitment .col-four .card-boxes>a>img {
  margin-right: 15px;
}

.recruitment .col-four .card-boxes:hover {
  background-color: #f4f5fa;
}

.recruitment .col-four .card-boxes:hover .file-download_icon {
  visibility: visible;
}

.recruitment .col-four {
  margin-top: 20px;
}

.col-four .card-boxes div>img:first-child {
  margin-right: 15px;
}

/* .col-four .card-boxes a{
    padding: 10px; 
  }*/
.job-download img {
  margin-right: 0 !important;
}

.file-download_icon {
  visibility: hidden;
}

.col-four .card-boxes p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--deep-black);
}

.col-four .card-boxes>div {
  padding: 10px;
}

.recruitment .col-four {
  max-height: 204px;
  overflow: auto;
}

.recruitment .col-four::-webkit-scrollbar {
  display: none;
}

.col-three .job-details h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: var(--pure-black);
  margin-bottom: 0;
}

.col-three .job-details p {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: var(--pure-black);
}

.col-three .job-details a span {
  font-size: 16px;
  color: var(--deep-black);
}

.col-three .job-details a span:hover {
  color: var(--main-color);
}

.col-three .job-details>li:nth-child(2) {
  border-bottom: 1px solid #f3f3f9;
  padding-bottom: 10px;
  margin: 15px 0;
}

.col-three .job-details>li:nth-child(2) span {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--light-grey);
}

.col-three .job-details .job-type {
  margin: 10px -5px 20px;
  flex-wrap: wrap;
}

.job-bg-green {
  padding: 5px 10px;
  background-color: #d9f2ef;
  color: #00a595;
  margin: 5px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
}

.col-three .job-details>li:last-child>div {
  margin-left: 10px;
  margin-bottom: 10px;
}

.email-resume img:first-child {
  margin-right: 10px;
}

.email-resume span {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--light-grey);
}

.email-resume a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
  color: var(--deep-black);
  word-break: break-all;
}

.job-icon-hloder {
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.job-icon-hloder img {
  width: 100%;
}

.share-button {
  min-width: 130px;
}

.share-button a>span {
  font-size: 20px;
  margin-right: 5px;
}

.share-button a .icon-twitter {
  font-size: 18px;
}

.live-job-details .job-post-info>div {
  margin: 0 -5px;
}

.live-job-details>li:nth-child(2) {
  margin-top: 20px;
  border-bottom: 1px solid #f3f3f9;
  padding-bottom: 20px;
}

.live-job-details>li:nth-child(2) h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: var(--deep-black);
  margin-bottom: 0;
}

.live-job-details>li:nth-child(2)span {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--light-grey);
}

.live-job-details .job-post-info>div {
  margin-top: 15px;
}

.live-job-details .job-post-info>span {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--light-grey);
}

.live-job-details .mail-box {
  min-width: 325px;
  background: #f3f3f9;
  border-radius: 3px;
  padding: 10px;
}

.mail-icon-hloder {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 10px;
}

.mail-icon-hloder img {
  width: 100%;
}

.live-job-details .mail-box a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--deep-black);
  text-decoration: underline;
  word-break: break-all;
}

.live-job-details .mail-box span {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--light-grey);
}

.live-job-details .job-details {
  padding-top: 30px;
  /* height: calc( 100vh - 428px); */
}

.live-job-details .job-details h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: var(--deep-black);
}

.live-job-details .job-details h6> :last-child {
  margin-top: 30px;
}

.live-job-details .job-details p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light-grey);
  margin-top: 15px;
}

.job-description {
  padding-left: 20px;
}

.job-description h6 {
  margin-left: -20px;
}

.job-description li {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--light-grey);
  margin: 10px 0;
  list-style-type: disc;
}

.job-description li::marker {
  color: var(--deep-black);
}

.job-summary {
  margin-bottom: 30px;
}

.job-description h6 {
  margin-bottom: 15px;
}

.gradient-button .icon-share-2 {
  padding-left: 10px;
  font-size: 17px;
}

.hr-side-recruitment .col-three-item {
  border: 1px solid #eeeeee;
  position: relative;
}

.job-details-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.share_btn_holder .gradient-button {
  position: relative;
}

.social-icon-holder {
  display: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 100%;
  right: 0;
  z-index: 20;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  transition: all 0.4s ease-in;
}

.share_btn_holder .select-drop {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 14px;
}

.share_btn_holder.active .social-icon-holder {
  display: block;
}

/*------------------------ social sharing---------------- */
.socialJS {
  flex-direction: column;
}

.socialJS a i {
  color: #5e5e5e !important;
  font-size: 20px;
}

.socialJS a {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.socialJS a:hover {
  background-color: #f4f5fa;
}

/*------------------------ end social sharing---------------- */

/* -------------------insurance----------------- */
.insurance {
  max-height: calc(100vh - 174px);
  overflow: auto;
}

.insurance::-webkit-scrollbar {
  display: none;
}

.insurance-card {
  width: calc(33.33% - 15px);
  margin-right: 15px;
}

.insurance-card-holder {
  min-width: 300px;
  width: 30%;
  height: 194px;
}

.insurance-card-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.documents .doc-list {
  min-width: 300px;
  width: 50%;
  margin-bottom: 15px;
}

.documents .doc-list .doc-name {
  margin: 0 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--deep-black);
}

.insurance h4 {
  margin-bottom: 15px;
}

.documents .doc-list a {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--main-color);
  text-decoration: underline;
}

.insurance_actions {
  margin-left: auto;
}

.documents .doc-list a:last-child {
  margin-left: 8px;
}

.doc-list img {
  min-width: 34px;
}

#ins_docs_list>li {
  min-width: auto;
  width: 100%;
}

/*---------------------------- letters and certificate-------------- */
.tabs {
  margin-top: 15px;
  overflow: hidden;
}

ul#tabs-nav {
  list-style: none;
  margin: 0;
  overflow: auto;
  position: relative;
  margin-left: -25px;
}

ul#tabs-nav::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--white-color);
  z-index: 10;
}

.tab-item {
  float: left;
  font-weight: bold;
  margin-right: 2px;
  padding: 5px 25px 15px 25px;
  cursor: pointer;
  position: relative;
}

.tab-item.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gradient-bg);
  z-index: 11;
}

.tab-item:hover a,
.tab-item.active a {
  color: var(--main-color);
}

.tab-item a {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
}

.personal-info_wrapper {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.personal-info {
  flex-wrap: wrap;
  margin-right: -1%;
  margin-left: -1%;
}

.personal-info-item {
  width: 18%;
  margin: 10px 1%;
}

.personal-info-item span {
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: var(--light-grey);
}

.personal-info-item p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--pure-black);
}

.personal-info-item .visa-stat {
  color: #008e0e;
}

.three-col-row {
  display: flex;
}

.form-feild-box {
  display: flex;
  flex-direction: column;
}

.three-col-row {
  margin: 8px -10px 8px;
}

.three-col-row .form-feild-box {
  margin: 0 10px !important;
  width: calc(33.33% - 20px);
}

.three-col-row .text-box {
  margin: 0 10px;
  width: 100%;
}

.three-col-row .text-box label {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: var(--light-grey);
  margin-bottom: 8px;
}

.three-col-row .button-wrapper {
  margin: 0 1%;
}

.col-two-three {
  margin: 15px 0 25px;
}

.col-two-three .form-feild-box {
  width: 66%;
}

.form-feild-wrapper {
  width: 66.66%;
}

.form-feild-box .select-default {
  margin: 0;
}

.form-feild-box>label {
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #6e7079;
  margin-bottom: 8px;
}

.form-feild-box input,
.form-feild-box select {
  height: 35px;
  width: 100%;
  font-size: 14px;
}

.form-feild-box input,
.form-feild-box select,
.form-feild-box textarea {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 5px 10px;
  color: var(--deep-black);
}

.form-feild-box input::-webkit-input-placeholder,
.form-feild-box textarea::-webkit-input-placeholder {
  color: var(--light-grey);
}

.form-feild-box input:-ms-input-placeholder,
.form-feild-box textarea::-webkit-input-placeholder {
  color: var(--light-grey);
}

.form-feild-box input::placeholder,
.form-feild-box textarea::-webkit-input-placeholder {
  color: var(--light-grey);
}

.form-feild-box textarea {
  height: 115px;
  resize: none;
  padding: 10px;
  font-size: 12px;
  line-height: 14px;
}

.req-certificate {
  margin: 30px 0;
}

.req-certificate p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--deep-black);
}

.req-certificate li {
  margin-bottom: 20px;
}

.req-certificate li:last-child {
  margin-bottom: 0;
  margin-top: 10px;
}

.req-certificate li .gradient-button {
  min-width: 150px;
  height: 40px;
}

/* radio btn */
.radio-btn-list p {
  margin-right: 60px;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}

[type="radio"]:checked+label {
  color: var(--deep-black);
}

[type="radio"]:not(:checked)+label {
  color: var(--light-grey);
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #949494;
  border-radius: 100%;
  background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #6e7079;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.certificate-table .table_wrapper {
  max-height: 400px;
  overflow-y: auto;
}

.table-kpi .table_wrapper::-webkit-scrollbar {
  display: block;
  height: 10px;
}

.certificate-table .table_wrapper {
  height: calc(100% - 100px);
  overflow: auto;
}

.new_sign_stamp ul>li+li {
  margin: 15px 0;
}

/*------------------------------------------ KPI------------------------------------- */
.table-kpi {
  overflow: visible;
  min-height: calc(100vh - 170px);
}

.table-kpi-more {
  min-height: calc(100vh - 265px);
}

.table-kpi table .select-tr {
  width: 20%;
}

.table-kpi table {
  margin-bottom: 0;
}

/* .table-kpi .table_wrapper{
    overflow-x: auto !important;
}  */

.table-kpi .table_wrapper::-webkit-scrollbar {
  display: block;
  height: 10px;
}

/* Track */
.table-kpi .table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.table-kpi .table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177);
}

.kpi-btn {
  border: 1px solid #ced4da;
  margin-left: 30px;
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.kpi-btn span {
  color: var(--main-color);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.kpi-btn:hover {
  background-color: var(--main-color);
}

.kpi-btn:hover span {
  color: var(--white-color);
}

.table-kpi .tbody-white>tr {
  border-bottom: 1px solid #eaeaea;
}

/* .table-kpi #category_list .form-control{
    margin-left: -15px;
} */
.table-kpi #category_list .form-control,
.table-kpi #appraisal_category_list .form-control {
  border: 1px solid #ffffff;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.table-kpi #category_list .form-control:focus,
.table-kpi #appraisal_category_list .form-control:focus {
  margin-left: 0;
  border: 1px solid #ced4da;
}

.table-kpi .SumoSelect {
  width: 100%;
}

.table-kpi #category_list .form-control:focus,
.table-kpi #appraisal_category_list .form-control:focus {
  margin-left: 0;
  border: 1px solid #ced4da;
}

.table-kpi table .SumoSelect {
  width: 100%;
}

.table-kpi .tbody-points>tr {
  border-bottom: 1px solid #eaeaea;
}

.table-kpi .tbody-points table td {
  padding: 15px 0 0;
}

.table-kpi .tbody-points table td:first-child {
  padding-right: 15px;
}

.table-kpi .tbody-points table tr:first-child td {
  padding-top: 0;
}

.border_left_td {
  border-left: 1px solid #eaeaea;
}

.assign-table td input {
  height: auto;
}

.assign-table td tr~tr td {
  padding: 15px 0 0;
}

/*---------kpi- target table------- */
.table-target .tbody-white tbody tr td {
  padding: 0 0 15px;
}

.table-target .tbody-white tbody tr:last-child td {
  padding: 0;
}

.tbl-h-35.goal {
  max-width: 550px;
}

.green-bottom {
  background-color: #00a595;
}

.green-bottom td {
  color: #ffffff;
}

.green-bottom td:first-child {
  border-right: 1px solid #ffffff;
}

/*---------kpi- approval table------- */
.goal-approval-table tbody table td {
  padding: 10px 0 !important;
}

/*-------- kpi-performance management------------ */
.profile-info-item {
  min-width: 20%;
  margin-left: 15px;
}

.profile-info>div {
  position: relative;
  cursor: pointer;
}

.notification {
  position: absolute;
  top: -60%;
  left: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 22px;
  height: 22px;
  padding: 2px;
  border: 3px solid #f4fdff;
  border-radius: 500px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  z-index: 1;
  background-color: red;
  transition: transform 0.15s, background-color 0.5s;
}

.profile-info-item span {
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: var(--light-grey);
}

.profile-info-item p {
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: var(--deep-black);
}

.col-filter {
  position: relative;
}

.col-filter-box {
  min-width: 200px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: var(--white-color);
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.col-filter-box span {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--deep-black);
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.col-filter-box:hover {
  background: var(--gradient-bg);
}

.col-filter-box:hover span {
  color: var(--white-color);
}

.col-filter-box:hover img {
  filter: brightness(37);
}

.filter-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  flex-direction: column;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  min-width: 400px;
  width: 100%;
  padding: 15px;
  z-index: 99;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.filter-wrapper.active {
  display: flex;
}

.filter-checkbox {
  display: flex;
  flex-wrap: wrap;
}

.filter-checkbox-item {
  width: 50%;
  margin: 8px 0;
}

.filter-top {
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 10px;
}

.filter-top h6 {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
}

.filter-checkbox-item .checkmark-container {
  color: var(--light-grey);
}

.filter-btn {
  margin-top: 20px;
}

.filter-btn .gradient-button {
  width: 100%;
  margin-left: 0;
}

.table-perfo-mngmt .tbody-white table .tbl-h-35 {
  justify-content: center;
}

.guide-lines {
  margin-top: 20px;
  margin-left: 20px;
}

.guide-lines li {
  list-style: disc;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light-grey);
  margin-bottom: 20px;
}

.guide-lines li p {
  margin-top: 10px;
}

.guide-lines li::marker {
  color: #475366;
}

.kpi-achivements {
  display: flex;
  align-items: flex-start;
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.achive-table-wrapper {
  width: 30%;
  border: 1px solid #f0f0f0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 20px;
}

.kpi-achivements table tbody td {
  border-bottom: 1px solid #f0f0f0;
  padding: 15px;
}

.kpi-achivements table td p,
.kpi-achivements table th {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
}

.kpi-achivements table thead th {
  background-color: #f7f8fa;
  font-weight: 500;
  padding: 12px 15px;
}

.kpi-achivements table td p {
  position: relative;
}

.kpi-achivements table td p.increase:after,
.kpi-achivements table td p.decrease:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  top: 35%;
  right: 0;
  width: 10px;
  height: 5px;
}

.kpi-achivements table td p.increase:after {
  background-image: url("../images/increase.png");
}

.kpi-achivements table td p.decrease:after {
  background-image: url("../images/decrease.png");
}

.note {
  flex-grow: 1;
  border: 1px solid #f0f0f0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-color: #f3f3f9;
  padding: 15px;
}

.note p {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--light-grey);
}

.kpi-perfo-table-wrapper,
.kpi-hod-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}

.kpi-hod-wrapper {
  min-height: calc(100vh - 225px);
}

/* ------------------kpi settings--------------------- */
.kpi-setting-table .SumoSelect {
  width: 100%;
}

.kpi-setting-table .tbody-white table tr+tr td {
  padding-bottom: 0;
}

/* ------------------------------------------sumo select ---------------------- */

.SumoSelect>.CaptionCont {
  min-height: 35px;
  max-height: 35px;
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--deep-black);
}

.table-kpi .SelectBox {
  padding: 8px;
}

.table-kpi .SumoSelect.open .search-txt {
  padding: 8px;
}

.SumoSelect.open>.CaptionCont>label>i {
  transform: scaleY(-1);
}

#category_list tr td {
  padding: 8px 20px;
}

/* .table-top .SumoSelect{
    margin-left: 20px;
} */
.hod_table_wrapper {
  overflow-x: auto;
  overflow-y: auto;
}

.hod_table_wrapper thead td:nth-child(4),
.hod_table_wrapper thead td:nth-child(5),
.hod_table_wrapper thead td:nth-child(6),
.hod_table_wrapper thead td:nth-child(7),
.hod_table_wrapper thead td:nth-child(8),
.hod_table_wrapper thead td:nth-child(9) {
  text-align: center;
}

.hod_table_wrapper {
  min-height: calc(100vh - 332px);
}

.hod_table_wrapper::-webkit-scrollbar {
  display: none;
}

.table-kpi .table-top .form-feild-box::after {
  top: 70%;
}

.table-top .kpi-employee-search .SumoSelect {
  width: auto;
}

/*--------------- accordian----------------- */
.accordion-header .accordion-btn span {
  font-size: 8px;
  color: var(--pure-black);
  transition: all 0.4s ease-in;
}

.accordion-header .accordion-btn {
  transition: all 0.2s ease-in;
  cursor: pointer;
}

.accordion-header .accordion-btn.close {
  transform: scaleY(-1);
}

.accordian-content {
  display: none;
  /* margin-top: 20px; */
  padding-top: 0 !important;
}

.accordian-content .form-items {
  border-bottom: 0;
}

.accordian-content .button-block {
  border-top: 1px solid #eaeaea;
  margin-top: 0 !important;
  padding-top: 20px;
}

.card-boxes.show .accordian-content {
  display: block;
}

.accordian-content .SumoSelect {
  width: 100%;
  min-width: auto;
}

.form-items {
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.five-col .input-box {
  width: 18%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.five-col .file-uploaded {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  padding: 15px;
  flex-grow: 1;
}

.five-col .file-uploaded h6 {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
  word-break: break-all;
}

.five-col .file-uploaded p {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--light-grey);
}

.file-uploaded>div {
  margin-bottom: 10px;
}

.five-col .input-box label {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: var(--light-grey);
  margin-bottom: 8px;
}

.file-uploaded .drop-parent {
  width: 15px;
  text-align: end;
}

.file-uploaded .drop-list li {
  display: block;
}

.file-uploaded .drop-list li a {
  text-align: start;
}

.five-col .file-upload {
  flex-grow: 1;
}

.input-box.upload-wrapper {
  width: 100%;
  margin: 0;
  flex-grow: 1;
}

.otherfile .input-box label {
  visibility: hidden;
}

.otherfile .input-box:first-of-type label {
  visibility: visible;
}

.new-file {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

.new-file p {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
}

.new-file a {
  color: var(--main-color) !important;
  text-decoration: underline !important;
  cursor: pointer;
}

.new-doc-popup li {
  margin-bottom: 15px;
}

.form-feild-box .active {
  color: #008e0e;
}

.form-feild-box .deactive {
  color: #db0416;
}

.accordian-content .col-three-item {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
}

.accordian-content .col-three-item:first-of-type {
  background-color: #f4f5fa;
  border: 2px dashed #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordian-content .add-exp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.accordian-content .add-exp span {
  font-size: 30px;
  color: var(--light-grey);
  cursor: pointer;
}

.accordian-content .add-exp span:hover {
  color: var(--main-color);
}

.accordian-content .add-exp h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: var(--pure-black);
}

.accordian-content .add-exp p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--light-grey);
}

.form-items .form-box {
  padding: 0;
  border-bottom: none;
}

.accordian-content .add_address {
  width: 100%;
  border: 2px dashed #d9d9d9;
  background-color: #f4f5fa;
  padding: 25px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exper_upload {
  min-height: 130px;
}

.accordian-content .address-box {
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.address-box li .white-button {
  margin-right: 0;
}

.address-box li h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: var(--deep-black);
  margin-bottom: 0;
}

.address-box li p {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--deep-black);
}

.address-box li+li {
  margin-top: 20px;
}

.address-box li .address-para {
  max-width: 240px;
  word-wrap: break-word;
  line-height: 21px;
}

.address-box li span {
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: var(--light-grey);
}

.address-box>li:first-child {
  align-items: center;
}

.address-popup {
  max-width: 630px;
}

.address-popup .col-two li {
  margin-top: 15px;
}

.address-popup .col-two li .form-feild-box {
  margin-bottom: 0;
}

.address-popup .col-two {
  margin-bottom: 15px;
}

.address-popup label {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: var(--light-grey);
  margin-bottom: 8px;
}

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

.accordian-content .table-card-block.table-card-visible tr td {
  padding: 15px 10px;
  vertical-align: top;
}

.accordian-content .table-card-block.table-card-visible tr td:first-child {
  padding-left: 20px;
}

.accordian-content .table-card-block.table-card-visible tr td:last-child {
  padding-right: 20px;
}

.accordian-content .table-card-block.table-card-visible .kpi-btn {
  margin-left: 20px;
  min-width: 35px;
  height: 35px;
}

#dependents_table tbody td:nth-child(2) input {
  white-space: nowrap;
}

.accordian-content .table_wrapper {
  overflow-x: auto;
  margin-left: -20px;
  margin-right: -20px;
}

.accordian-content .table_wrapper::-webkit-scrollbar {
  display: block;
  height: 10px;
  width: 0;
}

.accordian-content .table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.accordian-content .table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177);
}

#skillset_table tr td:nth-child(1) {
  min-width: 200px !important;
}

#skillset_table tr td:nth-child(2),
#skillset_table tr td:nth-child(3) {
  min-width: 230px !important;
}

#skillset_table tr td:nth-child(6) {
  min-width: 270px !important;
}

#skillset_table tr td:nth-child(4),
#skillset_table tr td:nth-child(5) {
  min-width: 100px !important;
}

#education_table tr td:nth-child(2),
#education_table tr td:nth-child(3),
#education_table tr td:nth-child(4) {
  min-width: 230px !important;
}

#education_table tr td:nth-child(5),
#education_table tr td:nth-child(6) {
  min-width: 160px !important;
}

#education_table tr td:nth-child(7) {
  min-width: 180px !important;
}

#education_table tr td:nth-child(8) {
  min-width: 130px !important;
}

#education_table tr td:nth-child(9) {
  min-width: 180px;
}

#dependents_table tr td:nth-child(3) {
  min-width: 100px;
}

#dependents_table tr td:nth-child(5) {
  min-width: 190px;
}

/*--------------- add pic---------- */
.three-col-form .three-col-row:first-child {
  margin-top: 0;
}

.add-pic {
  min-width: 150px;
  margin-right: 20px;
}

.avatar-upload {
  position: relative;
  max-width: 205px;
  height: 150px;
}

.avatar-upload .avatar-edit {
  position: absolute;
  left: 0;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 40px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input+label {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: #00000099;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.avatar-upload .avatar-edit input+label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
  color: var(--deep-black);
}

.avatar-upload .avatar-preview {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 6px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ------------performance appraisal--------------- */
.form-feild-box .SumoSelect {
  width: 100%;
  margin-left: 0 !important;
}

.center-title h5 {
  text-align: center;

  font-size: 18px;
}

.table-top .side-title {
  margin-top: 20px;
  margin-bottom: 10px;
}

.side-title p {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--light-grey);
  padding-top: 10px;
  max-width: 540px;
}

.side-title h4 {
  font-size: 16px;
  color: var(--deep-black);
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 0;
}

.side-title h6 {
  font-size: 14px;
  color: var(--deep-black);
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 0;
  padding-top: 10px;
}

.inner-table td {
  border-bottom: 1px solid #f3f3f9;
}

.table-inner-box {
  background-color: #f4f5fa;
  padding: 10px;
  border: 1px solid #d9d9d9;
  color: var(--deep-black);
  font-size: 13px;
  line-height: 20px;
  min-width: 500px;
}

.rating-box>div {
  background-color: var(--white-color);
  width: 30px;
  height: 30px;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  margin: 0 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in;
  cursor: pointer;
}

.rating-box>div.active {
  background-color: var(--main-color);
  color: var(--white-color);
}

.rating-box .rating-btn:hover {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
}

.rating-box>div.super_active {
  background-color: #e9a44f;
  color: var(--white-color);
}

.rating-box>div.super_active:hover {
  background-color: #e9a44f;
}

.performance-app .inner-table tr td:first-of-type {
  border-left: 1px solid #f3f3f9;
}

.performance-app .inner-table tr:last-child td {
  border-bottom: 0;
}

.performance-app>tr {
  border-bottom: 1px solid #f3f3f9;
}

.total-marks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.total-box {
  width: 180px;
  background-color: #f4f5fa;
  border: 1px solid #d9d9d9;
  display: inline-block;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  margin: 0 20px;
}

.table-bottom .side-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.bg-sec {
  background-color: #f8f8f8;
  height: 50px;
  margin: 0 -20px;
  padding: 0 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.bg-sec h5 {
  font-weight: 400;
  font-size: 15px;
  line-height: 17px;
  color: var(--deep-black);
}

.perfor-appraisal-table table {
  margin-bottom: 0;
}

.perfor-appraisal-table .table_head {
  background-color: #f8f8f8;
}

.perfor-appraisal-table .table_wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}

.perfor-appraisal-table .table_wrapper::-webkit-scrollbar {
  display: block;
  height: 10px;
}

/* Track */
.perfor-appraisal-table .table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.perfor-appraisal-table .table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177);
}

.perfor-appraisal-table::-webkit-scrollbar {
  height: 10px;
  background: gray;
}

.perfor-appraisal-table::-webkit-scrollbar-thumb:horizontal {
  background: #000;
  border-radius: 10px;
}

/*---- roles table ----*/
.table-roles table tr td:last-child {
  text-align: center;
}

.table-roles table tr:not(:last-of-type) td {
  border-bottom: 1px solid #f3f3f9;
}

.table-roles .drop-parent {
  min-width: 30px;
  display: inline-block;
  cursor: pointer;
}

.role-popup {
  min-width: 550px;
}

.role-popup .input_box {
  margin-bottom: 0;
  padding: 20px 0;
  border-bottom: 1px solid #f3f3f9;
}

.role-popup .role-check-childs {
  margin: 20px 0 20px 35px;
  display: flex;
}

.role-check-grand-childs {
  margin: 20px 0 20px 35px;
  display: flex;
  flex-direction: column;
}

.role-check-grand-childs>li {
  margin-bottom: 20px;
}

.role-check-grand-childs .role-check-childs {
  margin: 20px 0 0 35px;
}

.role-check-childs label {
  margin-right: 20px;
}

.role-popup h6 {
  font-size: 16px;
  color: var(--deep-black);
  font-weight: 500;
}

.admin-popup .pop-body {
  min-width: 550px;
}

.table-card-block .single-row-table {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.table-card-block .single-row-table table {
  border-bottom: 1px solid #f3f3f9;
}

.table-note {
  padding: 10px 0 0 20px;
}

.table-note p {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--light-grey);
}

.achivement-list {
  background-color: #fafafa;
  padding: 15px;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  min-height: 135px;
}

.achivement-list li {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--deep-black);
}

.achivement-list h6 {
  font-size: 14px;
  color: var(--deep-black);
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 0;
}

.achivement-list p {
  color: var(--light-grey);
}

.achivement-list .sub-list {
  margin-top: 25px;
}

.achivement-list ul {
  padding-left: 30px;
}

.achivement-list ul li {
  list-style-type: disc;
  padding-bottom: 15px;
}

.perfo-grade-confirm li {
  list-style: decimal;
  list-style-position: inside;
}

.perfo-grade-confirm textarea {
  margin: 20px 0;
}

.perfor-appraisal-table .table_head.table-green {
  background-color: var(--main-color);
}

.perfor-appraisal-table .table_head.table-green td {
  color: var(--white-color);
}

.grade-indicator {
  margin-top: 10px;
  border-bottom: 1px solid #f3f3f9;
}

.grade-indicator li {
  margin-right: 20px;
  padding-bottom: 20px;
}

.grade-indicator span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  margin-right: 10px;
}

.grade-indicator span,
.grade-indicator p {
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: var(--deep-black);
}

.perfo-grade-confirm li {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: var(--deep-black);
}

.sign-sec .sign-wrapper {
  margin-left: 20px;
  height: 70px;
  min-width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.sign-sec .sign-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sign-sec span,
.sign-sec label {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--deep-black);
}

.sign-sec li {
  margin-bottom: 30px;
}

.sign-sec ul :first-child span,
.sign-sec label {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: var(--light-grey);
}

.sign-sec li:first-of-type p {
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  color: var(--deep-black);
}

.sign-sec li:last-of-type {
  margin-bottom: auto;
}

.signature-section {
  margin-bottom: 20px;
  padding-top: 10px;
}

.table-appraisal table td {
  padding: 10px 20px;
}

.signature-docs {
  height: 70px;
}

.signature-docs .drag-text h3 {
  font-size: 12px;
}

.content-up-one .image-details::after,
.content-up-two .image-details::after {
  display: none;
}

.content-up-one .remove-image,
.content-up-two .remove-image {
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-row-table+.table-bottom .form-items {
  border-bottom: 0;
}

/* ------------------Policies and Procedure-------------- */
.file-folder {
  margin: 20px -0.5%;
}

.file-folder-items {
  width: 19%;
  min-height: 50px;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  margin: 0.5%;
  position: relative;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.folder-content-wrapper {
  position: relative;
  padding: 20px;
  width: 100%;
}

.folder-details {
  display: flex;
  align-items: center;
}

.folder-action {
  position: absolute;
  top: 50%;
  right: 20px;
  position: absolute;
  transform: translateY(-50%);
}

.folder-details span {
  margin-left: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--deep-black);
  max-width: 72%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-folder-popup .form-items,
.new-file-popup .form-items {
  padding-bottom: 0;
  border: none;
}

.new-file-popup li~li,
.new-job-popup li~li {
  margin-top: 10px;
}

.file-innerbox {
  display: none;
}

.file-folder-items:hover {
  background-color: #f4f5fa;
}

.file-folder-items .dwnld {
  display: none;
}

.file-folder-items:hover .dwnld {
  display: block;
}

.file-box.hide {
  display: none;
}

.file-innerbox.active {
  display: block;
}

.folder-title {
  display: flex;
  align-items: center;
  margin-right: 10px !important;
  flex-grow: 1;
}

.folder-title span {
  margin-right: 15px;
  transition: 0.3s all ease-in;
  cursor: pointer;
}

.folder-title span.icon-back_icon:hover {
  color: var(--main-color);
}

.n-folder.disable a {
  pointer-events: none;
}

.file-folder .file {
  padding: 0;
}

.file-folder .file a {
  width: 100%;
  display: block;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*------------------- salary slip---------------- */
.salary-slip-table tbody td {
  padding: 10px 20px;
}

.salary-slip-table {
  margin-bottom: 0;
}

.table-salary-slip .table_wrapper {
  overflow-x: auto;
}

.salary-slip-table .green-bottom td {
  padding: 20px 10px;
  border: none;
}

.table-top-form {
  display: flex;
  margin: 0 -10px;
}

/* .table-top .form-feild-box{
    margin:0 0 0 20px;
} */
.table-top .form-feild-box::after {
  top: 50%;
  transform: translateY(-50%);
}

/* ---------------------training-cources-------------------------- */
.three-d-swipper {
  width: 100%;
  background: var(--gradient-bg);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  padding: 40px;
}

.three-d-swipper h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.training-swipper-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 45px;
  color: #ffffff;
  margin-bottom: 0;
}

.training-course-list ul#tabs-nav {
  margin-left: auto;
}

.training-course-list ul#tabs-nav::after {
  background-color: #f3f2f6;
}

.training-course-list .tab-item {
  position: relative;
  padding: 0;
  padding-bottom: 15px;
}

.tab-item .course-alert {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  top: 0;
  right: 4%;
  border-radius: 50%;
  background-color: #e02323;
  color: var(--white-color);
  font-size: 10px;
  font-weight: 400;
}

.video-box-wrapper {
  margin: 20px -1% -10px;
}

.video-box-wrapper .card-boxes {
  width: 23%;
  margin: 1% 1%;
}

.training-course-list .card-boxes {
  -webkit-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.training-course-list .tab-item a {
  color: #8b8d97;
  padding: 5px 25px 15px 25px;
}

.training-course-list .tab-item a:hover {
  color: var(--main-color);
}

.training-course-list .tab-item:first-child a:visited .course-alert {
  display: none;
}

.video-box .video-info h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: var(--deep-black);
}

.video-box .vid-tumb .vid-tumb-wrapper {
  display: block;
  width: 100%;
}

.video-box .vid-tumb .vid-tumb-wrapper img {
  width: 100%;
  margin-right: 0 !important;
}

.video-box .vid-title,
.video-box .course-inside {
  padding: 15px;
}

.video-box ul>div {
  position: relative;
}

.video-box ul>div .drop-parent {
  position: absolute;
  top: 15px;
  right: 15px;
}

.video-box .course-inside {
  padding-top: 0 !important;
}

.video-box .vid-title span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--light-grey);
}

.video-box .course-inside p {
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  color: var(--deep-black);
}

.video-box .course-inside p~p {
  margin-left: 25px;
}

.video-box .course-inside span {
  padding-right: 5px;
}

.add_course_form textarea,
.training_request-form textarea {
  min-height: 115px;
  height: auto;
  resize: vertical;
}

.vid-thum-link {
  position: relative;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.video-box .drop-parent {
  padding-top: 0;
}

/* -----------file up for training----------- */
.fileup-btn-type {
  background-color: #ffffff;
  width: 100%;
  height: 35px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding: 0 2px;
}

.fileup-upload-wrap {
  position: relative;
}

.file-up-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.fileup-btn {
  height: 29px !important;
  width: auto;
  padding: 0 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: var(--main-color);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  color: #ffffff;
}

.training-file-wrap {
  padding: 5px 15px;
  color: #222;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}

.training-file-content {
  display: none;
  text-align: center;
  width: 100%;
  margin-right: 20px;
}

.training-file-content.active {
  display: block;
}

.remove-file span {
  font-size: 16px;
}

.training-file-wrap .image-name {
  font-size: 12px;
  line-height: 14px;
  max-width: 239px;
  overflow: hidden;
  margin-right: 10px;
  text-overflow: ellipsis;
}

.remove-file {
  width: 20px;
  margin: 0;
  color: rgb(0, 0, 0);
  background: #ffffff;
  margin-left: 30px;
}

.add-row-btn {
  width: 35px;
  height: 35px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.file-up-wrapper {
  height: 35px;
}

.file-up-wrapper .kpi-btn {
  margin-left: 0;
}

.add-new-row {
  display: none;
}

.vid-tumb {
  position: relative;
}

.video-position-track {
  position: absolute;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  bottom: 0;
  z-index: 10;
}

.video-position {
  position: absolute;
  background-color: var(--main-color);
  height: 100%;
}

.vide-watching {
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 3px 5px;
}

.vide-watching p {
  color: var(--main-color);
  font-size: 14px;
  line-height: 14px;
}

.vide-watching p span:first-child {
  margin-right: 5px;
}

/*----------- media player------------- */
.training-inside {
  margin: 0 -25px;
}

.training-inside>div {
  margin: 0 25px;
}

.media_player_wrapper {
  margin-top: 20px;
}

.video-details {
  margin: 35px auto 35px;
}

/*------------- pecentage---------------- */
.percent-plyr {
  cursor: pointer;
  display: none;
}

.percent-plyr .circle_percent {
  transform: scale(1.5);
}

/*------------- pecentage---------------- */
.training-info {
  margin: 0 -5px;
}

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

.training-info .table-bg-light-blue {
  padding: 8px 15px;
  margin: 0 5px;
}

.video-details p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--deep-grey);
}

.vid-count {
  margin-left: 5px;
  width: 100%;
}

.course-step li {
  width: auto;
  height: 5px;
  display: block;
  flex-grow: 1;
  background-color: #cce8cf;
  margin: 0 1px;
}

.course-step li.completed {
  background-color: #008e0e;
}

.course-step {
  margin: 0 -2px;
}

.course-step li:first-child {
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-bottom-left-radius: 3px;
  -o-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-top-left-radius: 3px;
  -o-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
}

.course-step li:last-child {
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-bottom-right-radius: 3px;
  -o-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-top-right-radius: 3px;
  -o-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
}

.completed-course span {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--light-grey);
}

.completed-course {
  margin-top: 5px;
}

.completed-course>div {
  padding-bottom: 5px;
}

.course-list {
  padding-top: 20px;
  height: 540px;
  overflow-y: auto;
}

.course-list::-webkit-scrollbar {
  display: none;
}

.course-list .training-details {
  margin: 0 20px;
}

.course-list .current .training-details p {
  color: #008e0e;
}

.course-list li+li {
  margin-top: 18px;
  margin-bottom: 18px;
  cursor: pointer;
}

.course-list .training-details p {
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  color: var(--deep-black);
  transition: all 0.3s ease-in;
}

.course-list li:hover .training-details p {
  color: #008e0e;
}

.course-list .training-details>span {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: var(--light-grey);
}

.course-list .percent_more:after,
.course-list .round_per {
  background-color: #008e0e;
}

.tick {
  display: none;
}

.completed .tick {
  display: block;
  min-width: 15px;
}

.training-request .pop-body {
  min-width: 700px;
}

.training-request label {
  font-size: 13px;
  color: #949494;
  margin-bottom: 0;
}

.training-request .form-feild-box>p {
  color: #2c2d33;
  font-weight: 500;
}

.training-inside .pdf-viewer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
  position: relative;
  background-color: #efefef;
  margin-top: 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

.training-inside .pdf-viewer video {
  width: 100%;
}

.training-inside .pdf-viewer .pdf-viewer-wrapper {
  position: absolute;
}

.pdf-image {
  width: 70px;
  height: auto;
}

.pdf-viewer .course-title {
  margin: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: var(--deep-black);
  text-align: center;
  max-width: 625px;
}

.training-inside .wish-box {
  padding: 35px 0 0;
}

.percent-plyr {
  position: absolute;
}

/*--------------- leave approve------------------- */

.approve-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  margin: 10px;
}

.approve-item.active {
  opacity: 1;
}

.approve-item li:nth-child(2) {
  margin-top: 10px;
}

.approve-item li:nth-child(2) p {
  display: none;
}

.approve-item.active li:nth-child(2) p {
  display: block;
}

.approve-item li span {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--deep-black);
  text-align: center;
}

.approve-item li p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--light-grey);
  text-align: center;
}

.approve-item li:first-child {
  width: 54px;
  height: 54px;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.approve-item li:first-child>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approve-item .tick-bx {
  position: absolute;
  width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  bottom: 0;
  right: 0;
  -webkit-border-radius: 3px 0px 3px;
  -moz-border-radius: 3px 0px 3px;
  -o-border-radius: 3px 0px 3px;
  border-radius: 3px 0px 3px;
}

.approve-item.active .tick-bx {
  display: flex;
}

.approve-item .tick-bx img {
  width: 12px;
}

.table-leave-settings table {
  border-bottom: 1px solid #eaeaea;
}

.leave-setting-action img {
  margin: 0 5px;
}

#leavetype_add_div>form {
  margin: 0;
}

#leavetype_add_div .role-popup .input_box {
  padding: 15px 0;
}

.right-popup {
  position: absolute;
  right: 20px;
}

/* ------------------------404pagr------------------------ */
.not-found {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.not-found li {
  margin-bottom: 15px;
}

.not-found h3 {
  font-weight: 700;
  font-size: 140px;
  line-height: 106px;
  color: var(--deep-black);
  margin: 0;
}

.not-found h6 {
  font-weight: 600;
  font-size: 34px;
  line-height: 30px;
  color: var(--deep-black);
  margin: 0;
}

.not-found p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #9f9f9f;
}

.not-found .gradient-button {
  height: 40px;
}

.table-performance-list table td:nth-child(2),
.table-performance-list table td:nth-child(3),
.table-performance-list table td:nth-child(4),
.table-performance-list table td:nth-child(5) {
  white-space: nowrap;
}

.page-top .top-btn-grp {
  margin-left: -10px;
  margin-right: -10px;
}

.page-top .top-btn-grp * {
  margin: 0 10px;
}

/*-------------------- pay slip------------------- */
.payslip-table .col-two-items {
  margin: 0;
  width: 50%;
}

.payslip-table h6 {
  font-size: 14px;
  color: var(--deep-black);
  font-weight: 500;
  line-height: 15px;
  margin-bottom: 0;
}

.payslip-table .col-two-items .form-feild-box {
  padding: 20px 20px 0px 20px;
  margin-bottom: 0;
}

.payslip-title {
  padding: 20px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.grey-bottom ul,
.green-bottom ul {
  padding: 20px 30px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
}

.grey-bottom ul {
  background-color: #949494;
}

.green-bottom ul {
  background-color: #00a595;
}

.green-bottom .col-two-items {
  border-right: 0 !important;
}

.salary-deduction li:last-child,
.salary-details li:last-child {
  padding-bottom: 20px;
}

.payslip-table li .col-two-items:first-child li,
.grey-bottom .col-two-items:first-child ul {
  border-right: 1px solid #eaeaea;
}

.grey-bottom .col-two-items:first-child li,
.green-bottom .col-two-items:first-child li {
  border-right: 0 !important;
}

.payslip-title {
  border-right: 0 !important;
}

.sal-slip-upload {
  width: 64.66%;
  margin: 0 1%;
  margin-bottom: 20px;
  display: non;
}

.sal-slip-upload label {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: #6e7079;
  margin-bottom: 8px;
}

.form-box .salary-upload {
  display: none;
}

.sal-slip-upload .image-title-wrap {
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.payroll-upload .form-box {
  padding-bottom: 0;
}

.employee_summary {
  padding: 0 20px 30px;
}

.employee_summary>.three-col-form {
  margin-top: 20px;
}

.hr-req-approve .leave-req-form textarea {
  height: 130px;
}

.payroll-file {
  flex-direction: column;
  /* margin: 0 1%;
    width: 66.66%; */
  display: flex;
}

.payroll-file .file-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.payroll-file .file-wrapper .file-box {
  display: flex;
  border: 1px solid #eaeaea;
  padding: 15px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

.payroll-file label {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: #6e7079;
  margin-bottom: 8px;
}

.payroll-file table {
  margin-bottom: 0;
}

.file-box img {
  margin-right: 10px;
}

.payroll-upload li>.button-block {
  width: 66.66%;
  margin: 0 1%;
  padding-bottom: 15px;
}

.payroll-file .table-top {
  padding: 0 0 20px 0;
}

.payroll-upload .form-box {
  border-bottom: 0;
}

.payroll-file .full_table_wrapper {
  height: auto;
  max-height: 700px;
}

/*-------------------------- dasboard text editor------------------------ */
#wysiwyg option {
  background-color: white;
  color: grey;
}

#wysiwyg select,
#wysiwyg input,
#wysiwyg button {
  background-color: white;
  border: none;
  padding: 0.5em 0.8em;
  border-radius: 4px;
  color: grey;
  cursor: pointer;
  outline-style: none;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

#wysiwyg select:hover,
#wysiwyg input:hover,
#wysiwyg button:hover {
  background-color: #efefef;
  color: black;
}

#wysiwyg select:not(:last-child),
#wysiwyg input:not(:last-child),
#wysiwyg button:not(:last-child) {
  margin-right: 4px;
}

#wysiwyg select[type="color"],
#wysiwyg input[type="color"],
#wysiwyg button[type="color"] {
  width: 1.2em;
}

#wysiwyg select[type="number"],
#wysiwyg input[type="number"],
#wysiwyg button[type="number"] {
  width: 3em;
}

#wysiwyg {
  border-radius: 8px;
  width: 100%;
  max-height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#wysiwyg .btns {
  padding: 0.3em 0.3em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #efefef;
  background-color: white;
  flex-grow: 2;
}

#wysiwyg .btns .category {
  display: flex;
  align-items: center;
  border-right: 1px solid #efefef;
  padding: 0 4px;
}

#wysiwyg #editor {
  resize: none;
  background-color: white;
  outline-style: none;
  border: none;
  width: 100%;
  box-sizing: border-box;
  padding: 50px 50px;
  max-height: calc(80vh);
  overflow: auto;
}

#wysiwyg #editor img {
  max-width: 100%;
}

/*-------------------------- end of dasboard text editor------------------------ */
.owl-nav {
  display: none;
}

.tumbnail-wrapper:hover .owl-nav {
  display: block;
}

.tumbnail-wrapper:hover .owl-nav.disabled {
  display: none;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: rgb(255, 255, 255);
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
  left: 0;
}

.owl-nav button.owl-next {
  right: 0;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(65, 65, 65, 0.38) !important;
}

.owl-nav span {
  font-size: 70px;
  position: relative;
  top: -5px;
  color: #000000;
}

.owl-nav button:focus {
  outline: none;
}

/* video owl */
.posted-video .item {
  opacity: 0.4;
  transition: 0.4s ease all;
  transform: scale(0.8);
}

.posted-video .active .item {
  opacity: 1;
  transform: scale(1);
}

.posted-video .owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.posted-video video {
  max-width: 100%;
  height: auto;
}

.tumbnail-wrapper.one-item :hover .owl-nav {
  display: none;
}

/* create live jobs  */
.create-jobs .radio-btn-list {
  margin-left: 30px;
}

.add-job-text-area {
  width: 64.66%;
}

/*----------------- apply job--------------- */
.job-para {
  margin: 15px 0 20px;
}

.job-para p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6e7079;
}

.four-item-row {
  display: flex;
  margin: 10px -1% 10px;
}

.four-item-row .form-feild-box {
  width: 23%;
  margin: 0 1%;
}

.four-col-form .half-row {
  margin: 10px 0;
}

.half-row .form-feild-box {
  width: 49%;
}

.job-form-wrapper {
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

/*--------------------- corporate videos------------------ */
.corporate-video-upload {
  margin: 0 1%;
  width: 66.66%;
  margin-bottom: 20px;
}

.corporate-video-upload label {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: #6e7079;
  margin-bottom: 8px;
}

.corporate-video-list table tr {
  border-bottom: 1px solid #eaeaea;
}

.form-box .crp-vid-up {
  display: none;
}

.corp-video {
  width: 50px;
}

.corp-video-upload-sec .input-box {
  width: 66.66%;
}

.corp-video-upload-sec .video-upload-box {
  width: 20%;
}

/*----------------------leave adjustment----------------- */
.table-leave-adjustment .tbody-white>tr {
  border-bottom: 1px solid #eaeaea;
}

.choose-leave-adjustment ul {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
}

.table-leave-adjustment .table_wrapper {
  height: calc(100% - 160px);
  overflow-y: auto;
}

.event-list {
  margin: 20px -0.5% 0;
  display: flex;
  flex-wrap: wrap;
}

.events-list-item {
  width: 13.28%;
  min-height: 50px;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  margin: 0.5%;
  position: relative;
}

.events-img-wrapper img {
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  -o-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.event-inner-list {
  padding: 10px;
}

.event-inner-list li:first-child {
  padding-bottom: 5px;
}

.events-list-item .drop-parent {
  top: 10px;
  right: 5px;
}

.event-grp-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #495057;
  max-width: 145px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eventup-date {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #8b8d95;
}

.event-list-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.new-event-popup .form-items {
  border-bottom: 0;
  padding-bottom: 0;
}

.event-video-list .media-upload {
  background-color: #f4f5fa;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border: 2px dashed #d9d9d9;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.new-event-popup .form-feild-box {
  margin-bottom: 15px;
}

.media-upload-wrapper {
  position: relative;
}

.media-file-upload {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

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

.media-upload-text h3 {
  color: var(--deep-black);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
}

.media-up-button {
  margin: 0;
  color: var(--main-color);
  border: none;
}

.media-upload-text p {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--light-grey);
}

.col-three-item .share_btn_holder {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.col-three-item .share_btn_holder .icon-share-2 {
  font-size: 16px;
}

.col-three-item .drop-parent {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.col-three-item .social-icon-holder {
  min-width: 45px;
  right: -13px;
  margin-top: 10px;
}

.select-parent .icon-share-2 {
  font-size: 18px;
}

.col-three-item .drop-parent {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.media-file-box {
  width: 100%;
  background-color: #ffffff;
}

.media-upload-content {
  display: none;
  padding: 10px 15px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  color: var(--light-grey);
  line-height: 27px;
}

.media-upload-content.file-found {
  display: flex;
}

.media-file-box {
  display: flex;
}

.media-file-count {
  color: var(--light-grey);
  line-height: 27px;
  margin-right: 5px;
}

/*------------------- attendance-------------- */
.user-attendance-top {
  display: flex;
  align-items: start;
}

.user-attendance-top .profile-round {
  width: 60px;
  height: 60px;
  margin-right: 24px;
}

.user-attendance-top ul {
  display: flex;
  align-items: start;
  margin: 0 -1%;
  flex-grow: 1;
  flex-wrap: wrap;
}

.user-attendance-top ul>li {
  width: 23.33%;
  margin: 0 1%;
}

.user-attendance-top ul>li label {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #949494;
}

.user-attendance-top ul>li h6 {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #2c2d33;
}

.attendence-user-view table tr {
  border-bottom: 1px solid #eaeaea;
}

.attendence-user-view table tr.holiday td {
  color: #c2c4d1;
}

.attendence-user-view {
  height: calc(100vh - 340px);
}

.attendence-user-view .table_wrapper table td:not(:last-child) {
  min-width: 125px;
}

.attendence-user-view .full_table_wrapper::-webkit-scrollbar {
  display: block;
  height: 10px;
  width: 0;
}

/* Track */
.attendence-user-view .full_table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.attendence-user-view .full_table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177);
}

.pending-action {
  position: relative;
}

.pending-status {
  color: var(--main-color);
  text-decoration: underline;
  cursor: pointer;
  display: inline;
  white-space: nowrap;
}

.pending-action .reject-reason:after {
  right: auto;
  left: 60px;
}

.reject-title h6:first-child {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
  margin-bottom: 0;
}

.attendance-request .pending-buttons .reject-button,
.attendance-request .pending-buttons .approve-button {
  height: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  width: 50%;
  margin: 0 7px;
}

.attendance-request .pending-buttons .reject-button {
  background: #f64d44;
}

.attendance-request .pending-buttons .reject-button:hover {
  background: #bd322a;
}

.attendance-request .pending-buttons .approve-button {
  background: #00a595;
}

.attendance-request .pending-buttons .approve-button:hover {
  background: #01756a;
}

.attendance-sheet {
  height: calc(100vh - 224px);
}

.attendance-sheet .table_wrapper {
  overflow-x: auto;
  overflow-y: auto;
}

.attendance-sheet .table_wrapper::-webkit-scrollbar {
  display: block;
  height: 5px;
  width: 0;
}

/* Track */
.attendance-sheet .table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.attendance-sheet .table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177);
}

.attendance-sheet table tr td:not(:first-child) {
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  width: 35px;
}

.attendance-sheet tr td:first-child {
  width: 250px;
}

.attendance-sheet tr td span {
  font-size: 18px;
}

.attendance-sheet table tr {
  border-bottom: 1px solid #eaeaea;
}

.attendance-sheet table {
  margin-bottom: 0;
}

.table-attendance-indicator {
  margin-top: 20px;
}

.table-attendance-indicator>div>* {
  margin: 0 5px;
}

.indicator-bg span {
  margin-right: 5px;
  font-size: 12px;
}

.indicator-bg {
  padding: 5px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.attendance-sheet .full_table_wrapper {
  height: calc(100% - 140px);
}

.attendance-indicator-wrapper {
  position: relative;
  justify-content: center;
}

li.attendance-input {
  display: flex;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 0;
}

.atten_input_wrapper {
  padding: 5px 0;
}

.atten_input_wrapper input {
  width: 100%;
  border: 1px solid #E7E7E7;
  font-weight: 400;
  font-size: 13px;
  color: var(--deep-black);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  padding: 4px 10px;
}

.pending-buttons>div {
  margin: 0 -7px;
  flex-grow: 1;
}

/*------------------- end of attendance-------------- */
/*-------- flight ticket approve------ */
.hr-request-table .flight-ticket-enable td {
  position: relative;
}

.hr-request-table .flight-ticket-link {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 100%;
}

.fl-ticket-info,
.fl-ticket-details {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1%;
  margin-left: -1%;
}

.fl-ticket-info>li {
  width: 23%;
  margin: 1%;
}

.flight-ticket-info .pop-body {
  width: 875px;
}

.fl-ticket-info-item span {
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: var(--light-grey);
}

.fl-ticket-info-item p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--pure-black);
}

.flight-ticket-info h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: var(--pure-black);
}

.fl-ticket-info-item .visa-stat {
  color: #008e0e;
}

.fl-ticket-details>li {
  width: 14.66%;
  margin: 1%;
}

/*--------end of flight ticket approve------ */
.raise-ticket .pop-body {
  width: 630px;
}

.raise-ticket ul li+li {
  margin-top: 15px;
}

.raise-ticket ul.col-two li+li {
  margin-top: 0;
}

.raise-ticket .col-two-items .form-feild-box {
  margin: 0;
}

.raise-ticket-info {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1%;
  margin-left: -1%;
}

.raise-ticket-info>li {
  width: 31.33%;
  margin: 1%;
}

.ticket-list-table table {
  margin-bottom: 0;
}

#ticket_approve_form .three-col-row .form-feild-box {
  width: 30%;
}

#ticket_approve_form textarea.form-control {
  font-size: 13px;
}

/* --------------------maping--------------- */
.maping-file .payslip-table .col-two-items .form-feild-box {
  padding: 0;
}

.maping-file .salary-deduction>li,
.maping-file .salary-details>li {
  padding: 15px;
  border-bottom: 1px solid #eaeaea;
  min-height: 66px;
  display: flex;
  align-items: center;
}

.maping-file .salary-deduction>li .form-feild-box {
  width: 100%;
}

.maping_table table thead td {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--deep-black);
  font-weight: 500;
  line-height: 15px;
}

.maping_table table {
  margin-bottom: 0;
}

.maping_table table td {
  width: 50%;
  height: 51px;
}

.maping_table table td:first-child {
  border-left: 0;
}

.maping_table table td:last-child {
  border-right: 0;
}

.maping_table table td .SumoSelect {
  width: 100%;
}

.videoWrapperActive::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/pause_icon.svg");
  background-repeat: no-repeat;
  width: 44px;
  height: 44px;
  opacity: 0;
  transition: 0.4s all ease-in;
}

.swiper-slide.swiper-slide-active:hover .videoWrapperActive::after {
  opacity: 1;
}

.salary-info table td {
  text-align: center;
}

.salary-info table td:first-child {
  text-align: start;
}

.salary-info table td:last-child {
  font-weight: 600;
  color: #475366;
}

.salary-info .full_table_wrapper {
  max-height: calc(100vh - 230px);
  overflow: auto;
}

.salaryslip-popup .carousel__button {
  top: -40px !important;
  right: -40px !important;
}

/*------------------ probation---------- */

.table-probation .side-title p {
  all: unset;
  display: inline-block;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--light-grey);
  padding-top: 10px;
}

.table-probation table tr td {
  vertical-align: top;
  padding: 10px;
  min-width: 200px !important;
}

.table-probation table tr td:last-child {
  min-width: 230px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-right: 0;
  border-right: 0;
}

.table-probation table tr td:first-child {
  border-left: 0;
}

.table-probation table tr td:last-child div>textarea {
  height: 65px;
  border: 1px solid #d9d9d9;
  resize: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.table-probation .table_wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}

.table-probation .table_wrapper::-webkit-scrollbar {
  display: block;
  height: 10px;
}

/* Track */
.table-probation .table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.table-probation .table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177);
}

.table-probation::-webkit-scrollbar {
  height: 10px;
  background: gray;
}

.table-probation::-webkit-scrollbar-thumb:horizontal {
  background: #000;
  border-radius: 10px;
}

.table-probation td .checkmark-container {
  margin: 0 auto;
}

.table-probation td p {
  font-size: 13px;
  line-height: 16px;
  margin-top: 20px;
  text-align: center;
}

.table-loader {
  height: calc(407px - 51px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.extra-filter h4 {
  padding-bottom: 10px
}

.tickets-popup .input_box label {
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #6e7079;
  margin-bottom: 8px;
}

/* logo list */
.hr-log-list {
  min-width: 700px;
}

.log-head,
.log-row {
  display: flex;
  align-items: center;
  padding: 10px 15px;

}

.log-head {
  padding: 15px 15px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.log-row {
  border-bottom: 1px solid #eaeaea;
}

.log-head>div,
.log-row>div {
  flex-grow: 1;
  text-align: center;
}

.log-head>div {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: var(--pure-black);

}

.log-row>div {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--table-color);
}

/*------------------------ for the printing--------------------------------- */
@media print {
  body {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .side-menu {
    display: none;
  }

  .header {
    display: none;
  }

  .content {
    width: 100%;
    margin: 0;
  }

  .appraisal-table-wrapper {
    width: 100%;
    overflow: visible;
  }

  .table-inner-box {
    min-width: auto;
  }

  .appraisal-table-wrapper td {
    min-width: auto !important;
    width: auto;
  }

  .rating-box {
    flex-direction: column;
    row-gap: 10px;
  }
}

.holidays-page td {
  min-width: 125px;
}

.it-support-page td {
  min-width: 150px;
}

.it-select .SumoSelect {
  margin: 0 !important;
}

.it-support-ticket input.form-control {
  height: 35px;
}

.it-support-ticket .form-control {
  font-size: 13px;
}

.employee-directory-home .table-employee .full_table_wrapper td {
  min-width: 150px;
}

.employee-directory-home .table-employee .full_table_wrapper td:last-child {
  min-width: 70px;
}

.employee-directory-home .table-employee .full_table_wrapper::-webkit-scrollbar,
.leave-approval-home .full_table_wrapper::-webkit-scrollbar {
  display: block;
  height: 10px;
  width: 0;
}

/* Track */
.employee-directory-home .table-employee .full_table_wrapper::-webkit-scrollbar-track,
.leave-approval-home .full_table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
}

/* Handle */
.employee-directory-home .table-employee .full_table_wrapper::-webkit-scrollbar-thumb,
.leave-approval-home .full_table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177) !important;
}

.leave-approval-home .full_table_wrapper td {
  min-width: 150px;
}

.leave-approval-home .full_table_wrapper td:last-child {
  min-width: 70px;
}

.leave-summary-home .full_table_wrapper {
  min-width: 130px;
}

.leave-setting-action {
  white-space: nowrap;
  min-width: 115px;
}

#add_insurance {
  min-width: 700px;
  max-width: 700px;
}

.branch-page .table_wrapper td:not(:last-child, :first-child) {
  min-width: 200px;
}

.department-table .table_wrapper td:not(:last-child, :first-child) {
  min-width: 150px;
}

.salary-slip-page .full_table_wrapper table td:not(:last-child, :nth-last-child(2)) {
  min-width: 100px;
}

.import-payroll .input-box {
  margin-bottom: 5px;
}

.table-leave-record table td:not(:last-child) {
  min-width: 100px;
}

.noc-include-salary {
  flex-wrap: wrap;
}

.attendance-page table td:not(:last-child) {
  min-width: 150px;
}

.welcome_screen {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ffffff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
}

.welcome-text {
  color: #00a293f7;
  font-size: 40px;
  line-height: 45px;
}

/* -----------------------qr code block------------------------- */
.qr-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.qr-title h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #45464E;
  margin-bottom: 20px;

}

.qr-title span {
  color: #00A293;
  font-weight: 700;
  font-style: italic;
}

.qr-block {
  display: flex;
  margin: -10px;
}

.qr-image {
  width: calc(50% - 20px);
  background-color: #c8f0ed;
  padding: 10px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  margin: 10px;
}

/* user export */
.user_column_list {
  padding: 20px 0 30px;
  border-bottom: 1px solid #eaeaea;
}

.user_column_child {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -15px 0 20px;
}

.user_column_child>li {
  margin: 10px 15px;
}

.user_column_child>li .checkmark-container {
  color: #878383;
}

.user_column_item+.user_column_item {
  padding-top: 15px;
  border-top: 1px solid #eaeaea;
}

.absent-round {
  display: flex;
  width: 16px;
  min-width: 16px;
  height: 16px;
  border: 1px solid #00C68B;
  border-radius: 50%;
  color: #00C68B;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  cursor: default;
}

.absent-round-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-tooltip {
  position: relative;
}

.comment-tooltip-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 110%;
  width: 350px;
  padding: 15px;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  z-index: 99999;
  -webkit-box-shadow: 0px -1px 16px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0px -1px 16px rgb(0 0 0 / 20%);
  -o-box-shadow: 0px -1px 16px rgb(0 0 0 / 20%);
  box-shadow: 0px -1px 16px rgb(0 0 0 / 20%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;

}

.comment-tooltip-content p {
  word-break: break-all;
  color: #000;
}

.comment-tooltip:hover .comment-tooltip-content {
  display: block;
}

.comment-tooltip-content::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 15px;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 6px solid black;
  border-color: transparent transparent #ffffff #ffffff;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-box-shadow: -4px 3px 5px 0 rgb(0 0 0 / 8%);
  -moz-box-shadow: -4px 3px 5px 0 rgb(0 0 0 / 8%);
  box-shadow: -4px 3px 5px 0 rgb(0 0 0 / 8%);
  z-index: 1;
}





/*------------------- kpi modification 2.0-------------- */
.errorModal {
  display: none;
  position: fixed;
  min-height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  top: 0;
  left: 0;
}

.errorModal.show {
  display: block;
}

.errorModal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 500px;
  background-color: #ffffff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
}

.error_table_wrapper table td {
  padding: 15px 15px;
  font-size: 14px;
  font-weight: 400;
}

.error_table_wrapper table th {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 500;
  background: none;
}

.modal-header .close {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.modal_btn_block {
  display: flex;
  justify-content: flex-end;
  padding: 15px;
}

.errorModal-content .modal-body {
  padding: 0;
}

.errorModal-content .modal-header {
  border-bottom: none;
}

.error_table_wrapper .headingrow {
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
}


/* Initial style for closed accordion */
.accordion-content {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  /* Add a slow transition effect */
}

/* Style for open accordion */
.accordion-content.open {
  display: table-row;
  max-height: 500px;
  /* Adjust the maximum height as needed */
  transition: max-height 0.5s ease;
  /* Add the same transition effect */
}

.accordion-content td {
  padding: 15px 20px 5px;
  background-color: #e9e9e9;
}

.expnd-action {
  cursor: pointer;
}

.kpi_approval_table .full_table_wrapper {
  height: calc(100% - 75px);
}

.kpi_approval_table table {
  margin-bottom: 0;
}

.expanded_status-title {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  color: var(--deep-black);
}

/*----------------------------------- progress steps---------------------------- */
.navigation_menu {
  width: 100%;
  min-height: 150px;
  display: flex;
  align-items: center;
}

.navigation_tabs {
  flex-grow: 1;
  counter-reset: step;
  margin: -1px -4%;
  display: flex;
  justify-content: center;
}

/* one item */
.navigation_tabs li:first-child:nth-last-child(1) {
  width: 100%;
}

/* two items */
.navigation_tabs>li:first-child:nth-last-child(2),
.navigation_tabs>li:first-child:nth-last-child(2)~li {
  width: 49%;
}

/* three items */
.navigation_tabs>li:first-child:nth-last-child(3),
.navigation_tabs>li:first-child:nth-last-child(3)~li {
  width: 30.3333%;
}

/* four items */
.navigation_tabs>li:first-child:nth-last-child(4),
.navigation_tabs>li:first-child:nth-last-child(4)~li {
  width: 24%;
}

/* five items */
.navigation_tabs>li:first-child:nth-last-child(5),
.navigation_tabs>li:first-child:nth-last-child(5)~li {
  width: 19%;
}

/* six items */
.navigation_tabs>li:first-child:nth-last-child(6),
.navigation_tabs>li:first-child:nth-last-child(6)~li {
  width: 16%;
}

/* seven items */
.navigation_tabs>li:first-child:nth-last-child(7),
.navigation_tabs>li:first-child:nth-last-child(7)~li {
  width: 14%;
}

/* seven items */
.navigation_tabs>li:first-child:nth-last-child(8),
.navigation_tabs>li:first-child:nth-last-child(8)~li {
  width: 12%;
}

/* seven items */
.navigation_tabs>li:first-child:nth-last-child(9),
.navigation_tabs>li:first-child:nth-last-child(9)~li {
  width: 11.11%;
}

/* seven items */
.navigation_tabs>li:first-child:nth-last-child(10),
.navigation_tabs>li:first-child:nth-last-child(10)~li {
  width: 9.5%;
}


.navigation_tabs>li {
  list-style: none;
  display: inline-block;
  position: relative;
  text-align: center;
  cursor: pointer;
}

a {
  color: #000;
}

.navigation_tabs>li a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-black);
}

.navigation_tabs>li:before {
  content: counter(step);
  counter-increment: step;
  width: 40px;
  height: 40px;
  line-height: 27px;
  border: 7px solid #dadada;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 5px auto;
  background-color: #fff;
  position: relative;
  z-index: 5;
  color: var(--deep-black);
}

.navigation_tabs>li:not(:first-child):before {
  content: counter(step);
  counter-increment: step;
  width: 40px;
  height: 40px;
  line-height: 27px;
  border: 7px solid #dadada;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 5px auto;
  background-color: #fff;
  position: relative;
  z-index: 5;
  color: var(--deep-black);
}



/* .navigation_tabs > li:first-child:before {
  content: ""; 
  width: 40px;
  height: 40px;
  line-height: 27px;
  border: 7px solid #dadada;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 5px auto;
  background-color: #fff;
  position: relative;
  z-index: 5;
  color: var(--deep-black);
}

.navigation_tabs > li:not(:first-child):before {
  content: counter(step);
  counter-increment: step;
  width: 40px;
  height: 40px;
  line-height: 27px;
  border: 7px solid #dadada;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 5px auto;
  background-color: #fff;
  position: relative;
  z-index: 5;
  color: var(--deep-black);
} */


.navigation_tabs>li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #c2c2c2;
  top: 18px;
  left: -50%;
  z-index: 1;
}

.navigation_tabs>li:first-child:after {
  content: none;
}

/* .navigation_tabs li.tab_active,
.navigation_tabs li.tab_inactive{
  color: green;
} */

/* .navigation_tabs li.tab_active a:hover,
.navigation_tabs li.tab_inactive a:hover {
  font-weight: bold;
} */


/* .navigation_tabs li.tab_active:before {
  border-color: green;
} */

.navigation_tabs>li.tab_inactive:before {
  border-color: rgba(230, 246, 245, 1);
  background-color: var(--main-color);
  color: #fff;
}

.navigation_tabs>li.tab_rejected:before {
  border-color: rgba(255, 225, 225, 1);
  background-color: #b54646;
  color: #fff;
}

.navigation_tabs>li.tab_inactive:after {
  background-color: var(--main-color);
}

.navigation_tabs .top_status {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-black);
  white-space: nowrap;
}

.navigation_tabs .approve-level {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-black);
}

.navigation_tabs .status_date {
  display: inline-block;
  position: absolute;
  font-size: 12px;
  font-weight: 400;
  color: var(--light-grey);
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.viewButton {
  margin-left: 20px
}

.approve-person {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
  color: var(--light-grey);
}

.level-select {
  margin-top: 10px;
}

.level-select p {
  text-align: left;
}

.level-select li {
  text-align: left;
}

.kpi_approval_table {
  height: calc(100vh - 220px);
  overflow: hidden;
}

.kpi_approve_popup {
  min-width: 700px;
}

.kpi_approve_popup textarea {
  resize: none;
}

.chat-top {
  min-height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
  align-items: center;
}

.chat-choose-list {
  padding: 0;
  min-height: 580px;
  overflow-y: auto;
}

.chat-choose-item.active {
  background-color: #F4F4F4;
  opacity: 1;
}

.chat-choose-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  opacity: 0.5;
  border-bottom: 1px solid #F1F3F9;
}
.chat-choose-item .checkmark{
    transform: translateY(-65%);
  }

.chat-choose-item h5,
.chat-top h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--deep-black);
}

.chat-top span {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--light-grey);

}

.chat-body {
  display: flex;
  height: calc(100% - 140px);
  max-height: 500px;
  overflow-y: auto;
  flex-direction: column-reverse;
  border-bottom: none;
}
.chat-body::-webkit-scrollbar {
  display: none;
}

.chat-item.item-receive {
  justify-content: flex-start;
}

.chat-item {
  margin: 10px 15px;
  padding: 0 15px;
  display: flex;
}
.chat_author{
  margin-top: 5px;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: var(--light-grey);
    margin-bottom: 5px;
}
.chat-item-wrapper {
  width: 70%;
}

.chat-time {
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--light-grey);
}

.item-receive .chat-content {
  margin-right: auto;
}

.chat-item.item-send {
  justify-content: flex-end;
}

.chat-item.item-send .chat-item-wrapper {
  align-items: flex-end;
}

.chat-content {
  display: inline;
  background-color: #F4F5FA;
  padding: 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  position: relative;
}
.chat-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--deep-grey);
}
.item-receive .chat-content:after {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  border-top: 20px solid #F4F5FA;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.chat-bottom {
  display: flex;
  align-items: flex-end;
  padding: 20px 10px 20px 10px;
  border-top: 1px solid #dddddd;
  border-radius: 0 0 12px 12px;
}

.chat-bottom .form-field-box {
  flex-grow: 1;
}
.chat-bottom .form-field-box input{
  border: 1px solid #D9D9D9;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding: 5px 10px;
  color: var(--deep-black);
}

.chat-bottom > * {
    margin: 0 10px;
}

.chat-bottom .policy_desc {
  resize: none;
  min-height: unset;
  height: 90px;
}

.form-field-box {
  display: flex;
  flex-direction: column;
}

.chat-bottom .gradient-button,
.chat-bottom input {
  min-height: 40px;
}

/* .chat-bottom .gradient-button, .chat-bottom input {
  min-height: 40px;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  padding: 5px 10px;
  color: var(--deep-black);
} */

.chat-bottom .gradient-button,
.chat-bottom input {
  min-height: 40px;
}

.kpi_reject_popup {
  min-width: 700px;
  cursor: default !important;
}

.kpi_approve_popup {
  min-width: 700px;
  cursor: default !important;
}

/* Style the radio button to look like a checkbox */
.checkmark-container {
  position: relative;
  padding-left: 30px;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
}

/* Hide the radio button itself */
.category_radio {
  display: none;
}

/* When the radio button is checked, style the checkbox tick mark */
.category_radio:checked+.checkmark-container .checkmark:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.outerWrapper {
  display: flex;
  justify-content: space-between;
}

.quaterButton {
  margin-right: 20px;
}


.currentQtr {
  background: linear-gradient(93.66deg, #015850 0.75%, #128a7e 115.87%) !important;
}

.btnAprve {
  padding: 10px 10px 0px 10px;
}

.comments-info {
  display: flex;
  flex-direction: column;
  max-height: 500px;
  overflow: auto;
}

.comments-info::-webkit-scrollbar {
  display: none;
}

.comments-info-item {
  padding: 15px;
  border-radius: 8px;
  background-color: #f3f3f9;
  display: flex;
}

.comments-info-item+.comments-info-item {
  margin-top: 15px;
}

.comments-info-item .flex-grow-1 span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--deep-black);
  margin-bottom: 10px;
  display: inline-block;
}

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

.comments_info p {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--light-grey);
}

.kpi-top {
  padding-bottom: 20px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 10px;
}
.kpi_goal_overview_height .tbody-white>tr {
  border-bottom: 1px solid #eaeaea;
}

/*------------------------- new kpi table heights--------------------- */
.kpi_goal_overview_height {
  min-height: unset;
  max-height: 700px;
  overflow: auto;
}

.kpi_goal_overview_height::-webkit-scrollbar {
  display: block;
  height: 10px;
  width: 0;
}

.kpi_goal_overview_height::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.kpi_goal_overview_height::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177);
}

.kpi_level_table .table_wrapper{
  max-height: 400px;
  overflow: auto;
}

.kpi_level_table .table_wrapper::-webkit-scrollbar {
 display: none;
}

.kpi-asign-goal-values .table_wrapper::-webkit-scrollbar {
  width: 0;
}

.custom-bottom{
  height: 5vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: white;
  margin-bottom: 20px;
}

.tableTD{
  width: unset!important;
  justify-content: center;
}

.tdExtrawidth{
  width:45%!important;
}

.width-18{
  width:18%!important;
  padding: 15px 30px!important;

}

/*--------------------------------- filter---------------------- */

.table-filter {
  position: relative;
}

.filter-box {
  min-width: 150px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.filter-box:hover {
  background-color: #f0f2f8;
}

.filter-box > p {
  color: #434343;
  font-size: 14px;
}

.filter-box.active {
  background-color: #f0f2f8;
}

.filter-wrapper {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  flex-direction: column;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  min-width: 325px;
  width: 100%;
  padding: 15px;
  z-index: 97;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.filter-wrapper.active {
  display: flex;
}

.filter-wrapper .SumoSelect {
  width: 100% !important;
}

.filter-item + .filter-item {
  margin-top: 15px;
}

.ui-datepicker-title select {
  border: 1px solid rgb(118, 118, 118);
  outline: unset;
  opacity: 1;
}

.two-item-filter {
  display: flex;
  align-items: center;
  margin: 0 -5px;
}

.date-selector-wrapper {
  margin: 0 5px;
  position: relative;
  flex-grow: 1;
}

.date-selector-wrapper .calender-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}

.select-date {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  padding: 8px;
  font-size: 14px;
}

.select-date::-webkit-input-placeholder {
  color: #ccc;
}

.select-date:-ms-input-placeholder {
  color: #ccc;
}

.select-date::placeholder {
  color: #ccc;
}

.filter-title {
  position: relative;
  margin-bottom: 12px;
}

.close-filter {
  position: absolute;
  top: -21px;
  right: -6px;
  z-index: 9;
  font-size: 24px;
  color: #a5a5a5;
  cursor: pointer;
}

.filter-title h5 {
  font-size: 15px;
  line-height: 19px;
  color: #7e7e7e;
}

.table-filter.applied .filter-box {
  position: relative;
}

.table-filter.applied .filter-box .applied-count {
  position: absolute;
  right: 7px;
  top: 6px;
  background-color: #fb8181;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  padding: 1px;
}
.point-comment-form:hover{
  background-color: transparent;
}

.date-range-picker-att {
  width: 250px !important;
  font-size: 14px;
  color: var(--deep-black);
  background-image: url("../images/calender_icon.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding: 0 10px;
  min-width: 150px;
  width: 150px;
  min-height: 35px;
}
/* range picker */
.calendar-table > table td,
.calendar-table > table th{
padding: 0;

}
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td{
  border-radius: 0 !important;
}

.date-range-att {
  width: 100% !important;
}
.attendance-sheet .date-range-att{
  padding-right: 30px;
}

.table_wrapper.full_table_wrapper.kpi-table-wrapper {
  min-height: 200px;
}

.pending-request{
  padding: 20px 20px 5px 0;
}

.three-col .card-boxes {
  width: calc(33.33% - 20px);
  margin: 0 10px;
}