@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
body {
  font-family: "Tajawal", sans-serif;
  font-size: 14px;
  direction: rtl;
  color: #4b4b4b;
  background-color: #f1f1f1;
}

.text-primary {
  color: #0072ce !important;
}

.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.form-control:focus {
  color: #4b4b4b;
  background-color: #fff;
  border-color: rgba(0, 114, 206, 0.2);
  outline: 0;
  box-shadow: none;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  background-position: left calc(0.375em + 0.1875rem) center !important;
  border: 1px solid #fc5959 !important;
}

.site-login {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  background: url(/img/bg-1.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.site-login .login-card {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 50px 80px;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.5882352941);
  border-radius: 16px;
  backdrop-filter: blur(9px);
  max-width: 640px;
}
.site-login .login-card .input-field {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14.5px 19px;
  font-size: 16px;
  margin-bottom: 12px;
  transition: border-color 0.3s ease;
}
.site-login .login-card .input-field::placeholder {
  color: rgba(129, 129, 129, 0.8156862745);
  font-size: 0.8rem;
}
.site-login .login-card .input-field:focus {
  border-color: rgba(0, 114, 206, 0.2);
  box-shadow: none;
}
.site-login .login-card .help-block {
  color: #fc5959;
  font-size: 0.8rem;
  margin-bottom: 12px;
  background-color: rgba(252, 89, 89, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
}
.site-login .login-card .btn-login {
  border-radius: 8px;
  margin-top: 1rem;
  border: none;
  font-size: 1rem;
  padding: 17px 15px;
  width: 100%;
  background-color: rgba(25, 118, 184, 0.9);
  color: #fff;
  transition: background-color 0.3s ease;
}
.site-login .login-card .btn-login:hover {
  background-color: rgb(25, 118, 184);
}
.site-login .login-card .forget-link {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-login .login-card .forget-link:hover {
  color: #0072ce;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .login-card {
    padding: 30px;
  }
  .login-card .logo-img {
    width: 120px;
  }
  .login-card h1 {
    font-size: 1.3rem;
  }
  .login-card p {
    font-size: 0.8rem;
  }
  .login-card .input-field {
    height: 40px;
    font-size: 0.8rem;
  }
  .login-card .btn-login {
    height: 40px;
    font-size: 0.9rem;
  }
  .login-card .forget-link {
    font-size: 0.8rem;
  }
}
.pointer {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #4b4b4b;
  transition: color 0.5s ease-in-out;
}
a:hover {
  color: #0072ce;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.navbar .nav-link {
  color: #4b4b4b;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.5s;
}
.navbar .nav-link img {
  margin-left: 8px;
  width: 18px;
  height: 18px;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #0072ce;
  background-color: #f1f1f1;
  border-radius: 10px;
}
.navbar .logo img {
  height: 44px;
}
.navbar .topmenu {
  display: flex;
  align-items: center;
}
.navbar .topmenu .profile-link .dropdown-toggle {
  background: transparent;
  border: 0;
  color: #202020;
  font-weight: 500;
  padding: 0;
}
.navbar .topmenu .profile-link .dropdown-toggle::after {
  display: none;
}
.navbar .topmenu .profile-link .dropdown-item i {
  font-size: 12px;
  margin-left: 2px;
}
.navbar .topmenu .profile-link img {
  margin-left: 4px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.system-card .card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 8px;
}
.system-card .card-image img {
  height: 80px;
  transition: transform 0.5s ease-in-out;
}
.system-card:hover .card-image img {
  transform: scale(1.1);
}

.notify {
  max-height: 515px;
  overflow-y: auto;
}
.notify ul li {
  padding: 15px;
  cursor: pointer;
  margin-bottom: 10px;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease-in-out;
}
.notify ul li.unread {
  background-color: #f8f9fa;
  border-radius: 10px;
}
.notify ul li:first-child, .notify ul li.unread {
  border-top: none;
  border-bottom: none;
}
.notify ul li:last-child {
  border-bottom: none;
}
.notify ul li .notify-title {
  display: flex;
  align-items: center;
}
.notify ul li .notify-title .notification-badge {
  width: 10px;
  height: 10px;
  background-color: #fc5959;
  border-radius: 50%;
  margin-left: 10px;
}
.notify ul li .notify-title .notification-badge.hide {
  display: none;
}
.notify ul li .notify-title p {
  margin: 0;
  font-weight: 500;
}
.notify ul li .notify-details {
  margin: 5px 0 0;
  color: #6c757d;
}
.notify ul li .left-side {
  text-align: right;
}
.notify ul li .left-side p {
  margin: 0;
  color: #6c757d;
  text-align: start;
}
.notify ul li .left-side .check {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.5s ease;
}
.notify ul li .left-side .check small {
  color: #0072ce;
  margin-right: 5px;
}
.notify ul li .left-side .check i {
  font-size: 12px;
  color: #0072ce;
}
.notify ul li .left-side .check.hide small {
  display: none;
}
.notify ul li .left-side .check.hide i {
  color: #9fd16f;
}

.card .card-body {
  padding: 2rem;
}
.card .card-body .form-group {
  margin-bottom: 1.5rem;
}
.card .card-body .form-group label {
  font-weight: 500;
  color: #4b4b4b;
}
.card .card-body .form-group .form-control {
  background-color: #f1f1f1;
  border: none;
  border-radius: 8px;
  padding: 10.5px 19px;
  font-size: 16px;
  margin-bottom: 12px;
  transition: border-color 0.3s ease;
}
.card .card-body .form-group .form-control::placeholder {
  color: rgba(129, 129, 129, 0.8156862745);
  font-size: 0.8rem;
}
.card .card-body .form-group .form-control:focus {
  border-color: rgba(0, 114, 206, 0.2);
  box-shadow: none;
}

.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.custom-table thead {
  background-color: #f1f1f1;
  height: 68px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.custom-table thead tr {
  text-align: center;
}
.custom-table thead tr th {
  color: #4b4b4b;
  padding: 20px 12px;
}
.custom-table tbody tr {
  text-align: center;
}
.custom-table tbody tr td {
  padding: 20px 12px;
  border-bottom: 1px solid #f1f1f1;
}
.custom-table tbody tr:last-child td {
  border-bottom: none;
}
.custom-table .badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  min-width: 125px;
}
.custom-table .badge-danger {
  background-color: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}
.custom-table .badge-warning {
  background-color: rgba(255, 165, 0, 0.1);
  color: #ffa500;
}
.custom-table .badge-success {
  background-color: rgba(0, 128, 0, 0.1);
  color: #008000;
}

.btn-custom {
  border-radius: 8px;
  margin-top: 1rem;
  border: none;
  font-size: 1rem;
  padding: 12px 20px;
  width: 25%;
  background-color: rgba(0, 114, 206, 0.8);
  color: #fff !important;
  transition: background-color 0.3s ease;
}
.btn-custom:hover {
  background-color: #0072ce !important;
}
@media (max-width: 767px) {
  .btn-custom {
    width: 100%;
  }
}

.vacation-form .order .upload-kit {
  display: flex !important;
  justify-content: center;
  margin-bottom: 8px;
  height: 50px;
  border: 2px dashed #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  padding: 10px;
}
.vacation-form .order .upload-kit .files {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.vacation-form .order .upload-kit .files .file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 5px;
  background-color: #f9f9f9;
}
.vacation-form .order .upload-kit .files .file-item .remove-file {
  color: #dc3545;
  cursor: pointer;
}
.vacation-form .order .upload-kit .files .file-item .remove-file:hover {
  color: #a71d2a;
}
.vacation-form .order .upload-kit .upload-kit-input,
.vacation-form .order .upload-kit .upload-kit-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.vacation-form .order .upload-kit .upload-kit-input input[type=file],
.vacation-form .order .upload-kit .upload-kit-item input[type=file] {
  display: none;
}
.vacation-form .order .upload-kit .upload-kit-input .add,
.vacation-form .order .upload-kit .upload-kit-item .add {
  font-size: 24px;
  color: rgba(0, 114, 206, 0.8);
  cursor: pointer;
  transition: color 0.3s ease;
}
.vacation-form .order .upload-kit .upload-kit-input .add:hover,
.vacation-form .order .upload-kit .upload-kit-item .add:hover {
  color: #0072ce;
}
.vacation-form .order .upload-kit .upload-kit-input .drag,
.vacation-form .order .upload-kit .upload-kit-item .drag {
  font-size: 24px;
  color: #6c757d;
  margin-left: 10px;
  cursor: move;
}
.vacation-form .order .upload-kit .upload-kit-input .error-popover,
.vacation-form .order .upload-kit .upload-kit-item .error-popover {
  font-size: 24px;
  color: #dc3545;
  margin-left: 10px;
  cursor: pointer;
}
.vacation-form .order .upload-kit .upload-kit-input .progress,
.vacation-form .order .upload-kit .upload-kit-item .progress {
  width: 100%;
  height: 10px;
  background-color: #e9ecef;
  border-radius: 5px;
  overflow: hidden;
}
.vacation-form .order .upload-kit .upload-kit-input .progress .progress-bar,
.vacation-form .order .upload-kit .upload-kit-item .progress .progress-bar {
  background-color: #0072ce;
  height: 100%;
}
.vacation-form #employeesleaves-start_date-kvdate .input-group-prepend span,
.vacation-form #employeesleaves-end_date-kvdate .input-group-prepend span {
  padding: 14.5px 17px;
  border: 0;
  color: rgba(129, 129, 129, 0.8156862745);
  border: none !important;
  border-radius: 0;
}
.vacation-form #employeesleaves-start_date-kvdate .kv-date-remove,
.vacation-form #employeesleaves-end_date-kvdate .kv-date-remove {
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}
.vacation-form #employeesleaves-start_date-kvdate .kv-date-picker,
.vacation-form #employeesleaves-end_date-kvdate .kv-date-picker {
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}
.vacation-form .error-summary {
  background-color: rgba(252, 89, 89, 0.1);
  color: #fb2727;
  padding: 16px;
}
.vacation-form .help-block {
  color: #fc5959;
}
.vacation-form .select2-container--krajee-bs4 .select2-selection--single {
  direction: rtl;
}
.vacation-form .select2-container--krajee-bs4 .select2-selection--single .select2-selection__clear {
  margin-left: 24px;
}
.vacation-form .select2-container--krajee-bs4 .select2-selection--single .select2-selection__arrow {
  margin-left: 8px;
  border: 0;
  align-self: anchor-center;
}
.vacation-form .file {
  font-size: 12px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0 1000px #f1f1f1 inset !important;
  color: #000 !important;
  filter: none !important;
  transition: background-color 9999s ease-in-out 0s !important;
}

/*# sourceMappingURL=style.css.map */
