@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;
  justify-content: flex-end;
  align-items: center;
}
.login-box {
  width: 470px;
  height: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 3px 5px 10px 2px #c3c2c2;
  -moz-box-shadow: 3px 5px 10px 2px #c3c2c2;
  -o-box-shadow: 3px 5px 10px 2px #c3c2c2;
  box-shadow: 3px 5px 10px 2px #c3c2c2;
}
.login-logo img {
  width: 130px;
}
.login-box > p {
  margin: 25px 0 30px;
  font-weight: 400;
  font-size: 14px;
  color: var(--deep-grey);
}
.login-title {
  margin-bottom: 15px;
  margin-top: 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: 16px;
  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 #fed800;
}
.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;
}
.social-login-btn {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(159, 159, 159, 0.3);
  height: 40px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  color: var(--deep-black);
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.4s all ease-in;
  -moz-transition: 0.4s all ease-in;
  -ms-transition: 0.4s all ease-in;
  -o-transition: 0.4s all ease-in;
  transition: 0.4s all ease-in;
}
.social-login-btn .social-icon {
  margin-right: 15px;
}
.social-login-btn:hover {
  color: var(--deep-black);
  background-color: var(--body-bg-color);
}
.social-login .error_message {
  margin-top: 5px;
}
.continue-with {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.continue-with p {
  color: var(--light-grey);
}
/* .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;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.side-menu-wrapper {
  background-color: var(--white-color);
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  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;
}
.full-logo img {
  width: 130px;
}
.half-logo {
  display: none;
}
.half-logo img {
  width: 24px;
}
.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;
  -webkit-transition: 0.8s all ease-in;
  -moz-transition: 0.8s all ease-in;
  -ms-transition: 0.8s all ease-in;
  -o-transition: 0.8s all ease-in;
  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% - 60px);
  padding: 16px 18px;
  overflow-y: auto;
}
.side-menu.side-menu-hover .sidebar-menu {
  height: calc(100% - 60px);
}
.side-menu.side-menu-hover.sisdebar-hover .sidebar-menu {
  height: calc(100% - 60px);
}
.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: #edfffd;
  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: #a4adac;
}
.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: #00a293;
}
.menu_link.open-menu > div {
  background: #edfffd;
}
.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: #edfffd;
}

.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;
  padding-right: 25px;
}
.size-reduce .open-menu + .submenu {
  display: none !important;
}
.size-reduce .sidebar-hover .side-header {
  justify-content: center;
  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%;
  -webkit-box-shadow: 3px 5px 10px 2px #e6e6e6;
  -moz-box-shadow: 3px 5px 10px 2px #e6e6e6;
  -o-box-shadow: 3px 5px 10px 2px #e6e6e6;
  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: 10px 20px 0 20px;
  position: fixed;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f4f5fa;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  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;
  -webkit-box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0.1);
  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;
  -webkit-transition: transform 0.15s, background-color 0.5s;
  -moz-transition: transform 0.15s, background-color 0.5s;
  -ms-transition: transform 0.15s, background-color 0.5s;
  -o-transition: transform 0.15s, background-color 0.5s;
  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;
  -webkit-box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0.1);
  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;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  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;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 26px;
  font-size: 14px;
}
.upload__btn:hover {
  background-color: unset;
  color: #4045ba;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  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, #fed800 0%, #fee500 100%);
}
.bar_outer .bar-inner-color {
  background: linear-gradient(180.21deg, #fa6666 10.45%, #f9637d 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: #fed800;
  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: #f9637d;
}

/*-------------- 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;
}
.date-selector.calander-icon {
  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: 100%;
  min-height: 33px;
}
.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 {
  height: 10px;
  width: 0;
}
.table_wrapper.full_table_wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #f1f1f1 !important;
}

/* Handle */
.table_wrapper.full_table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177) !important;
  border-radius: 10px;
}
.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 {
  height: 10px;
  width: 0;
}
.table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
}

/* Handle */
.table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177) !important;
}
.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(56.9deg, #ffc700 -12.68%, #ffd700 101.47%);
  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;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  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;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  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: 330px;
}
.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: 350px;
}
.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: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 6px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.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;
}

/* ========== Akshay ========= */

.table td {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--table-color);
  padding: 15px 20px;
  vertical-align: middle;
}

.profile-icon {
  margin-right: 8px;
  border-radius: 50%;
}

.select-box {
  display: flex;
  width: 88%;
  padding: 6px 11px;
  border-radius: 8px !important;
  border: 1px solid #dee5e5;
  color: #6e7079;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.employee-header-wrapper {
  background-color: var(--white-color);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
}

.avatar-wrapper {
  display: flex;
  align-items: center;
}
.avatar-img {
  width: 120px;
  height: 120px;
}
.avatar-title {
  margin-left: 17px;
}
.avatar-title h2 {
  color: #45464e;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}
.avatar-title p {
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.ranking-section h1 {
  color: #00a293;
  text-align: center;
  font-size: 70px;
  font-weight: 700;
  margin: 0;
}
.ranking-section p {
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.profile-tabs {
  margin-top: 25px;
  width: 100%;
}

.profile-tab-section {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  border-bottom: 2px solid #ffffff;
  overflow: scroll;
}
.profile-tab-section::-webkit-scrollbar {
  display: none;
}
.tab a {
  padding-right: 84px;
  color: #898989;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-wrap: nowrap;
}
.tab a:hover,
.tab-active a {
  border-bottom: 2px solid #00a293;
  color: var(--black-60, #45464e);
}

.form-block {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
  padding-bottom: 40px;
}
.form-block-title {
  color: #23262d;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}
.form-wrapper {
  padding: 0px 20px 20px 20px;
}

.card-section {
  padding: 25px 0px;
  margin: 0 -10px;
}
.cards-section-left {
  width: calc(70% - 20px);
  margin: 0 10px;
}
.sales-card-wrapper {
  display: flex;
  margin: 0 -10px;
}
.sales-card {
  width: calc(50% - 20px);
  flex-shrink: 0;
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  margin: 0 10px;
}
.sales-card-content h5 {
  color: #23262d;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.36px;
}
.drop-down-wrapper {
  display: flex;
}
.drop-down-wrapper p {
  margin-right: 5px;
  color: #8b909a;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.28px;
}
.total-sales-head {
  color: #23272e;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.56px;
  margin-top: 30px;
}

.card-bottom-section {
  display: flex;
  margin-top: 16px;
}
.card-bottom-content {
  display: flex;
  margin-right: 4px;
}
.card-bottom-section p {
  color: #8b909a;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.28px;
  margin-left: 4px;
}
.card-bottom-content p {
  color: #1eb564;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.28px;
  margin-left: 4px;
}

.target-card {
  width: calc(50% - 20px);
  flex-shrink: 0;
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  margin: 0 10px;
}
.amount-section {
  display: flex;
  margin-top: 30px;
  align-items: center;
}
.amount-section-head {
  color: #23262d;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.56px;
  margin-right: 4px;
  margin-bottom: 0px;
}
.amount-section p {
  color: #0fb7ff;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.32px;
  margin-left: 4px;
}

.performance-overview-wrapper {
  flex-shrink: 0;
  border-radius: 15px;
  background: #fff;
  margin-top: 15px;
  padding: 24px;
}
.performance-overview {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-direction: row;
  align-items: flex-start;
}
.performance-overview h4 {
  color: #23262d;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  min-width: 210px;
}
.date-drop-down {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.date-drop-down p {
  color: #8b8d97;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.date-drop-down select {
  width: 109px !important;
}

.card-section-right {
  width: calc(30% - 20px);
  margin: 0 10px;
}
.achievement-graph-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
}

.achievement-graph {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.achievement-graph h4 {
  color: #23262d;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}

.achievement-graph-bottum {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: flex-start;
  align-items: center;
  flex: 0 0 calc(50% - 10px);
}
.badge p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.agency-details-table {
  padding: 20px 20px 0px 20px;
}

.perfomance-chart {
  height: 400px;
}
/* .achievemen-chart{
  display: block;
    width: 432px;
    height: 216px;
} */

.input-date-style {
  border: none;
  outline: none;
  background-color: #f7f8fa;
}

.low-wrapper {
  display: inline-flex;
  padding: 4px 11px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  background: rgba(50, 147, 111, 0.16);
}
.low-wrapper p {
  color: #519c66;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.high-wrapper {
  display: inline-flex;
  padding: 4px 11px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  background: rgba(245, 126, 119, 0.16);
}
.high-wrapper p {
  color: #cc5f5f;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.medium-wrapper {
  display: inline-flex;
  padding: 4px 11px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  background: #fff2e2;
}
.medium-wrapper p {
  color: #e5b900;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.table-bg {
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}
.notification-head {
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notification-head h4 {
  color: #45464e;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  min-width: 180px;
}
.notification-head-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.date-input {
  border-radius: 4px;
  border: 1px solid #e7e7e7;
  background: #fff;
  margin: 0 5px;
  width: calc(40% - 10px);
}
.date-input input {
  border: none;
  outline: none;
}

.notification-select {
  margin: 0 5px;
}
.users-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 19px;
}
.users-list-item {
  margin-left: -18px;
}
.users-counter-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  border: 1px solid #fff;
  background: linear-gradient(0deg, #00a293 0%, #00a293 100%),
    lightgray 50% / cover no-repeat;
  padding: 5px 4px;
  margin-left: -18px;
}
.users-counter-list p {
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
}

.two-col-row {
  display: flex;
  align-items: center;
  width: 100%;
}
.two-col-item {
  margin: 0 5px !important;
  width: calc(50% - 10px);
}
.select-section {
  margin: 0 5px;
  width: calc(400px - 10px);
}
.date-input-popup input {
  border: none;
  outline: none;
}

.popup-options {
  display: flex !important;
}
.popup-img-icon {
  width: 18px;
  height: 18px;
}
.popup-checkbox {
  width: 20px !important;
  height: 20px;
}
.popup-textarea {
  margin: 10px;
  width: calc(100% - 18px);
}
.popup-textarea textarea {
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  background: #fff;
}
.popup-textarea label {
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #6e7079;
  margin-bottom: 8px;
  margin-top: 10px;
}

.custom-select {
  width: 400px;
  height: 35px;
  position: relative;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  background: #fff;
}
.select-select-head {
  color: #000;
}
.select-head:before {
  position: absolute;
  content: url(../images/chevron_down.png);
  top: 9px;
  right: 23px;
  width: 0;
  height: 0;
}
.select-options {
  display: flex;
  align-items: center;
  width: 100%;
}
.select-options input {
  width: 5% !important;
}
.select-options img {
  margin: 0 10px;
}
.select-options p {
  color: #000;
  z-index: 111;
}
.selected-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 35px;
  left: 0;
  border-radius: 0px 0px 10px 10px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 2px rgba(159, 159, 159, 0.1);
  -moz-box-shadow: 0px 4px 4px 2px rgba(159, 159, 159, 0.1);
  -o-box-shadow: 0px 4px 4px 2px rgba(159, 159, 159, 0.1);
  box-shadow: 0px 4px 4px 2px rgba(159, 159, 159, 0.1);
  width: 100%;
  padding: 10px;
  max-height: 200px;
  overflow: scroll;
  z-index: 1;
}
.selected-items::-webkit-scrollbar {
  /* background: #00a293; */
  width: 3px;
}
.selected-items::-webkit-scrollbar-thumb {
  background: #00a293;
}

.popup-button-section {
  display: flex;
  justify-content: flex-end;
  margin-top: 5%;
}
.cancel-button {
  border-radius: 6px;
  background: #f1f1f1;
  color: #4b4b4b;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.25px;
  padding: 6px 24px;
  margin: 0 5px;
  width: 150px;
  height: 40px;
}
.send-now-button {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  border-radius: 6px;
  background: linear-gradient(96deg, #03ad9e 24.13%, #12dfcc 88.47%);
  padding: 6px 24px;
  margin: 0 5px;
  width: 150px;
  height: 40px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.send-now-button:hover {
  background: linear-gradient(93.66deg, #008376 0.75%, #15c2b0 115.87%);
}

.doc-section {
  display: flex;
  justify-content: space-between;
}
.doccument-wrapper {
  border-radius: 6px;
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  margin: 0 10px;
}
.doccument-wrapper p {
  color: #373737;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin: 0 !important;
  margin-right: 5px !important;
  white-space: nowrap;
}
.doccument-wrapper span {
  margin: 0 !important;
  width: 24px;
  height: 24px;
}
.doccument-wrapper img {
  margin: 0 !important;
  margin-left: 5px !important;
  /* width: 100%; */
}

.sales-header-wrapper {
  border-radius: 12px;
  background: #fff;
  padding: 20px;
}
.sales-return-button {
  height: 40px;
  padding: 16px 17px;
  border-radius: 6px;
  background: linear-gradient(96deg, #03ad9e 23.43%, #12dfcc 83.07%);
  color: #fff !important;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sales-header-wrapper h2 {
  color: #45464e;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.sales-location-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  width: 93%;
}

.sales-locations h6 {
  color: #949494;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0px;
  word-break: none;
  text-wrap: nowrap;
}
.sales-locations p {
  color: #2c2d33;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  word-break: none;
  text-wrap: nowrap;
}
.sales-location {
  display: flex;
  width: 46%;
  margin: 0 10px;
}
.sales-locations-two {
  margin-left: 50%;
}
.sales-locations-four {
  margin-left: 50%;
}

.search-field {
  display: contents;
  justify-content: flex-end;
  align-items: flex-end;
}

/* .table-row-style:hover td {
  background-color: #00a595;
  color: #fff;
} */
.menu-dropdown {
  border-radius: 5px;
  background: #00a293;
  padding: 9px 11px;
  width: 40px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-position {
  position: relative;
}
.menu {
  background-color: #fff;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 111;
  width: 350px;
  /* height: 310px; */
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.menu h5 {
  color: #5b5b5b;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.menu-bottom button {
  border-radius: 5px;
  background: linear-gradient(93deg, #00a293 30.35%, #12dfcc 55.3%);
  /* width: 458px; */
  height: 36px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.25px;
  margin-top: 10px;
  margin-left: 0px !important;
  width: 100%;
}

.download-doccument {
  position: relative;
  width: 100%;
}
.download-icon {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}

.download-icon-hov:hover .download-icon {
  display: block;
}
.pdf-icon {
  display: flex;
  align-items: center;
}
.pdf-icon p {
  color: #2c2d33;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  margin-left: 10px;
}

.pdf-icon > h6 {
  margin-left: 10px;
}

.pdf-icon > img {
  width: 20px;
  height: 20px;
}

.pdf-icon-wrapper {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  width: 20%;
  margin-bottom: 10px;
}

.contact-style {
  position: relative;
}
.contact-style label.error {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 400px;
}

.user-data {
  display: flex;
  align-items: center;
}
.user-data span {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}
.sellout-value {
  width: 34px;
  height: 50px;
  background-color: #ff9f9f;
}
.sellout-value-text-color {
  color: #db2323;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

.employee-data {
  display: flex;
  align-items: center;
}
.employee-data span {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}

.approved-section {
  position: relative;
  margin: 0 3px;
}
.approving-person-img {
  width: 30px;
  height: 30px;
}
.approved-section span img {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 12px;
  height: 12px;
}

.three_col_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 10px -10px;
}
.three_col_item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(33.33% - 20px);
  margin: 15px 10px 0 10px !important;
}
.four_col_item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(25% - 20px);
  margin: 15px 10px 0 10px !important;
}
.three_col_item label {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.three_col_item input {
  border-radius: 3px;
  border: 1px solid #ccc;
  background: #fff;
  margin-top: 3px;
  height: 35px;
  padding: 9px 14px;
}
.three_col_item select {
  margin-top: 9px !important;
}
.one_col_item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(100% - 20px);
  margin: 5px 10px;
}
.one_col_item label {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 7px;
}
.one_col_item textarea {
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  background: #fff;
  margin-top: 6px;
  resize: none;
}
.approved-wrapper {
  display: flex;
  align-items: center;
}
.approved-wrapper li {
  margin-top: 0 !important;
}
.approved-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.approved-content h5 {
  color: #475366;
  font-size: 12px !important;
  font-weight: 400;
  line-height: normal;
  margin-top: 2px;
}
.approved-content p {
  color: #949494;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  width: 76px;
}
.approved-image-wrapper {
  position: relative;
}
.approving-person {
  width: 54px;
  height: 54px;
  margin: 0 22px;
  object-fit: contain;
}
.approved-tag {
  position: absolute;
  bottom: 10px;
  left: 25px;
  width: 12px;
  height: 12px;
}
.product-tab {
  border-radius: 10px;
  background: #ebebeb;
  padding: 4px 0;
  display: flex;
  align-items: center;
  margin-top: 20px;
  width: calc(100% - 20px);
  margin: 20px 10px 0;
}
.product-tab-btn {
  padding: 5px 50px;
  border-radius: 6px;
  cursor: pointer;
  margin: 0 5px;
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.product-tab-btn:hover,
.product-tab-btn-active {
  color: #fff;
  background: linear-gradient(96deg, #03ad9e 23.43%, #12dfcc 83.07%);
}

.back-arrow {
  border: 1px solid #d9d9d9;
  padding: 8px;
  border-radius: 50%;
  margin-right: 7px;
  -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;
  position: relative;
  display: inline-block;
}
.page-top-head {
  margin-left: 7px;
}

.select-box-items {
  width: 100% !important;
  margin-top: 10px;
  margin-left: 0px !important;
}
.date-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.date-content-one {
  margin-right: 7px;
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
}
.date-content-two {
  margin-left: 7px;
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.three_col_item textarea {
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  background: #fff;
  margin-top: 6px;
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  font-size: 13px;
  resize: none;
}

.three_col_item > p {
  color: #2c2d33;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
}

.file-upload-wrapper {
  margin-top: 5px;
  height: 150px;
}

.main-wrapper {
  margin-top: 20px;
  border-radius: 10px;
  background-color: #fff;
}

.action-wrapper {
  display: flex;
  align-items: center;
}
.action-wrapper img {
  margin: 0 5px;
}

.add-leave-popup {
  display: flex;
  flex-direction: column;
}
.add-leave-popup li {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.add-leave-popup label {
  color: #2c2d33;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.add-leave-popup input {
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  background: #fff;
  margin-top: 6px;
}

.login-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100vh;
}
.login-section {
  width: 50%;
  padding: 0 0 33px 35px;
  display: flex;
  align-items: center;
  position: relative;
}
.copyright-content {
  color: #8a92a0;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.28px;
  margin-top: auto;
  width: 100%;
  position: absolute;
  left: 35px;
  top: 95%;
}
.login {
  padding: 100px 131px 0px 96px;
  width: 100%;
}
.login-img-section {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/static/admin/assets/images/login_main_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  /* height: 100%; */
}

.main-logo {
  width: 215px;
  height: auto;
}

.login-head-section h1 {
  color: #23262d;
  font-size: 52px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0 !important;
}
.login-head-section p {
  color: #9f9f9f;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.login-form li {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.login-form label {
  color: #495057;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.email-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  border-radius: 4px;
  border: 1px solid rgba(159, 159, 159, 0.3);
  background: #fff;
  margin-top: 12px;
  height: 45px;
}
.email-field input {
  width: 90%;
  border: none;
  outline: none;
  margin-right: 5px;
  font-size: 14px;
}
.email-field span {
  margin-left: 5px;
  width: 18px;
}
.border-change {
  border: 1px solid #009181;
}
.forgot-password {
  color: #00a293 !important;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}
.keep-logged input {
  width: 16px;
  height: 16px;
  border-radius: 4px !important;
  border: 1px solid #98a0ac !important;
  background: #fff !important;
}
.login-button {
  border-radius: 6px;
  background: linear-gradient(96deg, #03ad9e 24.13%, #12dfcc 88.47%);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  padding: 10px 25px;
  height: 45px;
}
.signup-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20%;
}
.signup-link p {
  align-self: center;
  color: #475366;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.signup-link a {
  color: #00a293;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.training-videos-container {
  padding: 0 20px;
}
.training-videos-container ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: 10px -10px;
}
.training-videos-container li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: calc(20% - 20px);
  margin: 10px !important;
  border-radius: 6px;
  background: #fff;
  -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);
}
.training-video-card {
  padding: 10px;
}
.video-section {
  position: relative;
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #ecebeb;
  display: block;
}
.video-timer {
  width: 64px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  padding: 5px;
  position: absolute;
  top: 16px;
  left: 13px;
}
.video-timer img {
  width: 16px;
  height: 16px;
}
.video-section > img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.video-timer p {
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  margin-left: 4px;
}
.content-section {
  margin-top: 12px;
}
.content-top {
  display: flex;
  justify-content: space-between;
}
.content-top h6 {
  color: #9f9f9f;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.view-count {
  display: flex;
  align-items: center;
}
.view-count p {
  color: #00a293;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin-right: 3px;
}
.view-count img {
  width: 10px;
  height: 10px;
}
.content-bottum {
  margin-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-bottum h4 {
  color: #45464e;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}
.content-bottum p {
  color: #45464e;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
}

.input_date {
  width: 150px !important;
}

.menu-data {
  background-color: #fff;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 200px;
  z-index: 111;
  width: 20%;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.menu-data h5 {
  color: #5b5b5b;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.menu-data-bottom button {
  border-radius: 5px;
  background: linear-gradient(93deg, #00a293 30.35%, #12dfcc 55.3%);
  height: 36px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.25px;
  margin-top: 10px;
  margin-left: 0px !important;
  width: 100%;
}

.advanced-search-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}
.advanced-search-content li {
  margin: 0 5px;
}

/* ========== Akshay ========= */

.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: 400px;
  appearance: none !important ;
  -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%);
  -moz-box-shadow: 2px 4px 7px 0 rgb(0 0 0 / 9%);
  -o-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;
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  -ms-transition: 0.4s ease all;
  -o-transition: 0.4s ease all;
  transition: 0.4s ease all;
  margin: 0 20px;
}

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

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

.video-section .owl-item {
  backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -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: #f8f8f8;
  color: #f9637d;
  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(--main-color);
  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 !important;
}
.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;
  margin-top: 10px;
}

.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: -35%;
  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: #BA0404;
  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 #d9d9d9;
  -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: 13px;
  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);
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.accordion-header .accordion-btn {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  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: 20px;
}
.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;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  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;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  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;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  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;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  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;
  -webkit-transition: 0.3s all ease-in;
  -moz-transition: 0.3s all ease-in;
  -ms-transition: 0.3s all ease-in;
  -o-transition: 0.3s all ease-in;
  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);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  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;
  margin: 0 15px;
}
.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;
  text-align: center;
}
.not-found .gradient-button {
  height: 40px;
}
.not-found h2 {
  font-weight: 600;
  font-size: 60px;
  line-height: 65px;
  color: var(--deep-black);
  margin: 0;
  text-align: center;
}
.not-found h4 {
  font-weight: 600;
  font-size: 30px;
  line-height: 32px;
  color: var(--deep-black);
  margin: 0;
  text-align: center;
}
.auth-img {
  width: 300px;
}

.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 7.5px;
}
/*-------------------- 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: #fed800;
}
.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%;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  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;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  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;
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  -ms-transition: 0.4s ease all;
  -o-transition: 0.4s ease all;
  transition: 0.4s ease all;
  transform: scale(0.8);
}

.posted-video .active .item {
  opacity: 1;
  transform: scale(1);
}

.posted-video .owl-item {
  backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -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;
  -webkit-transition: 0.4s all ease-in;
  -moz-transition: 0.4s all ease-in;
  -ms-transition: 0.4s all ease-in;
  -o-transition: 0.4s all ease-in;
  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;
}
.leave-summary-home .full_table_wrapper::-webkit-scrollbar {
  display: block;
  height: 10px;
  width: 0;
}
.leave-summary-home .full_table_wrapper::-webkit-scrollbar-thumb {
  background: rgb(177, 177, 177) !important;
}
.leave-summary-home .full_table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
}

/* 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: #ffc107;
  font-weight: 700;
  font-style: italic;
}
.qr-block {
  display: none;
  margin: -10px;
}
.qr-image {
  width: calc(50% - 20px);
  background-color: #e7da7e;
  padding: 10px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  margin: 10px;
}
.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;
}
.respons-table table tr:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
.resp-select .SumoSelect {
  width: 150px;
}
.respons-table .table_wrapper {
  max-height: 400px;
  overflow-y: auto;
}
.responsibility {
  width: 500px;
}
.responsibility textarea {
  resize: none;
}
.respons-table.view-resp table td {
  width: 33.33%;
}
.respons-table {
  min-height: 175px;
}
/* responsibility  */
.add-res-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;
}
.add-res-wrapper.active {
  display: flex;
}
.responsibility {
  max-width: 740px;
  margin: 0 auto;
  max-height: 100vh;
  overflow: auto;
}
.respons-table table td {
  vertical-align: top;
}
.respons-table table td ol,
.respons-table table td ul {
  padding: 0;
  margin: 0;
}

.imp_attendance {
  padding: 6px 30px;
  background: var(--gradient-bg);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  color: var(--white-color) !important;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  z-index: 10;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  min-height: 35px;
  max-height: 35px;
  cursor: pointer;
}
.imp_attendance input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.imp_attendance input[type="file"]::-webkit-file-upload-button {
  cursor: pointer;
}
.attendance-filter .table-search {
  width: 250px;
}
.table-top > .attendance-filter > * {
  margin: 0 5px;
}
.cbrand-add {
  cursor: pointer;
  outline: dashed;
  outline-color: #cdcdcd;
  outline-width: thin;
  color: #01a8a7;
  height: 34px;
  background: white;
  border-radius: 5px;
  width: 100%;
  margin-top: 20px;
}
.brand-box {
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.brand-box h5 {
  color: #5b5b5b;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.zero-box {
  border-radius: 6px;
  padding: 10px 20px;
  border: 1px solid #00a293;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.zero-box p {
  color: #00a293;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.two_col_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -7.5px;
}

.two_col_items {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(50% - 15px);
  margin: 0 7.5px;
}
.calander-picker {
  margin-top: 10px;
  margin-left: 10px;
  padding-right: 10px;
}
.calander-input {
  min-height: 35px !important;
  max-height: 35px !important;
  margin-top: 0.5rem !important;
  width: 100% !important;
}
/* .one_col_items {
  width: calc(100% - 15px);
  margin: 10px 0px;
} */
.advanced-search-button {
  width: 100%;
  border-radius: 5px;
  background: linear-gradient(93deg, #00a293 30.35%, #12dfcc 55.3%);
  margin: 0 7.5px !important;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.25px;
  height: 40px;
}

.add-assessment-form {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  padding: 23px 22px 13px 22px;
  margin-top: 20px;
}
.add-assessment-form h3 {
  color: #45464e;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.add-section {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}
.add-section label {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}
.add-input-num {
  width: 5%;
}
.q-type-input {
  width: 15%;
}
.question-input {
  width: 68%;
}
.mark-input {
  width: 15%;
}
.answers-text {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
}
.choice-input {
  width: 88.5%;
}
.check-input {
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  background: #fff;
  width: 20px;
  height: 20px;
}
.ans-add-text {
  color: #2c2d33;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.page-top-date-input {
  max-width: 150px;
  height: 33px;
}

.monthly-target-wrapper {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  padding: 25px 23px;
  margin-top: 20px;
}
.promoter-section {
  border-radius: 3px;
  background: #fafafa;
  padding: 0 25px 30px;
}
.past-target-btn {
  border-radius: 6px;
  background: linear-gradient(96deg, #03ad9e 23.43%, #12dfcc 83.07%);
  display: flex;
  width: 175px;
  height: 35px;
  padding: 17px 16px;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-top: 20px;
}
.remove-btn {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background: #fff;
  margin-top: 20px;
  margin-left: 10px;
}
.border-bottum {
  border-bottom: 1px solid #eaeaea;
  margin-top: 41px;
}
.bottum-button-section {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}
.merchandiser-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.add-buttom {
  margin: 24px 10px 0;
  width: 10%;
  height: 21px;
  background-color: transparent;
}
.add-btn {
  background-color: transparent;
  margin-top: 12px;
}
.merchandiser-input {
  width: 45%;
}
.merchandiser-input input {
  width: 100%;
}

.edit-incentive-btn {
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.incentive-border-none {
  border: none !important;
}
.incentive-border-tb {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4 !important;
}
.zero-box p {
  color: #00a293;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.table_head th {
  padding: 15px 20px;
}
.bg {
  background: rgba(50, 147, 111, 0.16) !important;
}
.bg label {
  color: #fff !important;
}
.bg span {
  color: #519c66 !important;
}
.bg i {
  color: #fff !important;
}

.bgr {
  background: rgba(245, 126, 119, 0.16) !important;
}
.bgr label {
  color: #fff !important;
}
.bgr span {
  color: #cc5f5f !important;
}
.bgr i {
  color: #fff !important;
}

.normal-slab-ul {
  display: flex;
  align-items: flex-start;
  margin: 10px -10px;
}

.division-ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.counter-div > button {
  display: inline-block;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: 1px solid #f4f4f4;
  background-color: transparent;
  outline: none;
  font-size: 18px;
  font-weight: 600;
}
.count {
  width: 50px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 3px;
  border: 1px solid #f4f4f4;
  background: #fff;
  margin: 10px;
}

.popup-edit-btn {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  border-radius: 6px;
  background: linear-gradient(96deg, #03ad9e 24.13%, #12dfcc 88.47%);
  padding: 6px 24px;
  width: 100px;
  height: 30px;
}

.popup-add-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 2%;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 10px -10px;
}

.one_col_items {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(50% - 15px);
  margin: 15px 10px 0 0px !important;
}
.one_col_items label {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.one_col_items input {
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  background: #fff;
  margin-top: 6px;
  height: 35px;
  padding: 9px 14px;
}

.division-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}
.division-items {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.division-items input {
  margin: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #00a595;
  background: #00a595;
}
.division-items label {
  margin: 0 5px;
  color: #2c2d33;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.promoter-section h4 {
  color: #45464e;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.criteria-ppercentge {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(25% - 20px);
  margin: 15px 10px 0 10px !important;
}
.criteria-ppercentge label {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.criteria-ppercentge input {
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  background: #fff;
  margin-top: 6px;
  height: 35px;
  padding: 9px 14px;
}
.amount-aed-li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(50% - 20px);
  margin: 15px 20px 0 10px !important;
}
.amount-aed-li label {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.amount-aed-li input {
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  background: #fff;
  margin-top: 6px;
  height: 35px;
  padding: 9px 14px;
}
.amount-aed {
  display: flex;
  width: 100%;
}
.amount-aed input {
  width: 100%;
}
.target-criteria > :last-child .remove-section-click {
  display: none;
}
.target-criteria .add-section-buttion {
  display: none;
}
.target-criteria > :last-child .add-section-buttion {
  display: flex;
}

.add-section-buttion {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background: #fff;
  margin-top: 10px;
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.2s all ease-in;
  -moz-transition: 0.2s all ease-in;
  -ms-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}
.remove-section-click {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background: #fff;
  margin-top: 10px;
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.2s all ease-in;
  -moz-transition: 0.2s all ease-in;
  -ms-transition: 0.2s all ease-in;
  -o-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}
.top-page-head span {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: rgba(0, 198, 139, 0.15);
  padding: 12px 12px;
}
.top-page-head span img {
  width: 24px;
  height: 24px;
}
.top-page-head h4 {
  color: #23262d;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin-top: 15px !important;
  margin-bottom: 0 !important;
}
.top-page-head p {
  color: #475366;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin-top: 2px;
}

.guidelines-content {
  border-top: 1px solid #f3f3f9;
  margin: 0 15px;
  padding-top: 15px;
}
.min-h {
  min-height: calc(100vh - 300px) !important;
}

.calander-input-style {
  width: 163px !important;
}

.clipboard-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 3px;
  background: rgba(0, 165, 149, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.documents-img-wrapper {
  display: flex;
}
.documents-img-wrapper span {
  margin-right: 10px;
}

.table-scroll::-webkit-scrollbar {
  display: none;
}

.table-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mixed-chart-wrapper {
  border-radius: 5px;
  background: #fff;
  padding: 25px 22px;
}

.mixed-chart {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mixed-chart-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.mixed-chart-head h5 {
  color: #45464e;
}
.display-matrix-brand {
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.display-matrix-brand h5 {
  color: #5b5b5b;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.rrp-form-wrapper {
  margin-top: 20px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
}

.counter-decrement,
.counter-increment {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #f4f4f4;
  background: #fff;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-wrap p {
  margin-bottom: 5px;
}

.store-wrap span {
  width: 26px;
  height: 26px;
}

.td-rw-border {
  border: 1px solid #f4f4f4;
}
.td-rw-border-btm {
  border-bottom: 1px solid #f4f4f4 !important;
}

.top-checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: 5px !important;
}
.top-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-checkbox input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.top-checkbox label {
  color: #2c2d33;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-left: 6px;
}

.rrp-settings-data {
  display: flex;
  width: 83px;
  /* height: 30px; */
  padding: 10px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #e7e7e7;
  background: #f5f5f5;
  color: #6e7079;
  font-size: 12px;
  font-weight: 400;
  line-height: 131.9%;
}
.rrp-td {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
}

.mixed-graph {
  width: 100%;
}
.select-date-input {
  width: 164px !important;
}

.page-inner {
  padding: 30px 20px;
}

.file-upload-ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -7.5px;
  flex-direction: column;
}
.file-upload-li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(50% - 15px);
  margin: 0 7.5px;
}
.calander-picker {
  margin-top: 10px;
  margin-left: 10px;
  padding-right: 10px;
}
.calander-input {
  min-height: 35px !important;
  max-height: 35px !important;
  margin-top: 0.5rem !important;
  width: 100% !important;
}
/* .one_col_items {
  width: calc(100% - 15px);
  margin: 10px 0px;
} */
.advanced-search-button {
  width: 100%;
  border-radius: 5px;
  background: linear-gradient(93deg, #00a293 30.35%, #12dfcc 55.3%);
  margin: 0 7.5px !important;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.25px;
  height: 40px;
}

.add-assessment-form {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  padding: 23px 22px 13px 22px;
  margin-top: 20px;
}
.add-assessment-form h3 {
  margin: 10px 7.5px;
}
.file-upload-li label {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 9px;
}

.show-upload-files {
  display: flex;
  flex-wrap: wrap;
}
.installation-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  background: #fff;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.installation-img img {
  width: 92px;
  height: 92px;
}
.play-button {
  width: 26px;
  height: 26px;
  background: #d9d9d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 2px 2px 5px;
  position: absolute;
  bottom: 37;
  left: 37;
}

.calander_input_top {
  width: 155px !important;
}

.disable-wrapper {
  display: flex;
  width: 74px;
  height: 30px;
  padding: 17px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #f4f4f5;
}
.disable-wrapper button {
  background: none;
  color: #495057;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
}
.Question-wrapper {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.Question-wrapper span {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background: #fff;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.switch {
  height: 0;
  width: 0;
  visibility: hidden;
}

.toggle-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 45px;
  height: 21px;
  background: #cc5f5f;
  display: block;
  border-radius: 100px;
  position: relative;
  margin-right: 5px;
}

.toggle-label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 5px;
  width: 18px;
  height: 13px;
  background: #fff;
  border-radius: 30px;
  transition: 0.4s;
}

.switch:checked + .toggle-label {
  background: #519c66;
}

.switch:checked + .toggle-label:after {
  left: calc(100% - 13px);
  transform: translateX(-50%);
}

.toggle-label:active:after {
  width: 0px;
}

.user-type-wrapper {
  display: flex;
  flex-direction: column;
}
.user-type {
  margin-top: 5px;
  padding: 4px 0px;
  gap: 10px;
  border-radius: 8px;
  /* background: rgba(50, 147, 111, 0.16); */
  /* color: #519c66; */
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  min-width: 100px;
  max-width: 120px;
  display: flex;
  align-items: center;
}
.emp_profile_name {
  display: flex;
  align-items: center;
}
.emp_profile_name span {
  margin-left: 5px;
  color: #6e7079;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  max-width: 100px;
}
.emp_profile_name span:hover {
  color: #00a293;
}
.emp_profile_name span {
  margin-left: 5px;
  color: #6e7079;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  max-width: 100px;
}
.emp_profile_name span:hover {
  color: #00a293;
}

.display_matrix-table {
  width: calc(50% - 10px);
}
.display_matrix-table .table-form {
  flex-wrap: wrap;
  flex-grow: 1;
}

.matrix-select-wrapper {
  margin: 0 -7.5px;
}
.matrix-select-wrapper > div {
  margin: 0 7px;
}
.display_matrix-comment-wrapper {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.display_matrix-wrapper {
  display: flex;
  justify-content: space-between;
}
.display_matrix-comment {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  width: 100%;
  padding: 24px 34px;
  height: 20%;
  overflow-y: scroll;
}
.display_matrix-comment::-webkit-scrollbar {
  display: none;
}

.display_matrix-comment {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.display_matrix-comment h4 {
  color: #2c2d33;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.display_matrix-comment p {
  margin-top: 8px;
  color: #6e7079;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.display_matrix-image {
  margin-top: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  width: 100%;
  padding: 24px 34px;
  height: 76%;
  overflow-y: scroll;
}
.display_matrix-image::-webkit-scrollbar {
  display: none;
}

.display_matrix-image {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.display_matrix-image h4 {
  color: #45464e;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.add-section {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}
.add-section label {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}
.add-input-num {
  width: 5%;
}
.q-type-input {
  width: 15%;
}
.question-input {
  width: 68%;
}
.mark-input {
  width: 15%;
}
.answers-text {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
}
.choice-input {
  width: 88.5%;
}
.check-input {
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  background: #fff;
  width: 20px;
  height: 20px;
}
.ans-add-text {
  color: #2c2d33;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.matrix-images {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
.matrix-images li {
  /* width: calc(50% - 20px); */
  margin-top: 18px;
}
.matrix-image {
  width: 90px;
  height: 67px;
  display: flex;
  justify-content: center;
  justify-content: center;
}
.matrix-image img {
  width: 100%;
  height: 100%;
}

.table-settings {
  height: calc(100vh - 240px);
}
.table-sales {
  height: calc(100vh - 285px);
}
.table-product {
  height: calc(100vh - 290px);
}
.table-attendence {
  height: calc(100vh - 225px);
}

.video-preview-container {
  width: calc(33% - 20px);
  height: 149px;
  margin-top: 24px;
  flex-shrink: 0;
  border-radius: 3px;
}

.video-container {
  position: relative;
}

#videoInput {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.video-play {
  width: 57%;
  border-radius: 3px;
  position: relative;
}
.video-play-button {
  padding: 11.8px;
  width: 48px;
  background: #d9d9d9;
  border-radius: 50%;
  display: none;
  justify-content: center;
  position: absolute;
  top: 49px;
  left: 121px;
  cursor: pointer;
}
.video-play-button.active {
  display: flex;
}
.video-play-button img {
  margin-left: 3px;
}

/* .display-matrix-top-form{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 10px;
} */
.sale-export-popup {
  margin: 20px 0;
  padding-top: 40px;
}
.sale-export-wrapper {
  position: relative;
}
.sale-btn-list {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background-color: #ffffff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  z-index: 99;
  padding: 5px 10px;
  box-shadow: 0px 9px 21px 0px rgb(0 0 0 / 19%);
}
.sale-btn-list > li button {
  padding: 0;
}
.sale-btn-list li + li {
  border-top: 1px solid #dddddd;
}
.sale-btn-list.show {
  display: block;
}
.sale-btn-list .doccument-wrapper p:hover {
  color: #00a293;
}
.sale-btn-list .doccument-wrapper:disabled {
  cursor: not-allowed;
}
.sale-btn-list .doccument-wrapper:disabled p {
  color: #bdbaba;
}

.one_col_item input {
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  background: #fff;
  margin-top: 6px;
  height: 35px;
  padding: 9px 14px;
}

.matrix-details-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 10px -10px;
}
.matrix-details-list > li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(25% - 20px);
  margin: 5px 10px;
}

/*--------------------------------- 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 {
  /* Edge */
  color: #ccc;
}

.select-date:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  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;
}

.page-top-date-input {
  max-width: 150px;
  height: 33px;
}

.past-target-btn {
  border-radius: 6px;
  background: linear-gradient(96deg, #03ad9e 23.43%, #12dfcc 83.07%);
  display: flex;
  width: 175px;
  height: 35px;
  padding: 17px 16px;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-top: 20px;
}

.border-bottum {
  border-bottom: 1px solid #eaeaea;
  margin-top: 41px;
}
.bottum-button-section {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}
.merchandiser-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.add-buttom {
  margin: 24px 10px 0;
  width: 10%;
  height: 21px;
  background-color: transparent;
}
.add-btn {
  background-color: transparent;
  margin-top: 12px;
}
.merchandiser-input {
  width: 45%;
}
.merchandiser-input input {
  width: 100%;
}

.edit-incentive-btn {
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.incentive-border-none {
  border: none !important;
}
.incentive-border-tb {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4 !important;
}
.zero-box p {
  color: #00a293;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.table_head th {
  padding: 15px 20px;
}
.bg {
  background: rgba(50, 147, 111, 0.16) !important;
}
.bg label {
  color: #fff !important;
}
.bg span {
  color: #519c66 !important;
}
.bg i {
  color: #fff !important;
}

.bgr {
  background: rgba(245, 126, 119, 0.16) !important;
}
.bgr label {
  color: #fff !important;
}
.bgr span {
  color: #cc5f5f !important;
}
.bgr i {
  color: #fff !important;
}

.history-box {
  color: #00a293;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #00a293;
  display: flex;
  width: 108px;
  height: 40px;
  padding: 17px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.btn-gradient {
  display: flex;
  /* width: 128px; */
  height: 40px;
  padding: 17px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 6px;
  background: linear-gradient(96deg, #03ad9e 23.43%, #12dfcc 83.07%);
  color: #fff !important;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.counter-div {
  display: flex;
  align-items: center;
  justify-self: center;
}
.counter-div > button {
  display: inline-block;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: 1px solid #f4f4f4;
  background-color: transparent;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #888;
}

.counter-div > button:hover {
  color: #00a595;
}

.count {
  width: 50px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 3px;
  border: 1px solid #f4f4f4;
  background: #fff;
  margin: 10px;
  text-align: center;
}

.popup-edit-btn {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  border-radius: 6px;
  background: linear-gradient(96deg, #03ad9e 24.13%, #12dfcc 88.47%);
  padding: 6px 24px;
  width: 100px;
  height: 30px;
}

.popup-add-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 2%;
  flex-wrap: wrap;
}
.popup-update {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  border-radius: 6px;
  background: linear-gradient(96deg, #03ad9e 24.13%, #12dfcc 88.47%);
  padding: 6px 24px;
  margin: 0 5px;
  width: 100px;
  height: 30px;
}

.addBtn {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  border-radius: 6px;
  border-radius: 6px;
  color: #4b4b4b;
  padding: 6px 24px;
  margin: 0 5px;
  width: 100px;
  height: 30px;
}
.t-head {
  padding: 15px 20px !important;
  border: 1px solid #f4f4f4 !important;
}

.add-sku {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background: #fff;
}

.top-page-head span {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: rgba(0, 198, 139, 0.15);
  padding: 12px 12px;
}
.top-page-head span img {
  width: 24px;
  height: 24px;
}
.top-page-head h4 {
  color: #23262d;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin-top: 15px !important;
  margin-bottom: 0 !important;
}
.top-page-head p {
  color: #475366;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  margin-top: 2px;
}

.guidelines-content {
  border-top: 1px solid #f3f3f9;
  margin: 0 15px;
  padding-top: 15px;
}
.min-h {
  min-height: calc(100vh - 300px) !important;
}

.calander-input-style {
  width: 163px !important;
}

.clipboard-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 3px;
  background: rgba(0, 165, 149, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.documents-img-wrapper {
  display: flex;
}
.documents-img-wrapper span {
  margin-right: 10px;
}

.table-scroll::-webkit-scrollbar {
  display: none;
}

.table-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mixed-chart-wrapper {
  border-radius: 5px;
  background: #fff;
  padding: 25px 22px;
}

.mixed-chart {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mixed-chart-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.mixed-chart-head h5 {
  color: #45464e;
}
.display-matrix-brand {
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.display-matrix-brand h5 {
  color: #5b5b5b;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.rrp-form-wrapper {
  margin-top: 20px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
}

.counter-decrement,
.counter-increment {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #f4f4f4;
  background: #fff;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-wrap p {
  margin-bottom: 5px;
}

.store-wrap span {
  width: 26px;
  height: 26px;
}

.td-rw-border {
  border: 1px solid #f4f4f4;
}
.td-rw-border-btm {
  border-bottom: 1px solid #f4f4f4 !important;
}

.top-checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: 5px !important;
}
.top-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-checkbox input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.top-checkbox label {
  color: #2c2d33;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-left: 6px;
}

.rrp-settings-data {
  display: flex;
  min-width: 135px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #e7e7e7;
  background: #f5f5f5;
  color: #6e7079;
  font-size: 12px;
  font-weight: 400;
  line-height: 131.9%;
}
.rrp-td {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
}

.mixed-graph {
  width: 100%;
}
.select-date-input {
  width: 164px !important;
}

.page-inner {
  padding: 30px 20px;
}

.file-upload-ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -7.5px;
  flex-direction: column;
}
.file-upload-li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(50% - 15px);
  margin: 10px 7.5px;
}
.file-upload-li label {
  color: #6e7079;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 9px;
}

.show-upload-files {
  display: flex;
  flex-wrap: wrap;
}
.installation-wrapper {
  position: relative;
  margin: 10px;
}
.installation-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  background: #fff;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.installation-img img {
  width: 92px;
  height: 92px;
}
.red-cross,.close-btn {
  position: absolute;
  top: -10px;
  right: 9px;
  width: 24px;
  height: 24px;
}
.play-button {
  width: 26px;
  height: 26px;
  background: #d9d9d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 2px 2px 5px;
  position: absolute;
  bottom: 37;
  left: 37;
}

.calander_input_top {
  width: 155px !important;
}

.disable-wrapper {
  display: flex;
  width: 74px;
  height: 30px;
  padding: 17px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #f4f4f5;
}
.disable-wrapper button {
  background: none;
  color: #495057;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
}
.Question-wrapper {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.Question-wrapper span {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background: #fff;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.switch {
  height: 0;
  width: 0;
  visibility: hidden;
}

.toggle-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 45px;
  height: 21px;
  background: #cc5f5f;
  display: block;
  border-radius: 100px;
  position: relative;
  margin-right: 5px;
}

.toggle-label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 5px;
  width: 18px;
  height: 13px;
  background: #fff;
  border-radius: 30px;
  transition: 0.4s;
}

.switch:checked + .toggle-label {
  background: #519c66;
}

.switch:checked + .toggle-label:after {
  left: calc(100% - 13px);
  transform: translateX(-50%);
}

.toggle-label:active:after {
  width: 0px;
}

.user-type-wrapper {
  display: flex;
  flex-direction: column;
}
.user-type {
  margin-top: 5px;
  padding: 4px 0px;
  gap: 10px;
  border-radius: 8px;
  /* background: rgba(50, 147, 111, 0.16); */
  /* color: #519c66; */
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  min-width: 100px;
  max-width: 120px;
  display: flex;
  align-items: center;
}
.emp_profile_name {
  display: flex;
  align-items: center;
}
.emp_profile_name span {
  margin-left: 5px;
  color: #6e7079;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  max-width: 100px;
}
.emp_profile_name span:hover {
  color: #00a293;
}
.emp_profile_name span {
  margin-left: 5px;
  color: #6e7079;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  max-width: 100px;
}
.emp_profile_name span:hover {
  color: #00a293;
}

.display_matrix-table {
  width: calc(50% - 10px);
}
.display_matrix-table .table-form {
  flex-wrap: wrap;
  flex-grow: 1;
}

.matrix-select-wrapper {
  margin: 0 -7.5px;
}
.matrix-select-wrapper > div {
  margin: 0 7px;
}
.display_matrix-comment-wrapper {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.display_matrix-wrapper {
  display: flex;
  justify-content: space-between;
}
.display_matrix-comment {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  width: 100%;
  padding: 24px 34px;
  height: 20%;
  overflow-y: scroll;
}
.display_matrix-comment::-webkit-scrollbar {
  display: none;
}

.display_matrix-comment {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.display_matrix-comment h4 {
  color: #2c2d33;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.display_matrix-comment p {
  margin-top: 8px;
  color: #6e7079;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.display_matrix-image {
  margin-top: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  width: 100%;
  padding: 24px 34px;
  height: 76%;
  overflow-y: scroll;
}
.display_matrix-image::-webkit-scrollbar {
  display: none;
}

.display_matrix-image {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.display_matrix-image h4 {
  color: #45464e;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.matrix-images {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.matrix-images li {
  max-width: calc(50% - 20px);
  margin-top: 18px;
}
.matrix-image {
  width: 90px;
  height: 67px;
  display: flex;
  justify-content: center;
  justify-content: center;
}
.matrix-image img {
  width: 100%;
  height: 100%;
}

.table-settings {
  height: calc(100vh - 240px);
}
.table-sales {
  height: calc(100vh - 285px);
}
.table-product {
  height: calc(100vh - 290px);
}
.table-attendence {
  height: calc(100vh - 225px);
}

.video-preview-container {
  width: 100%;
  border-radius: 3px;
}

.video-container {
  position: relative;
}

#videoInput {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.video-play {
  width: 100%;
  border-radius: 3px;
  position: relative;
}
.video-play-button {
  padding: 11.8px;
  width: 48px;
  background: #d9d9d9;
  border-radius: 50%;
  display: none;
  justify-content: center;
  position: absolute;
  top: 49px;
  left: 121px;
  cursor: pointer;
}
.video-play-button.active {
  display: flex;
}

/* .display-matrix-top-form{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 10px;
} */
.sale-export-popup {
  margin: 20px 0;
  padding-top: 40px;
}
.sale-export-wrapper {
  position: relative;
}
.sale-btn-list {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background-color: #ffffff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  z-index: 99;
  padding: 5px 10px;
  box-shadow: 0px 9px 21px 0px rgb(0 0 0 / 19%);
}
.sale-btn-list > li button {
  padding: 0;
}
.sale-btn-list li + li {
  border-top: 1px solid #dddddd;
}
.sale-btn-list.show {
  display: block;
}
.sale-btn-list .doccument-wrapper p:hover {
  color: #00a293;
}
.sale-btn-list .doccument-wrapper:disabled {
  cursor: not-allowed;
}
.sale-btn-list .doccument-wrapper:disabled p {
  color: #bdbaba;
}

.one_col_item input {
  border-radius: 3px;
  border: 1px solid #e9e9e9;
  background: #fff;
  margin-top: 6px;
  height: 35px;
  padding: 9px 14px;
}

.matrix-details-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 10px -10px;
}
.matrix-details-list > li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(25% - 20px);
  margin: 5px 10px;
}

/*--------------------------------- 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 {
  /* Edge */
  color: #ccc;
}

.select-date:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  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;
}

.video-privew {
  width: 100%;
  border-radius: 3px;
  position: relative;
}

.video-privew-wrapper {
  display: none;
  background: rgba(0, 0, 0, 0.4);
  width: 61px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  position: relative;
}

.video-play-preview {
  width: 100%;
}

.active {
  display: block;
}

.ply-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  padding: 5px;
  position: absolute;
  top: 7px;
  right: 18px;
}

.ply-btn > img {
  width: 12px;
  height: 12px;
}

#customModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  isolation: isolate;
}

#customModal video {
  max-width: 80%;
  max-height: 80%;
}

#closeModal {
  position: absolute;
  top: 5%;
  right: 8%;
  cursor: pointer;
  color: white;
  font-size: 40px;
  color: #ddd;
}

.video-preview-wrapper {
  position: relative;
}

.video-preview-play-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ddd;
  border-radius: 100%;
  padding: 5px 5px 5px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 7px;
  left: 20px;
}
.gradient-button.stock-add-form:hover {
  background: linear-gradient(93.66deg, #008376 0.75%, #15c2b0 115.87%);
}

.btn-gradient.create_new_user:hover {
  background: linear-gradient(93.66deg, #008376 0.75%, #15c2b0 115.87%);
}

.doccument-wrapper:hover {
  background: #f5feff;
}

.posm-data-form {
  min-height: calc(100vh - 230px);
}

.pagination-hover {
  -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;
}

.pagination-hover:hover {
  color: #00a293;
}

.back-arrow:hover {
  background: #fff;
}

.back-arrow > img {
  background: linear-gradient(93.66deg, #008376 0.75%, #15c2b0 115.87%);
  -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;
  background: none;
}

.back-arrow:hover img {
  filter: invert(71%) sepia(64%) saturate(6424%) hue-rotate(142deg)
    brightness(87%) contrast(101%);
}

.guidline-button-section {
  display: flex;
  justify-content: flex-end;
  margin-top: 1%;
}

/* ----------Dashboard--------- */

.page-top-tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -10px;
}
.page-tab-checkbox-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.phncode-select .CaptionCont {
  border-radius: 4px 0 0 4px;
}

.phncode-select + .login-input-feild {
  border-radius: 0 4px 4px 0;
  border-left: none;
}

.page-tab-checkbox {
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: #ebebeb;
  padding: 11px;
  margin: 20px 10px 0;
}

.page-tab-checkbox > input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #b8bfbf;
  background: #00a595;
  margin-right: 5px;
}

.page-tab-checkbox > label {
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  margin-left: 5px;
}

.dashboard-filter-section{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 28px -7px 0;
  flex-wrap: wrap;
}
.dashboard-date-selection{
  display: flex;
}

/* .dashboard-date-selection .SlectBox{

} */

.SumoSelect + .SumoSelect{
  margin-left: 15px;
}

.branch-filter-wrapper{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 7px;
  border-radius: 6px;
  background: #fff;
  padding: 6px;
  width: calc(40% - 44px);
  flex-grow: 1;
  /* min-width: 500px; */
  min-height: 45px;
}

.branch-filter-list{
 display: flex;
 align-items: stretch;
 justify-content: flex-start;
 margin: 0 -4px;
 flex-grow: 1;
 overflow: auto;
 -ms-overflow-style: none;
  scrollbar-width: none;
}

.branch-filter-list::-webkit-scrollbar{
  display: none;
}

.branch-filter-list>li{
  margin: 0 4px;
}

.branch-filter-content{
  border-radius: 4px;
  background: #F1F1F1;
  padding: 6px 11px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
}

.branch-filter-content>p{
  color: #4F4F4F;
font-size: 14px;
font-weight: 500;
line-height: normal;
margin-right: 10px;
}

.branch-filter-content>span{
  width: 6px;
  height: 6px;
}

.branch-filter-dropdown-wrapper{
  margin: 0 4px;
  display: flex;
 align-items: center;
 position: relative;
}

.filter-dropdown-button{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #FFF;
  cursor: pointer;
}

.filter-dropdown-button>img{
  width: 100%;
  height: 100%;
  min-width: 24px;
}

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

.sales-updates-wrapper{
  margin-top: 6px;
}

.branch-filter-dropdown{
  position: absolute;
  top: 35px;
  right: -10px;
  background: #FFF;
  box-shadow: 0 2px 2px 2px #ddd;
  border-radius: 5px;
  width: 250px;
  display: none;
  z-index: 11;
}

.branch-filter-active{
  display: block;
}
.video-section {
  display: block;
} */

.video-details-name {
  width: 100%;
}

.video-edit-thumbnail {
  width: 293px;
  height: 150px;
  margin-top: 20px;
}

.total-viewers-list {
  min-height: 35px;
  max-height: 35px;
  border: 1px solid #d9d9d9;
  -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: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 10px;
}

.video-section-hide {
  display: inline;
  position: relative;
}

.video-delt-button {
  position: absolute;
  background: none;
  right: -15px;
  top: 1px;
  display: none;
  width: 30px;
  height: 30px;
  padding: 0 !important;
}

.from-date-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.from-date-wrapper > label {
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #6e7079;
  margin-bottom: 8px;
  margin-top: 10px;
  margin-right: 5px;
}

.SumoSelect > .CaptionCont > span.placeholder {
  font-style: normal !important;
}

.edit-hover:hover {
  background: linear-gradient(93.66deg, #008376 0.75%, #15c2b0 115.87%);
}

.adding-btn {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background: #fff;
  margin-top: 20px;
  margin-left: 10px;
}

.promoter-adding-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.promoter-adding-btn-wrapper > button {
  background: #e6f5f4;
  padding: 10px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
  color: #00a293;
}
.promoter-adding-btn-wrapper > button > span {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.slab-section {
  border-radius: 3px;
  background: #fafafa;
  padding: 25px 30px;
  margin-top: 20px;
}
.no-data-training {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--table-color);
  padding: 15px 20px;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  background-origin: none;
  box-shadow: none;
}

.assessment-overview-chart-wrapper {
  display: flex;
  flex-direction: column;
  /* align-items: flex-start;
  justify-content: flex-start; */
  height: 100%;
}

.assessment-overview-chart {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.assessment-overview-chart > h4 {
  color: #45464e;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  min-width: 250px;
}

.assessment-overview-label {
  display: flex;
  margin: 0 -16.5px;
  min-width: 445px;
}

.overview-label {
  margin: 0 16.5px;
  display: flex;
  align-items: center;
 
}

.overview-label > span {
  border-radius: 100%;
  width: 9px;
  height: 9px;
  min-width: 9px;
  display: inline-block;
  margin-right: 8px;
  position: relative;
}

.overview-label > p {
font-size: 13px;
font-weight: 400;
line-height: 16px;
color: #8B8D97;
}

.color_circle.label-a {
  background: #61dacf;
}

.color_circle.label-b {
  background: #5bc1d8;
}
.color_circle.label-c {
  background: #75afe4;
}
.color_circle.label-d {
  background: #d6bff4;
}

.assessment-overview {
  height: 300px;
}

.question-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  border-bottom: 1px solid #f4f4f4;
  padding: 10px;
}

.question-wrapper > h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #45464e;
}

.question-wrapper > p {
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: #45464e;
  letter-spacing: -1%;
}

.answer-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.answer-wrapper > li {
  margin: 10px;
}

.answer-wrapper > li > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #45464e;
}
.answer-wrapper > li > p > span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #45464e;
}
/* ----date range puicker-------- */

.calendar-table > table td,
.calendar-table > table th{
padding: 0;
}
/* ----date range puicker-------- */

.branch-filter-dropdown-list{
  width: 100%;
}

.branch-filter-dropdown-list>li{
  margin: 5px;
  background: #F1F1F1;
  padding: 10px;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -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;
  word-break: break-all;
}
.branch-filter-dropdown-list>li:hover{
  background: #e4e6e2;
}

.sales-updates-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -7.5px;
}

.sales-updates-list>li{
  width: calc(25% - 15px);
  margin: 7.5px;
}

.sales-target-wrapper{
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sales-target-content-section{
  height: 125px;
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.sales-target-content-section>p{
  color: #8B8D97;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}
.sales-target-content-section>h5{
  color: #45464E;
  font-size: 25px;
  line-height: 38px;
  font-weight: 700;
}


.market-value-wrapper-green{
  display: flex;
}
.market-value-wrapper-green>P{
  color: #1EB564;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  margin-left: 2px;
}

.market-value-wrapper-red{
  display: flex;
}

.market-value-wrapper-red>P{
  color: #F12525;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  margin-left: 2px;
}

.market-value-green-icon{
  width: 12px;
  height: 12px;
  margin-right: 2px;
}

.market-value-red-icon{
  width: 12px;
  height: 12px;
  margin-right: 2px;
}


.market-value-wrapper-yellow{
  display: flex;
}
.market-value-wrapper-yellow>P{
  color: #E5B900;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  margin-left: 2px;
}
.market-value-yellow-icon{
  width: 12px;
  height: 12px;
  margin-right: 2px;
}
.sales-target-chart-section{
  width: calc(100% - 102px);
  height: 130px;
}

.dashboard-date-inner{
  background: #fff;
  border-radius: 6px;
  /* border: 1px solid #ddd; */
  margin: 0 7px;
  padding: 3px;
  display: flex;
  align-items: center;
  min-height: 35px;
}

.dashboard-date-select{
 border: none !important;
 outline: none !important;
}

.channel-target-list{
  display: flex;
  justify-content: flex-start;
  margin: 0 -7.5px;
  flex-wrap: wrap;
}

.channel-target-item{
  width: calc(50% - 15px);
  margin: 7.5px;
  display: flex;
  flex-direction: column;
}
.sku-category-item{
  width: calc(25% - 15px);
  margin: 7.5px;
  display: flex;
  flex-direction: column;
}

.channel-target-wrapper{
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  height: 100%;
  /* overflow: auto; */
  position: relative;
}
.channel-target-wrapper::-webkit-scrollbar{
  height: 5px;
}
.channel-target-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.channel-target-content>h6{
  color: #45464E;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  min-width: 200px;
  margin-right: 20px;
}

.label-wrapper{
  display: flex;
  margin: -10px;
}

.Target-wrapper{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px;
}

.Target-wrapper>span{
  width: 9px;
  height: 9px;
  min-width: 9px;
  border-radius: 100%;
  display: inline-block;
  margin-right: 6px;
}
.color_circle.Target-span-bg{
  background: #00A293;
}
.Target-wrapper>p{
color: #8B8D97;
font-size:13px;
font-weight:400;
line-height:15.83px;
width: 50px;
margin-left: 5px;
}

.color_circle.achieved-span-bg{
  background: #B2E1DD;
}

.color_circle.achv-span-bg{
  background: #EFC557;
  display: flex;
  position: relative;
  margin: 0 15px !important;
}
.achv-span-bg::before{
  content: "--";
  color: #EFC557;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
}

.achv-span-bg::after{
  content: "--";
  color: #EFC557;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}
.Target-wrapper>h5 .achv-span-bg{
  text-align: center;
  color: #EFC557;
}

.sku-category-chart{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  flex-direction: column;
}

.color_circle.ulhd-span-bg{
  background: #0E5D97;
}
.color_circle.uhd-span-bg{
  background: #117AC6;
}
.color_circle.laser-span-bg{
  background: #70B4E4;
}

.color_circle.soundbar-span-bg{
  background: #B1DDFD;
}

.sku-category-label{
  display: flex;
  justify-content: flex-start;
  margin: 23px 20px 0;
  width: calc(100% - 40px);
  flex-wrap: wrap;
}

.sku-category-label>li{
  width: calc(50% - 40px);
  margin: 0 20px;
}

.channel-target-chart{
  min-width: 580px;
}

.selling-sku-per-retailer{
  width: calc(75% - 15px);
  margin: 7.5px;
  display: flex;
  flex-direction: column;
}

.top-performers-wrapper{
  width: calc(75% - 15px);
  margin: 7.5px;
}

.top-performers-table-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 23px 21px 23px;
}
.top-performers-table-head>h6{
  color: #45464e;
  font-size: 16px;
  font-weight: 500;
}
.top-performers-table-head>a{
  color: #45464e;
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
}

.percentage-count-wrapper{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.percentage-count-wrapper>p{
  font-size: 14px;
  font-weight: 400;
  color: #6e7079;
  line-height: 16px;
}
.percentage-count{
  width: 76px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #ecf5f4;
  border-radius: 9px;
  margin-right: 8px;
}
.percentage-count>span{
  background: linear-gradient(
    180deg,
    rgba(0, 162, 147, 1) 0%,
    rgba(188, 224, 202, 1) 100%
  );
  border-radius: 7px;
  height: 8px;
}

.screen-size-contribution{
  width: calc(33.33% - 15px);
  margin: 7.5px;
}

.screen-size-chart-label{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 23px -38px 0;
}
.screen-size-chart-label>li{
  width: calc(20% - 38);
  margin: 0 19px;
}

.color_circle.size-fifty-five-bg{
  background: #00A293;
}

.color_circle.sixty-five-bg{
  background: #271a76;
}

.color_circle.laser-bg{
  background: #584f93;
}

.color_circle.eighty-five-bg{
  background: #9a8afa;
}

.color_circle.seventy-five-bg{
  background: #284674;
}

.color_circle.fifty-bg{
  background: #748fb9;
}

.color_circle.fourty-three-bg{
  background: #7badfa;
}

.color_circle.fourty-eight-bg{
  background: #13586b;
}

.color_circle.seventy-bg{
  background: #0d3e4b;
}

.channel-target-content-head>h6{
  color: #45464e;
  font-size: 16px;
  font-weight: 500;
}
.channel-target-content-head>p{
  color: #b7b7b7;
  font-size: 13px;
  font-weight: 400;
}

.color_circle.carrefour-bg{
  background: #90e6fe;
}

.color_circle.emax-bg{
  background: #89e0e0;
}

.color_circle.ecity-bg{
  background: #119fc6;
}

.color_circle.lulu-bg{
  background: #117ac6;
}

.color_circle.value-span{
  background: linear-gradient(
    180deg,
    rgba(182, 255, 248, 1) 0%,
    rgba(30, 217, 195, 1) 100%
  );
}
.color_circle.qty-span{
  background: linear-gradient(
    180deg,
    rgba(165, 255, 246, 1) 0%,
    rgba(6, 132, 118, 1) 100%
  );
}

.channel-target-select{
  border: none !important;
  background: #F7F8FA !important;
}

.sku-per-retailer{
  min-height: 260px;
}

.overview-label-style{
  margin-left: 20% ;
}

.target-label{
  background: #00A293;
}
.upload-profile-picture-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 20px;
  align-items: flex-start;
}
.upload-profile-picture-wrapper>p{
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #6E7079;
}
.profile-picture-wrapper{
  margin-top: 10px;
  position: relative;
}
.profile-picture{
  width: 73px;
  height: 73px;
  border-radius: 100%;
  border: 1px solid #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D9D9D9;
  overflow: hidden;
}

.profile-edit{
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #CBC9C9;
  border-radius: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 11;
}

.two_cols_items {
  display: flex;
  align-items: flex-start;
  width: calc(50% - 15px);
  margin: 0 7.5px;
  flex-wrap: wrap;
}

.upload-files{
  margin-left: 7.5px !important;
  background-color: #f4f5fa;
  width: calc(100% - 11px);
  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;
  position: relative;
  height: 123px;
}

.awatar-section-icon {
  margin: 0 5px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  overflow: hidden;
  border-radius: 100%;
}

.awatar-section-icon>img{
  width: 100%;
  height: 100%;
}

.profile-picture>img{
  width: 100%;
  height: 100%;
}

.division-popup{
  width: 350px;
}

.cpi-tracker-chart{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 580px;
  position: relative;
}

.cpi-filter-wrapper{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 6px;
  background: #f7f8fa;
  padding: 3px;
  width: calc(20% - 44px);
  min-width: 200px;
  min-height: 30px;
  max-height: 37px;
  margin-right: 10px;
}

.cpi-filter-dropdown {
  position: absolute;
  top: 35px;
  right: -10px;
  background: #f7f8fa;
  box-shadow: 0 2px 2px 2px #ddd;
  border-radius: 5px;
  width: 198px;
  display: none;
  z-index: 11;
}

.cpi-filter-active {
  display: block;
}

.cpi-filter-dropdown-list{
  width: 100%;
}
.cpi-filter-dropdown-list>li{
  margin: 5px;
  background: #d9dce2;
  padding: 5px;
  color: #8b8d97;
  cursor: pointer;
  -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;
}
.cpi-filter-dropdown-list>li:hover{
  background: #e4e6e2;
}

.cpi-tracker-label{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -10px -5px;
  min-width: 270px;
}

.label-style-wrapper{
  margin: 5px 10px;
  display: flex;
  align-items: center;
}

.label-style{
  width: 30px;
  height: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.label-style>span{
  width: 15px;
  height: 15px;
  min-width: 5px;
  border-radius: 100%;
  display: inline-block;
  
}

.label-style-wrapper>p{
font-size: 13px;
font-weight: 400;
line-height: 16px;
letter-spacing: 0em;
color: #8B8D97;

}

.label-style-a{
  background: #12DFCC;
}
.label-style-span-a{
  background: #12DFCC;
  border: 3px solid #D7FFFB;
}
.label-style-b{
  background: #E26799;
}

.label-style-span-b{
  background: #E26799;
  border: 3px solid #FFDEEB;
}

.label-style-c{
  background: #277FE0;
}

.label-style-span-c{
  border: 3px solid #E8F4FE;
}
.label-style-d{
  background: #6C6C6C;
}

.label-style-span-d{
  border: 3px solid #E9E7E7;
  background: #6C6C6C;
}
.label-style-e{
  background: #80BCEC;
}

.label-style-span-e{
  border: 3px solid #E8F4FE;
  background: #80BCEC;
}
.label-style-f{
  background: #FF474F;
}

.label-style-span-f{
  border: 3px solid #FFF4F4;
  background: #FF474F;
}

.color_circle.hisense-label-a{
  background: linear-gradient(
    180deg,
    rgba(111, 174, 188, 1) 0%,
    rgba(214, 246, 255, 1) 100%
  );
}

.color_circle.hisense-label-b{
  background: linear-gradient(
    180deg,
    rgba(24, 73, 87, 1) 0%,
    rgba(164, 220, 233, 1) 100%
  );
}

.cpi-label-wrapper{
  display: flex;
}

.cpi-tracker-wrapper{
  margin-top: 15px;
}

.target-label-span{
  color: #F29A2E;
  position: relative;
  margin-right: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 0;
}

.target-label-span::after{
  content: "-";
  color: #F29A2E;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 400;
}
.target-label-span::before{
  content: "-";
  color: #EFC557;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 400;
}

.daily-style-a{
  background: #51F2E4;
}

.week-style-a{
  background: #51F2E4;
}

.week-span-a{
  border: 3px solid #d5faf7;
  background: #088B7F;
}

.weekly-sales-channel{
  height: 300px;
  min-width: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remove-section-click:hover img{
  filter: invert(71%) sepia(64%) saturate(6424%) hue-rotate(142deg) brightness(87%) contrast(101%);
}

.remove-section-click:hover{
  background: #f8f8f8;
}

.add-section-buttion:hover img{
  filter: invert(100%) sepia(171%) saturate(0%) hue-rotate(192deg) brightness(173%) contrast(100%);

}
.add-section-buttion:hover{
  background: #02a293;
}

.cancel-button:hover{
  background: #e9e9ff;
  color: #475366;
}

.cpi-filter-content{
  border-radius: 4px;
  background: #d9dce2;
  padding: 6px 11px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
}

.cpi-filter-content>p{
color: #8b8d97;
font-size: 12px;
font-weight: 500;
line-height: normal;
margin-right: 10px;
}

.cpi-filter-content>span{
  width: 6px;
  height: 6px;
}

#gradient-one {
  background: linear-gradient(180deg, rgba(111, 174, 188, 1) 0%, rgba(214, 246, 255, 1) 100%);
}
#gradient-two {
  background: linear-gradient(180deg, rgba(24, 73, 87, 1) 0%, rgba(164, 220, 233, 1) 100%);
}
#add_new_user{
  width: 1020px;
}


/*------------------ activity dashboard----------------------- */
.activity-three-col {
  margin: 10px -10px -10.5px;
}

.activity-three-col>div {
  width: calc(31.66% - 20px);
  margin: 10px;
}

.activity-dash-inner .card-top .SumoSelect {
  width: 200px;
}

.activity-dash-inner .card-top>* {
  margin: 5;
}
.activity-dash-inner .card-top{
  margin: -5px;
}
.SumoSelect>.CaptionCont.bg-select {
  background-color: #F7F8FA;
  border: none;
}

.SumoSelect.open .bg-select .search-txt {
  background-color: #F7F8FA;
  border: none;
}

.SumoSelect>.CaptionCont.bg-select>span {
  color: #8B8D97;
}

.bg_date_selector {
  background-color: #F7F8FA;
  border: none;
  width: 150px;
  height: 36px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding: 5px 10px;
}

.chart-body {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

#usageChart canvas {
  transition: all 0.3s ease;
  padding: 20px;
}

.work-chart,
.productive_chart,
.customer-satifaction {
  width: 200px;
  position: relative;
}

.tool_inside {
  background-color: #fff;
}

#chartjs-tooltip {
  background-color: #fff;
}

.chart_indicators {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-wrap: wrap;
  margin: 30px -10px -5px;
}

.chart_indicators>li {
  margin: 5px 10px;
  display: flex;
  align-items: center;
}

.color_circle {
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin-right: 5px;
  width: 10px;
  height: 10px;
}

.color_circle.in {
  background-color: #6CE8DD;
}

.color_circle.out {
  background-color: #00A293;
}

.color_circle.unpaid-leave {
  background-color: #4DB1A8
}
.color_circle.sick-leave {
  background-color: #82F8D5
}
.color_circle.restricted-leave {
  background-color: #42CEC1
}
.color_circle.weekly-off {
  background-color: #36e3d5
}
.color_circle.training {
  background-color: #00c988f2
}
.color_circle.night-implementation {
  background-color:#00855af2
}
.color_circle.break {
  background-color: #228178;
}

.color_circle.productive {
  background-color: #00A293;
}

.color_circle.unproductive {
  background-color: #6CE8DD;
}

.chart_indicators>li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #8B8D97;
}

.rescent-activity-list {
  margin-top: 13px;
  max-height: 330px;
  overflow: auto;
}

.rescent-activity-list::-webkit-scrollbar {
  display: none;
}

.rescent-activity-list>li {
  padding: 7px 10px;
  display: flex;
  align-items: center;
}

.rescent-activity-list>li:nth-child(odd) {
  background-color: #F9FAFA;
}

.profile_round {
  width: 26px;
  height: 26px;
  min-width: 26px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.activity_info {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #45464E
}

.activity_info .colored {
  color: #00A293
}

.activity_time {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 3px;
  color: #A6A8B1;
}

.leave_dash_table {
  max-height: 350px;
}

.customer_promoter_section {
  margin: 10px -10px -10px;
}

.customer_promoter_section>div {
  margin: 10px;
  width: calc(31.66% - 20px);
}

.color_circle.excellent {
  background-color: #6CE8DD;
}

.color_circle.good {
  background-color: #42CEC1;
}

.color_circle.average {
  background-color: #4DB1A8;
}

.color_circle.poor {
  background-color: #00A293;
}
.table_plus_section{
  display: flex;
  flex-direction: column;
}

.chart_top_indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -10px -5px;
}
.chart_top_indicators.width {
  min-width: 400px;
}

.chart_top_indicators>li {
  margin: 5px 10px;
  display: flex;
  align-items: center;
}

.chart_top_indicators>li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #8B8D97;
}

.top-selling-sku-chart{
  max-width: 350px;
  transform: rotate(90deg);
}

.notification_icon_wrapper{
  border: 1px solid #E7F3F2;
  border-radius: 100%;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-info-border{
  padding-left: 24px;
  position: relative;
}

.profile-info-border::after{
  content: '';
  display: block;
  width: 1px;
  height: 94%;
  background-color: #e7f3f2;
  position: absolute;
  top: 0;
  left: 0;
}

.admin_name_wrapper{
  margin-left: 20px;
}

.admin_name_wrapper>h6{
  color: #454648;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.admin_name_wrapper>p{
  color: #454648;
  font-size: 12px;
  font-weight: 300;
  padding: 0;
  margin: 0;
}

.profile-info-mob{
  display: none;
  position: relative;
}

.profile-info-mob{
  cursor: pointer;
  /* width: 5px; */
}

.profile-info-mob-list{
  position: absolute;
  top: 40px;
  right: 0;
  width: 250px;
  background: #fff;
  border-radius: 6px;
  display: none;
}

.profile-info-mob-list-active{
  display: block;
}

.profile-info-mob-list>li{
  padding: 10px 20px;
  padding-left: 10px;
  color: #454648;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.info-mob-list{
  border-bottom: 1px solid #e7f3f2;}
ul#tab-nav {
  list-style: none;
  margin: 0;
  overflow: auto;
  position: relative;
  margin-left: -25px;
}
ul#tab-nav::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--white-color);
  z-index: 10;
}

.profile_image-round{
  width: 30px;
  height: 30px;
  min-width: 30px;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.product-tab-wrapper{
  margin: 0 -10px;
}

.avatar-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doccument-wrapper>button{
  border-radius: 6px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.table-route-plan{
  height: calc(100vh - 450px);
  overflow: hidden;
}

.route-table-style{
  border:1px solid #F1F3F9
}

.country-select-section{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0px -7px 0;
  flex-wrap: wrap;
  
}

.country-select-wrapper{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 7px;
  border-radius: 6px;
  background: #fff;
  padding: 6px;
  width: calc(40% - 44px);
  flex-grow: 1;
  border: 1px solid #ddd;
}

.country-select-dropdown{
  position: absolute;
  top: 35px;
  right: -10px;
  background: #FFF;
  box-shadow: 0 2px 2px 2px #ddd;
  border-radius: 5px;
  display: none;
  z-index: 11;
}

.country-select-active{
  display: block;
}

.country-select-list{
  width: 100%;
  max-height: 300px;
  overflow: auto;
  min-width: 200px;
}

.country-select-list::-webkit-scrollbar {
  display: none;
}

.country-select-list>li{
  margin: 5px;
  background: #F1F1F1;
  padding: 10px;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -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;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.country-select-name{
  margin-right: 10px;
  word-wrap: break-word;
}
.rrp-datas{
  align-items: center;
  display: flex;
  justify-content: center;
}
.branch-filter-dropdown-list li.active {
  background: linear-gradient(96deg, #03ad9e 23.43%, #12dfcc 83.07%);
  color: #fff;
}
.target-sales-progress{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 25px;
}
.target-sales-progress>p{
  font-size: 14px;
  font-weight: 500;
  color: #8B8D97;
}

/* -----Loader---- */
.loader-main {
  color: #00a293;
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.3s infinite linear;
  transform: translateZ(0);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  transform: translateY(-50%);
}

.hide-retailer-coverage{
  display: none !important;
}
.show-retailer-coverage{
  width: calc(50% - 15px);
  height: 443px;
}
.show-full-coverage{
  width: calc(100% - 15px);
}
.sale-over-view-li{
  width: calc(33.33% - 15px);
}

.no-data-chart-wrapper{
  position: absolute;
  top: 50%;
  left: 40%;
  transform:translateY(-50%)
}

.no-data-chart-wrapper>p{
  font-size: 15px;
  color: #4b4b4b;
  font-weight: 500;
}

.cpi-tracker-no-data{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}

.weekpicker-dropdown{
  display: flex;
  align-items: center;
  padding: 0 8px;
  position: relative;
}

.weekpicker-dropdown>p{
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}

.main-date-filter{
  background: #fff;
  position: absolute;
  top: 45px;
  left: 0;
  min-width: 350px; 
  max-width: 350px; 
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(
    --box-shadow-box-shadow,
    0px 4px 32px 0px rgba(61, 70, 112, 0.08)
  );
  z-index: 9999;
  display: none;
}

.main-date-filter-active{
  display: block;
}

.main-date-filter>p{
  color: #6e7079;
  font-size: 13px;
  font-weight: 500;
}
.date-cancel-btn {
  border-radius: 6px;
  background: #f1f1f1;
  color: #4b4b4b;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.25px;
  padding: 6px 24px;
  margin: 0 5px;
}

.date-cancel-btn:hover{
  background: #e9e9ff;
}

.date-add-btn {
  border-radius: 6px;
  background: linear-gradient(
    95.7deg,
    rgba(3, 173, 158, 1) 0%,
    rgba(18, 223, 204, 1) 100%
  );
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.25px;
  padding: 6px 24px;
  margin: 0 5px;
}

.date-add-btn:hover{
  background: linear-gradient( 95.7deg, rgb(3 149 136) 0%, rgb(6 203 185) 100% );
}


.month-input {
  border-radius: 4px;
  border: 1px solid #e7e7e7;
  background: #fff;
}
.month-input input {
  border: none;
  outline: none;
}

.remark-text-wrapper h6{
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.remark-text-wrapper p{
  font-size: 13px;
  font-weight: 400;
  color: #6E7079;
  word-break: break-all;
}

@keyframes mulShdSpin {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 
    2em -2em 0 0em, 3em 0 0 -1em, 
    2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 -1em, -3em 0 0 -1em, 
    -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 
    3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 -1em, -3em 0 0 -1em, 
    -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 
    2em -2em 0 0, 3em 0 0 0.2em, 
    2em 2em 0 0, 0 3em 0 -1em, 
    -2em 2em 0 -1em, -3em 0 0 -1em, 
    -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, 
     -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, 
     -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, 
     -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 
    3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 
    3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
  