: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, textarea{
    font-family: var(--font-family);
    font-size:13px;
  }
  :focus {
    outline: none;
}
  .w-70{
    width:70%;
  }
  .w-30{
    width:30%;
  }
  .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;
  }
  .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: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--pure-black) ;
  padding: 15px 20px;
}
.table .tbody-white tr{
    color: var(--deep-black);
    padding: 10px;
}
.table td{
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--table-color);
  padding: 15px 20px;
  vertical-align: middle;
}
.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;
}

/* ------------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;
}
.table-bg-red{
  background: rgba(246, 77, 68, 0.15) !important;
  color: #F64D44;
}
.table-bg-violet{
  background: rgba(85, 112, 241, 0.16);
  color:  #5570F1;
  
}
.table-bg-yellow{
  background: #FFF2E2;
  color: #e9a44f;
  
}
.table-bg-pink{
background: rgba(255, 9, 201, 0.15);
color: #FF09C9;
}

/* reject reason pop up */
td.rejected{
  display: flex;
  justify-content: space-between;
  position: relative;
}
.reject-icon{
  cursor: pointer;
}
.reject-reason{
  display: none;
  position: absolute;
  min-width: 220px;
  bottom: 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;
}
.reject-reason:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -20px;
  right: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 6px solid black;
  border-color: #ffffff  transparent transparent #ffffff  ;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(224deg);
  transform: rotate(224deg);
  -webkit-box-shadow: 2px 4px 7px 0 rgb(0 0 0 / 9%);
  box-shadow: -3px -4px 8px 0 rgb(0 0 0 / 9%);
  z-index: 11;
}
td .reject-reason li{
  display: flex;
  padding: 15px;
}
td .reject-reason li:first-child{
  border-bottom: 1px solid #F3F3F9;;
}
td .reject-reason li:last-child{
  font-weight: 400;
  font-size: 12px;
  line-height: 13px;
  color: #949494;

}
.reject-title {
  margin-left: 10px;
}
.reject-title :first-child{
  font-weight: 400;
font-size: 12px;
line-height: 15px;
color: #F64D44;
}
.reject-title :last-child{
  font-weight: 400;
font-size: 10px;
line-height: 12px;
}
.rejected:hover .reject-reason{
  display: block;
}

/*----------------- 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;
}
/*-------------------- 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);
    font-weight: 400;
    font-size: 14px;
    position: relative;
    z-index: 10;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.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;
}
.border-button{
  padding: 8px 30px;
  border-radius: 12px;
  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;
}
/* -----------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: 400;
  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;
}
.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;
}
/*--------- 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: 13px;
line-height: 16px;
color: var(--light-grey);
transition: all 0.3s ease-in;
margin-top: 5px;
}
.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;
height: 36px;
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;
}
.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 */
.drop-parent img{
  cursor: pointer;
}
.drop-parent{
  position: relative;
}
  .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;
  }

/* full screen */
.full-screen{
  min-height: calc(100vh - 160px);
  height: 100%;
}
/* top minus  */
.height-top-minus{
  min-height: calc(100vh - 224px);
  height: 100%;
}
/*----- table height--------- */
.table-employee{
  height: calc(100vh - 335px);
  overflow: hidden;
}
.table-holidays{
  height: calc(100vh - 224px);
  overflow: hidden;
}
.table-leave-record{
  height: calc(100vh - 440px);
  overflow: hidden;
}

/*------------- fancy box-------- */
.fancybox-content{
  padding: 0;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
}
.fancybox-button svg{
  opacity: 0.5;
}
.pop-body{
  background-color: var(--white-color);
  padding: 20px;
  min-width: 350px;
  border-radius: 12px;
}
.pop-body h5{
font-weight: 500;
font-size: 20px;
line-height: 2px;
color: var(--pure-black);
}
/*-------------------- col------------- */
.col-four{
  margin: 0 -0.5% ;
}
.col-four .card-boxes{
  width: 24%;
  margin: 0.5%;
}
/*---------- upload----------------------  */
.file-upload {
  background-color: #F4F5FA;;
  width: 100%;
  margin: 0 auto;
  height: 150px;
  border: 2px dashed #D9D9D9;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.file-upload-btn {
  margin: 0;
  color: var(--main-color);
  border: none;
}

.file-upload-btn:hover {
  background: #1AA059;
  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%;
  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: 20px;
  margin: 0;
  color: rgb(0, 0, 0);
  background: #ffffff;
  margin-left: 30px;
}
.remove-image span{
  font-size: 20px;
}

