/*///////////////////////////////////////
/////////////////////////////////////////
/////////////// DOPA TECH ///////////////
/////////////////////////////////////////
///////////////////////////////////////*/

:root {
  --primary--50: #f1f1f1;
  --primary--100: #e0e0e0;
  --primary--200: #c0c0c0;
  --primary--300: #a0a0a0;
  --primary--400: #707070;
  --primary--500: #505050;
  --primary--600: #404040;
  --primary--700: #303030;
  --primary--800: #202020;
  --primary--900: #101010;
  --primary--1000: #000000;
}

.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.content-wrapper .bx-dots-vertical-rounded {
  font-size: 1.5rem;
}
#smartwizard .tab-content {
  padding: 0 !important;
}

.view-job-desc {
  padding: 2px 6px;
  font-size: 14px;
}

/* #jobCardsTable td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
} */

.tooltip-one {
  display: block;
  /* white-space: nowrap; */
  white-space: wrap;
  overflow: hidden;
  /* text-overflow: ellipsis; */
  max-width: 300px;
}

.width-300 {
  width: 300px;
}

.tooltip .tooltip-inner {
  background-color: #ffffff;
  color: #697a8d;
  font-size: 14px;
  padding: 1.125rem 1.125rem;
  box-shadow: 0 0.25rem 1rem rgba(161, 172, 184, 0.45);
}


/* User Cards */

.our-team {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 0.375rem;
}

.our-team .picture {
  display: inline-block;
  height: 130px;
  width: 130px;
  margin-bottom: 16px;
  z-index: 1;
  position: relative;
}

.our-team .picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: var(--primary--700);
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
  height: 100%;
}

.our-team .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .picture img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
}

.our-team .title {
  display: block;
  font-size: 15px;
  color: #4e5052;
  text-transform: capitalize;
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--primary--700);
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
}

.our-team .social li a {
  display: block;
  padding: 10px;
  font-size: 17px;
  color: white;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.our-team .social li a:hover {
  color: var(--primary--700);
  background-color: #f7f5ec;
}

.our-team h3 {
  color: var(--primary--700);
}

/* .role-title {
  font-weight: 400;
  color: var(--primary--600);
  text-align: center;
} */

/* .role-title::before, .role-title::after {
  display: inline-block;
  content: "";
  border-top: .1rem solid var(--primary--500);
  width: 25%;
  margin: 0 2rem;
  transform: translateY(-6px);
} */

.user-info {
  text-align: left;
  padding: 0 30px;
  color: var(--primary--400);
}

.user-info i {
  padding:0 6px 0 0;
}

/* End of Users */

.white-container {
  background-clip: padding-box;
  box-shadow: 0 2px 6px 0 rgba(67, 89, 113, 0.12);
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid #d9dee3;
  border-radius: 0.5rem;
  padding: 1rem 1rem;
}

.bx {
  vertical-align: text-bottom;
  padding-right: 4px;
}


/* Profile Picture Uner Logo */

#profile-info .picture {
  display: inline-block;
  height: 100px;
  width: 100px;
  margin-bottom: 16px;
  z-index: 1;
  position: relative;
}


#profile-info .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary--700);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border: 1px solid white;
}

#profile-info .picture img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

#profile-info .picture:hover img {
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
}

#profile-info {
  text-align: center;
  margin-top: 25px;
}

#profile-info h4 {
  margin-bottom: 5px;
}

/* Red border for error fields */
input.error {
  border: 1px solid red !important;
  border-radius: 0.375rem;
}

.input-group.error {
  border: 1px solid red;
  border-radius: 0.375rem; /* Optional: Add border radius for better appearance */
}

.d-flex.error {
  border: 1px solid red;
  border-radius: 4px;
  padding: 10px;
  animation: shake 0.4s ease-in-out;
}

/* Shake animation */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.4s ease-in-out;
}

.capitalize {
  text-transform: capitalize;
}

.red {
  color: #ff3e1d;
}

/* Hide arrows in WebKit browsers (Chrome, Safari) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

#updateAssetBtn, #updateJobCardBtn, #uploadAssetFileBtn {
  cursor: pointer;
}

.dataTables_wrapper  .dataTable {
  margin-top: 20px;
}
.dataTables_wrapper  .dataTable th {
  background: #417084;
  color: #fff;
}

.card-header {
  color: #00162b;
}
div:where(.swal2-container) {
  z-index: 1100 !important;
}

.dataTable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: grab;
}

.grabbing {
  cursor: grabbing;
}

.highlight {
  background-color: yellow;
}

.asset-tabs .tab-content {
  padding: 0 !important;
}

.required:after {
  content:" *";
  color: red;
}

.bg-light-green {
  background-color: #e8fadf !important;
}
.bg-light-yellow {
  background-color: #fff2d6 !important;
}
.bg-light-red {
  background-color: #ffe0db !important;
}

#asset-files-list {
  margin-top: 20px;
}

.file-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.file-preview {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  padding: 6px;
}

.file-preview img {
  width: 125%;
  height: 125%;
  object-fit: cover;
}

.file-actions {
  margin-left: auto;
  text-align: end;
  display: inline-block;
}

.file-actions button {
  margin-left: 5px;
}

@media (max-width: 576px) {
  .file-item {
  padding: 10px 0px;
  }
  .file-actions {
    display: inline-grid;
    grid-gap: 8px;
  }
}

/* HTML: <div class="loader"></div> */
/* .loader {
  display: flex;
  justify-content: center;
  margin: auto;
  width: fit-content;
  font-size: 40px;
  font-family: system-ui,sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #0000;
  -webkit-text-stroke: 1px #000;
  background: 
    linear-gradient(90deg,#0000 33%,#000 0 67%,#0000 0) 
    0/300% 100% no-repeat text;
  animation: l2 2s linear infinite;
}
.loader:before {
  margin: 100%;
  content: "Loading";
}
@keyframes l2 {
  0%{background-position: 100%}
} */

.loader {
  width: 300px; /* Adjust to your logo size */
  height: 300px;
  margin: auto;
  
  /* Your original gradient animation */
  background: 
    linear-gradient(90deg, #0000 33%, #000 0 67%, #0000 0) 
    0 / 300% 100% no-repeat;
  animation: l2 1.5s linear infinite;
  
  -webkit-mask: url('../img/logo/logo-with-name-highRes-2.png') center / contain no-repeat;
  mask: url('../img/logo/logo-with-name-highRes-2.png') center / contain no-repeat;
}

@keyframes l2 {
  0% { background-position: 100%; }
}

.employee-content h5, .card-header h5 {
  color: #fff;
}

.employee-card-wrapper .card-header {
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
  color: #fff;
  padding-bottom: 10px;
}

.employee-card-wrapper .card button {
  padding: 6px 10px;
}

.employee-card-wrapper .card button i {
  padding: 0px;
}

.employee-card-wrapper .badge {
  color: #00162b !important;
  font-size: 15px;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #d9dee3 !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #00162b !important;
}

.nav-link.danger {
  color: white;
  background-color: #ff3e1d;
}

.nav-link.danger:not(.active)::before, .nav-link.danger:not(.active)::after {
  border-left-color: #ff3e1d !important;
}