:root{
    --main-color:#00A595;
    --body-bg-color:#F4F5FA;
    --white-color:#ffffff;
    --pure-black:#2C2D33;
    --deep-black:#45464E;
    --deep-grey:#475366;
    --light-grey:#98A0AC;
    --menu-color:#495057;
    --table-color:#6E7079;
   --gradient-bg:linear-gradient(93.66deg, #00A293 0.75%, #17EDD9 115.87%);
   --gradient-bg-reverse:linear-gradient(93.66deg, #17EDD9 0.75%, #00A293 115.87%);
    --font-family: 'Poppins', sans-serif;
}
body{
  background-color:var(--body-bg-color) ;
}

body, textarea{
    font-family: var(--font-family);
    font-size:13px;
    
  }
  :focus {
    outline: none;
}
  .w-70{
    width:70%;
  }
  .w-68{
    width:calc(66.66% - 20px);
  }
  .w-30{
    width:30%;
  }
  .w-32{
    width:calc(33.33% - 20px);
  }
  .w-50{
    width:50%;
  }
  .w-49{
    width:48%;
  }
  /*-------------- margin---------------- */
  .mt-20{
    margin-top: 20px;
  }
  .mb-20{
    margin-bottom: 20px;
  }
  .mx-10{
    margin: 0 10px;
  }
  .m-10-minus{
    margin-left:-10px;
    margin-right:-10px;
  }
  .m-20-minus{
    margin-left:-10px;
    margin-right:-10px;
  }
  .ml-20{
    margin-left: 20px;
  }
  .ml-15{
    margin-left: 15px;
  }
  .mt-30{
    margin-top: 30px;
  }
  /* -------------------------------- */
  .text-center{
    text-align: center;
  }
/* --------------padding-------------- */
  .p-20{
    padding: 20px;
  }
  /* ------------------------------------- */
  .bg-lt-green{
    background-color: #BFE8E4;
  }
  .bg-lt-yellow{
    background-color: #FDEDD2;
  }
  .bg-lt-blue{
    background-color: #C9E6F6;
  }
  .bg-white{
    background-color: #ffffff;
  }
  /* ---------------------table------------------ */
  .table .table_head{
    background-color: #F7F8FA;
    color: var(--deep-black);
}
.table .table_head td{
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: var(--pure-black) ;
  padding: 15px 20px;
}
.table .tbody-white tr{
    color: var(--deep-black);
}
.table td{
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--table-color);
  /* padding: 15px 20px; */
  padding: 15px 15px;
  vertical-align: middle;
  /* width: 15%; */
}
.table-drop{
    position: relative;
    cursor: pointer;
}

.table-drop .dropdown-list {
    position: absolute;
    padding: 10px 24px 10px 15px;
    background: #ffffff;
    left: -85px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px rgb(0 0 0 / 39%);
    box-shadow: 0 0 5px rgb(0 0 0 / 39%);
    top: 0px;
    display: none;
    -moz-transition: left .4s ease-in-out;
    -webkit-transition: left .4s ease-in-out;
    transition: left .4s ease-in-out;
    z-index: 3;
}
.table-drop.open ul{
    display: block;
}
.table-drop .dropdown-list li {
    line-height: 1;
}
.table-drop .dropdown-list li a {
    font-size: 13px;
    font-weight: 400;
    display: block;
    padding: 7px 0;
}
.table-drop .dropdown-list::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 30px;
    right: -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(224deg);
    transform: rotate(224deg);
    -webkit-box-shadow: -2px 2px 2px 0 rgb(0 0 0 / 7%);
    box-shadow: -2px 2px 2px 0 rgb(0 0 0 / 7%);
    z-index: -1;
}

.table-radius-round{
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
.tble-wrapper tr.pending td a{
  opacity: 0.5;
}
.text-red{
  color: #EB0808 !important;
}
.table-box{
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  /* display: flex;
  justify-content: start;
  align-items: center; */
  width: 100%;
  min-height: 35px;
  padding: 7px 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--deep-black);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
/* ------------card block------ */
.card-block{
  background-color: var(--white-color);
  border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.card-top h4{
  font-size: 17px;
  color: var(--deep-black);
}
.card-top a{
  text-decoration: underline;
  font-size: 13px;
}
[class*="table-bg-"]{
  padding: 2px 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}
.table-bg-green{
  background: rgba(50, 147, 111, 0.16) !important;
  color: #519C66;
  white-space: nowrap;
}
.table-bg-red{
  background: rgba(246, 77, 68, 0.15) !important;
  color: #F64D44;
  white-space: nowrap;
}
.table-bg-violet{
  background: rgba(85, 112, 241, 0.16);
  color:  #5570F1;
  white-space: nowrap;
  
}
.table-bg-yellow{
  background: #FFF2E2;
  color: #e9a44f;
  white-space: nowrap;
  
}
.table-bg-pink{
background: rgba(255, 9, 201, 0.15);
color: #FF09C9;
white-space: nowrap;
}
.table-bg-light-blue{
  background-color: rgba(50, 147, 111, 0.16);
  color: #00A293;
  white-space: nowrap;
}
/* reject reason pop up */
td.rejected{
  display: flex;
  justify-content: space-between;
  position: relative;
}
.reject-icon{
  cursor: pointer;
}

.reject-reason{
  display: block;
  position: relative;
  min-width: 220px;
  top: 100%;
  right: 0;
  height: auto;
  background-color: var(--white-color);
  /* box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1); */
  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;
    z-index: 10;
}
.reject-reason li{
  display: flex;
  padding: 15px;
}
.reject-reason li:first-child{
  border-bottom: 1px solid #F3F3F9;;
}
.reject-reason li:last-child{
  font-weight: 400;
  font-size: 12px;
  line-height: 13px;
  color: #949494;
}
.reject-reason > li div img{
  margin-right: 10px;
}
.reject-title p:first-child{
  font-weight: 400;
font-size: 12px;
line-height: 15px;
color: #F64D44;
}
.reject-title :last-child{
  font-weight: 400;
font-size: 12px;
line-height: 12px;
color: var(--light-grey);
word-break: break-all;
padding-top: 3px;
}
.pop-hide{
  display: none;
}
.popover{
  border: 0;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
.popover-body{
  padding: 0;
}

.reject-reason li:nth-child(2){
  font-weight: 400;
font-size: 14px;
line-height: 18px;
color: #6E7079;
word-break: break-all;
}
/*----------------- card boxes----------------- */
.card-boxes{
  padding: 20px;
  border-radius: 12px;
}
.card-boxes h4{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.card-boxes .card-full{
 width: 100%;
 border-radius: 12px;
 min-height: 88px;
}
/*-------------------- round profile pic ----------------*/
.profile-round{
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border: 1px solid #F0F0F0;
  overflow: hidden;
}

.profile-round img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: cover;
}
/* icon three dot----------- */
.icon-three_dot{
  color: var(--light-grey);
  font-size: 16px;
  -moz-transition: left .3s ease-in-out;
    -webkit-transition: left .3s ease-in-out;
    transition: left .3s ease-in-out;
    cursor: pointer;
}
.icon-three_dot:hover{
  color: var(--main-color);
}
/* -------------background -------------*/


/*------------------ gradient button------------- */

.gradient-button {
    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;
    -webkit-apperance:none !important
}
.btn-helper{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
  background: linear-gradient(93.66deg, #008376 0.75%, #15c2b0 115.87%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.gradient-button:hover .btn-helper {
  opacity: 1;
}
.gradient-button:hover {
  color: #ffffff;
  background: linear-gradient(93.66deg, #008376 0.75%, #15c2b0 115.87%);
}
.border-button{
  padding: 8px 30px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  box-shadow: 0 0 6px 0 rgba(0, 162, 147, 1, 0.5);
  border: solid 2px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(60deg, #03AD9E, #12DFCC);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;
  color:#00A293;
  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;
  font-size: 12px;
  font-weight:500;
  -webkit-apperance:none !important
}
/* -----------white button----------- */
.white-button{
  padding: 6px 30px;
  background: #F3F3F9;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  color: #475366;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  z-index: 10;
  border: 0;
  margin-right: 10px;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  min-height: 35px;
  max-height: 35px;
  -webkit-appearance:none !important;
  
}
.white-button:hover{
   background: #e9e9ff;
}
.button-block .white-button,
.button-block .gradient-button {
  min-width: 150px;
  height: 40px;
}
.button-block .white-button{
  margin-right: 20px;
}
.top-btn-grp button{
  min-height: 35px;
}
.top-btn-grp button ~ button{
  margin-left: 10px;
}
/* light white-button */
.setting-button{
  padding: 6px 6px;
  background: var(--white-color);
  border-radius: 8px;
  min-width: 35px;
  min-height: 35px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  color: var(--pure-black);
  font-weight: 400;
  font-size: 25px;
  position: relative;
  z-index: 10;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  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;
  margin-top: 0 !important;
  -webkit-apperance:none !important
}
.page-top .setting-button{
  color: var(--pure-black);
}
.setting-button > span{
  font-size: 25px;
}
.setting-button.dlt > span{
  font-size: 20px;
}
.setting-button.dlt > span{
  color: #D13C3C;
  -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;
 
}
.setting-button.dlt > span:hover{
  color: #b81313;
}
.setting-button:hover{
  color: var(--main-color);
}
.btn-disabled{
  opacity:0.5 !important;
}
.view-docs-btn{
  padding: 6px 20px;
}
.view-docs-btn > span{
  font-size: 15px;
  
  font-weight: 600;
}
/*--------- page top----------- */
.page-top h4{
  font-weight: 500;
  font-size: 17px;
  line-height: 19px;
  color: var(--deep-black);
  margin-bottom: 0;
}
.page-top p, .page-top a{
  font-weight: 400;
font-size: 14px;
line-height: 16px;
color: var(--light-grey);
transition: all 0.3s ease-in;
margin-top: 5px;
}
.page-top .gradient-button{
  margin-top: 0;
  margin-right: 10px;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.page-top .gradient-button span{
  margin :0;
}
.page-top span{
  margin: 0 3px;
}
.page-top a:hover{
  color:var(--main-color);
}
.page-top .current-page{
  pointer-events: none;
}
/*----- wordbreak------ */

.wordbreak{
  word-break: break-all;
}
/* -----------select------------- */
.select-default{
min-width: 150px;
width: auto;
height: 36px;
border: 1px solid #E7E7E7;
font-weight: 400;
font-size: 14px;
line-height: 18px;
color: var(--deep-black);
border-radius: 4px !important;
-webkit-border-radius: 4px !important;
-moz-border-radius: 4px !important;
-o-border-radius: 4px !important;
margin: 0 7px;
}
.select-default:last-child{
  margin-right: 0;
}
.select-default:focus{
  box-shadow: none;
}
/*  *pagination*/
.pagination{
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.pagination-count{
  color: var(--deep-black);
  font-size: 14px;
}
.pagination  a{
  color: var(--deep-black);
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 8px;
    font-size: 14px;
    line-height: 1;
    min-width: 30px;
    min-height:30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: background .35s ease-in-out, color .35s ease-in-out;
    transition: background .35s ease-in-out, color .35s ease-in-out;
}
.pagination-outer .pagination .current a {
  color: #FFFFFF;
  background: var(--gradient-bg);
}
/* drop down */
.dropdown{
  min-width: 70px;
  text-align: center;
}
.drop-parent img{
  cursor: pointer;
}
.drop-parent{
  position: relative;
  padding: 5px;
}
  .drop-list {
    display: none;
    position: absolute;
    right: 0;
    top: 19px;
    width: auto;
    background-color: var(--white-color);
    z-index: 15;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
    border-radius: 2px;
    min-width: 150px;
}
.drop-list a {
 cursor: pointer;
 display: block;
 font-weight: 400;
font-size: 12px;
line-height: 14px;
padding:10px;
color: var(--deep-black);
}

.drop-list a:hover {
  background-color: #F4F5FA;
}
.drop-parent:hover .drop-list {
  display: block;
} 
.drop-list li.disable a{
  color:#e2e2e2 ;
  cursor: not-allowed;
}
.drop-list li.disable a:hover{
  background-color: #ffffff;
  color:#e2e2e2 ;
}
/*---------------- page top----------- */
  .page-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .page-top > div {
    margin-top: 5px;
    margin-bottom: 5px;
}
/* full screen */
.full-screen{
  min-height: calc(100vh - 160px);
  height: 100%;
}
.single-screen{
  height: calc(100vh - 160px);
}

/* top minus  */
.height-top-minus{
  min-height: calc(100vh - 224px);
  height: 100%;
}
.minimum-height{
  min-height: calc(100vh - 170px);
  height: 100%;
}

/*----- table height--------- */
.table-employee{
  height: calc(100vh - 331px);
  overflow: hidden;
}
.table-holidays{
  height: calc(100vh - 224px);
  overflow: hidden;
}
.table-leave-record{
  height: calc(100vh - 440px);
  overflow: visible !important;
}
.table-roles{
  height: calc(100vh - 160px);
}
.table-no-pagination{
  max-height: calc(100vh - 170px);
  overflow-y: auto;
}
.tbody-white tr:last-child .drop-list,
.tbody-white tr:nth-last-child(2) .drop-list{
  bottom: 70%;
  top: auto;
}
.tbody-white tr:first-child .drop-list,
.tbody-white tr:nth-child(2) .drop-list{
  bottom: auto;
  top: auto;
}
.table-full-screen{
  height: calc(100vh - 224px);
}
/*------------- fancy box-------- */
.fancybox__content{
  padding: 0;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
}
/* .carousel__button svg {
  box-shadow: none;
}
.carousel__button svg path{
  fill: #D6D6D6;
} */
.carousel__button {
  color: #d6d6d6 !important;
}
.carousel__button svg{
  filter: none;
}
.pop-body{
  background-color: var(--white-color);
  padding: 20px;
  min-width: 350px;
  border-radius: 12px;
}
.pop-body h5{
font-weight: 500;
font-size: 18px;
line-height: 22px;
color: var(--pure-black);
}
.fancybox__content .carousel__button{
  top: 10px !important;
  right: 10px !important;
}
/*-------------------- col------------- */
.col-four{
  margin: 0 -0.5% ;
}
.col-four .card-boxes{
  width: 24%;
  margin: 0.5%;
}
.col-two{
  margin-left:-1% ;
  margin-right:-1% ;
}
.col-two-items{
  width: 48%;
  margin: 0 1%;
}
.col-two-items .form-feild-box{
  margin: 20px 0;
}
.col-two-items .form-feild-box:first-child{
  margin-top: 0;
}
/*---------- upload----------------------  */
.file-upload {
  background-color: #F4F5FA;;
  width: 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;
  position: relative;
}
.file-upload.locked{
  opacity: 0.6;
  cursor: not-allowed;
}
.file-upload.locked:after{
  content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/lock-icon.svg);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(161 233 237 / 69%);

}
.leave-docs{
  height: 150px;
}
.file-upload-btn {
  margin: 0;
  color: var(--main-color);
  border: none;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.file-upload-btn:hover {
  background: var(--main-color);
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.file-upload-btn:active {
  border: 0;
  transition: all .2s ease;
}

.file-upload-content {
  display: none;
  text-align: center;
  width: 100%;
  
}
.leave-docs .file-upload-content {
  padding-top: 15px;
  border-top: 1px solid #CED1E3;
  margin-top: 20px;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-upload-wrap {
  position: relative;
}
.image-title-wrap {
  padding: 10px 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;

}
.image-details{
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.image-details::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-bg);
}

.image-details{
  color: var(--main-color);
}
.image-name{
  color: var(--light-grey);
  line-height: 27px;
}
.drag-text {
  text-align: center;
}

.drag-text h3 {
  color: var(--deep-black);
  font-weight: 400;
font-size: 14px;
line-height: 18px;
margin-bottom: 0;
}
.drag-text p{
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--light-grey);
}

.file-upload-image {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}

.remove-image {
  width: 23px;
  margin: 0;
  color: rgb(0, 0, 0);
  background: #ffffff;
  margin-left: 30px;
}
.remove-image span{
  font-size: 20px;
}

/* ------fancy---------- */
.fancybox__content :focus{
  outline: none !important;
}



/*-------------------- kpi table--------------------*/
.table-kpi .table table .goal_add_table td{
  padding: 15px 0 0;
}
.table-kpi .table table .goal_add_table td input{
  min-height: 35px;
}
select.form-control{
  font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    height: 35px;
    color: var(--table-color);
    background-image: url(../images/select-drop.svg);
    background-repeat: no-repeat;
    background-position: 97% 50%;
    background-repeat: no-repeat;
}
 .form-control:focus{
    border: 1px solid #ced4da;
    box-shadow: none;
    color: var(--table-color);
  }
  .table-kpi input{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: var(--table-color);
    height: 35px;
  }
  .tbody-white tbody td{
    padding: 0;
  }

  .kpi-setting-table .tbody-white tbody tr ~ tr td {
    padding: 15px 0;
}
/* .tbody-white tbody tr:nth-child(2) td{
    padding-top: 30px
} */
.tbody-white tbody tr:last-child td{
    padding-bottom: 0;
}
.tbody-white tbody td input{
    height: auto;
}
.tbody-white tbody td input[type="number"]{
  border: 1px solid #E7E7E7;
  border-radius: 3px;
  min-height: 35px;
  padding: 8px;
  text-align: center;
}
.tbl-h-35{
  min-height: 35px;
  display: flex;
  align-items: center;
}
 /*----------------------------- check box---------------- */
 .checkmark-container{
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
 }
 .checkmark-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0 !important;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
}
.checkmark:hover {
  background-color: var(--main-color);
}
.checkmark-container input:checked ~ .checkmark {
  background-color: var(--main-color);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkmark-container input:checked ~ .checkmark:after {
  display: block;
}
.checkmark-container .checkmark:after {
  left: 6px;
    top: 2px;
    width: 7px;
    height: 12px;
    border: 1px solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*--------------------- sumo select--------------- */
.SumoSelect:focus > .CaptionCont, .SumoSelect:hover > .CaptionCont, .SumoSelect.open > .CaptionCont {
  box-shadow: none;
  border: 1px solid #E7E7E7;
}
.SumoSelect > .CaptionCont{
  border: 1px solid #E7E7E7;
}
.SumoSelect > .CaptionCont > span{
  color: var(--deep-black);
}
.SumoSelect > .optWrapper > .options li label{
  color: var(--deep-black);
}
.SelectBox, .SumoSelect.open .search-txt{
padding: 8px;
}

/*------------------------ select calendar--------------- */
/* div:has(> .date-selector){
  position: relative;
}
div:has(> .date-selector)::after{
  content: '';
  position:absolute;
  top: 55%;
  right: 5px;
  background: url(../images/calender_icon.png) no-repeat;
  z-index: 99;
  width: 20px;
  height: 20px;
} */
.form-feild-box .date-selector{
  background-image:url(../images/calender_icon.png);
  background-repeat:no-repeat;
  background-position: center right 10px;
}
.date-selector, .month-selector{
  border: 1px solid #E7E7E7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
} 
/* date picker */
  #ui-datepicker-div{
    z-index: 9999 !important;
  }
  /* select button */
  .select-parent button{
    position: relative;
    padding: 8px 15px;
    margin-right: 0 !important;
  }
  .select-parent .select-drop{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 14px;
  }
  .select-parent .select-drop span.icon-Vector-2{
    font-size: 7px;
    margin-left: 15px;
    transition: all 0.2s ease-in;
  }
  .select-parent .btn-list{
    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 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);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    transition: all 0.4s ease-in;
  }
  .select-parent .btn-list li{ 
    text-align: left;
    padding: 10px 15px;
  }
  .select-parent .btn-list li a{
    display: block;
    margin:0;
    font-size: 14px;
  }
  .select-parent .btn-list li:hover{ 
    background-color: #F4F5FA;
  }
  .select-parent.active .btn-list{
    display: block;
  }
  .select-parent.active .icon-Vector-2{
    transform: scaleY(-1);
  }
  input[disabled] {
    background-color: #F4F5FA;
}
  textarea[disabled]{
    background-color: #F4F5FA;
}
  /* ----------------------loader -------------------------*/
  .data-loader{
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255,0.7);
    z-index: 99999;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

 
  /* ----------------------end of loader -------------------------*/
  /* --------------progress------------- */
  .circle_percent {font-size:36px; width:1em; height:1em; position: relative; background: #eee; border-radius:50%; overflow:hidden; display:inline-block; }
.circle_inner {position: absolute; left: 0; top: 0; width: 1em; height: 1em; clip:rect(0 1em 1em .5em);}
.round_per {position: absolute; left: 0; top: 0; width: 1em; height: 1em; background: #00A595; clip:rect(0 1em 1em .5em); transform:rotate(180deg); transition:1.05s;}
.percent_more .circle_inner {clip:rect(0 .5em 1em 0em);}
.percent_more:after {position: absolute; left: .5em; top:0em; right: 0; bottom: 0; background: #00A595; content:'';}
.circle_inbox {position: absolute; top: 2px; left: 2px; right: 2px; bottom: 2px; background: #fff; z-index:3; border-radius: 50%;}
.percent_text {position: absolute; font-size: 0px; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3; }
.percent_text::after {content: '';width: 0;height: 0;border-top: 8px solid transparent;border-bottom: 8px solid transparent;border-left: 12px solid #00A293;margin-left: 2px;}
  .percent_num{    position: absolute;font-size: 13px;left: 50%;top: 50%;transform: translate(-50%,-50%);z-index: 3; font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    } 
    /* ------------------public page----------------------- */
.margin-full-page{
  margin: 20px;
}
/*--------------------- enable disable toggle button ---------------*/
.leave-setting-action .enable-disable {
  margin: 0 5px;
}
.enable-disable {
  position: relative;
  width: 30px;
  height: 19px;
  -webkit-appearance: none;
  appearance: none;
  background: #b3b1b1;
  outline: none;
  border-radius: 2rem;
  cursor: pointer;
  border: 0;
}

.enable-disable::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.enable-disable:checked::before {
  transform: translateX(85%);
  background: #fff;
}

.enable-disable:checked {
  background: var(--main-color);
}

.swal-button:focus{
  box-shadow: none !important;
}
input.form-control{
  height: 35px;
  font-size: 14px;
}
textarea.form-control{
  min-height: 150px;
  font-size: 14px;
}
body:not(.is-using-mouse) .fancybox__container :focus{
  box-shadow: unset !important;
}
.mini-preview-anchor{
  white-space: unset !important;
}

select:disabled{
  opacity: 0;
}