@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
  font-family: "Inter",-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif,Segoe UI,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
:root {
  --clr-white: rgb(255, 255, 255);
  --clr-black: rgb(0, 0, 0);
  --clr-light: rgb(245, 248, 255);
  --clr-light-gray: rgb(196, 195, 196);
  --clr-blue: rgb(63, 134, 255);
  --clr-light-blue: rgb(171, 202, 255);
  --dot-size: 18px;
  --dot-gap: 14px;
  --dot-color: #53b0e8;
  --duration: 1.2s;
  --scale-max: 2;
}

/* Container */
.loaders {
  display: inline-flex;
  align-items: center;
  gap: var(--dot-gap);
  justify-content: center;
  height: calc(var(--dot-size) * var(--scale-max));
  /* opsional: agar mudah diposisikan */
  /* width: 100%; */
}

/* titik */
.dot {
  width: var(--dot-size);
  height: var(--dot-size);
  background: var(--dot-color);
  border-radius: 50%;
  display: inline-block;
  transform-origin: center;
  transform: scale(1);
  opacity: 1;
  animation: pulse var(--duration) ease-in-out infinite;
}

/* beri delay bertahap agar terlihat gelombang */
.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: calc(var(--duration) * 0.08);
}

.dot:nth-child(3) {
  animation-delay: calc(var(--duration) * 0.16);
}

.dot:nth-child(4) {
  animation-delay: calc(var(--duration) * 0.24);
}

.dot:nth-child(5) {
  animation-delay: calc(var(--duration) * 0.32);
}

/* keyframes: membesar lalu mengecil + opasitas turun */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  30% {
    transform: scale(var(--scale-max));
    opacity: 0.3;
  }

  60% {
    transform: scale(0.95);
    opacity: 0.6;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* aksesibilitas: teks tersembunyi */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* hormati prefer-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .dot {
    animation: none;
    transform: scale(1);
    opacity: 1;
  }
}

.bg-light-dark {
  background-color: #00000067;
}

.swal2-backdrop-show {
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
}

.modal.show {
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
}

/* custom loading */
.container-load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.container-load.active {
  display: flex;
}

body.no-scroll {
  overflow: hidden;
}

.custom-loader {
  margin-left: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: conic-gradient(#0000 10%, #7d7d7d);

  /* WebKit (Chrome, Safari) */
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  -webkit-mask-composite: destination-in;

  /* Standard syntax */
  mask: radial-gradient(farthest-side, #0000 calc(100% - 5px), #000 0);
  mask-composite: intersect; /* May have varying support */

  animation: s3 1s infinite linear;
}

@keyframes s3 {
  to {
    transform: rotate(1turn);
  }
}

.container-alert {
  z-index: 999999999999;
  position: fixed;
  top: 80px;
  right: 1px;
}

.container-alert :where(.content-alert) {
  display: flex;
  align-items: center;
}

.container-alert :where(.column-content) {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
}

.container-alert .alert-notification {
  min-width: 300px;
  max-width: 400px;
  position: relative;
  list-style: none;
  border-radius: 15px;
  padding: 16px 17px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.468);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  animation: show_alert 0.3s ease forwards;
}

@keyframes show_alert {
  0% {
    transform: translateX(100%);
  }
  40% {
    transform: translateX(-5%);
  }
  80% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-8%);
  }
}

.container-alert .alert-notification.hide {
  animation: hide_alert 0.3s ease forwards;
}

@keyframes hide_alert {
  0% {
    transform: translateX(-10%);
  }
  40% {
    transform: translateX(0%);
  }
  80% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(calc(100% + 20px));
  }
}

.alert-notification .content-alert .column-content .title {
  font-size: 0.8rem;
  color: #a4a4a4;
  margin-bottom: 0.1rem;
}

.alert-notification .content-alert .column-content .message {
  font-size: 1rem;
  color: #1b1b1b;
}

.alert-notification i:last-child {
  top: -9px;
  right: -9px;
  padding: 7px 9px;
  border-radius: 100%;
  position: absolute;
  background-color: rgba(245, 245, 245, 0.711);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #aeb0d7;
  cursor: pointer;
}

.alert-notification i:last-child:hover {
  background-color: #ff9e9e;
  color: var(--clr-white);
}

.alert-notification i:last-child:active {
  background-color: #e05b5b;
  color: var(--clr-white);
}

.progres-time {
  position: absolute;
  top: -15px;
  right: -14.4px;
}

.progres-time circle {
  fill: none;
  stroke: #ff0000;
  stroke-width: 3.4;
  stroke-dasharray: 89;
  stroke-dashoffset: 89;
  animation: strokeAnim 2s ease forwards;
  border-radius: 50%;
}

@keyframes strokeAnim {
  to {
    stroke-dashoffset: 0;
  }
}

.bg-grey {
  background-color: #e9ecef;
}

.text-white {
  color: var(--clr-white) !important;
}

.border-grey {
  border: 1px solid #9a9a9a !important;
}

.bg-auth {
  background-image: url("../images/backgrounds/background.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.btn-auth {
  width: 50px;
  padding: 14px 40px;
  background-color: blue;
}

.upload-area {
  width: 100%;
  max-width: 50rem;
  border-radius: 24px;
  text-align: center;
}

.upload-area--open {
  animation: slidDown 500ms ease-in-out;
}

@keyframes slidDown {
  from {
    height: 15rem;
  }

  to {
    height: 20rem;
  }
}

.upload-area__drop-zoon {
  background: #f8f9fa;
  padding: 10px;
  border: 2px dashed #0d6efd;
  position: relative;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
  cursor: pointer;
  transition: border-color 300ms ease-in-out;
}

.upload-area__drop-zoon2 {
  background: #f8f9fa;
  padding: 10px;
  border: 2px dashed #0d6efd;
  position: relative;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
  cursor: pointer;
  transition: border-color 300ms ease-in-out;
}

.uploaded-file__name-wrapper {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: center;
}

.upload-area__drop-zoon:hover {
  background: #e9ecef;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.drop-zoon__icon {
  display: flex;
  font-size: 40px;
  color: var(--clr-blue);
  transition: transform 0.3s ease;
}

.drop-zoon:hover .drop-zoon__icon {
  transform: scale(1.1);
  color: #0d6efd;
}

.drop-zoon__paragraph {
  font-size: 0.9375rem;
  color: var(--clr-light-gray);
  margin: 0;
  margin-top: 0.625rem;
  transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__paragraph {
  opacity: 0.7;
}

.drop-zoon__loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  color: var(--clr-light-blue);
  z-index: 10;
}

.drop-zoon__preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.3125rem;
  border-radius: 10px;
  display: none;
  transition: opacity 300ms ease-in-out;
}

.preview-image_inputan {
  position: inline;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.drop-zoon:hover .drop-zoon__preview-image {
  opacity: 0.8;
}

.drop-zoon__file-input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

/* (drop-zoon--over) Modifier Class */
.drop-zoon--over {
  border-color: var(--clr-blue);
}

.drop-zoon--over .drop-zoon__icon,
.drop-zoon--over .drop-zoon__paragraph {
  opacity: 0.7;
}

.drop-zoon--Uploaded .drop-zoon__icon,
.drop-zoon--Uploaded .drop-zoon__paragraph {
  display: none;
}

/* File Details Area */
.upload-area__file-details {
  height: 0;
  visibility: hidden;
  opacity: 0;
  text-align: left;
  transition: none 500ms ease-in-out;
  transition-property: opacity, visibility;
  transition-delay: 500ms;
}

/* (duploaded-file--open) Modifier Class */
.file-details--open {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.file-details__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-light-gray);
}

/* Uploaded File */
.uploaded-file {
  display: flex;
  align-items: center;
  padding: 0.625rem 0;
  visibility: hidden;
  opacity: 0;
  transition: none 500ms ease-in-out;
  transition-property: visibility, opacity;
}

/* (duploaded-file--open) Modifier Class */
.uploaded-file--open {
  visibility: visible;
  opacity: 1;
}

.uploaded-file__icon-container {
  position: relative;
  margin-right: 0.3125rem;
}

.uploaded-file__icon {
  font-size: 3.4375rem;
  color: var(--clr-blue);
}

.uploaded-file__icon-text {
  position: absolute;
  top: 1.5625rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-white);
}

.uploaded-file__info {
  position: relative;
  top: -0.3125rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.uploaded-file__info::before,
.uploaded-file__info::after {
  content: "";
  position: absolute;
  bottom: -0.9375rem;
  width: 0;
  height: 0.5rem;
  background-color: #ebf2ff;
  border-radius: 0.625rem;
}

.uploaded-file__info::before {
  width: 100%;
}

.uploaded-file__info::after {
  width: 100%;
  background-color: var(--clr-blue);
}

/* Progress Animation */
.uploaded-file__info--active::after {
  animation: progressMove 800ms ease-in-out;
  animation-delay: 300ms;
}

@keyframes progressMove {
  from {
    width: 0%;
    background-color: transparent;
  }

  to {
    width: 100%;
    background-color: var(--clr-blue);
  }
}
.uploaded-file__name {
  width: 100%;
  display: block;
  font-size: 1rem;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.uploaded-file__counter {
  font-size: 1rem;
  color: var(--clr-light-gray);
}

.custom-file-upload {
  cursor: pointer;
  background: #f8f9fa;
  transition: all 0.3s ease;
  padding: 30px;
  border: 2px dashed #0d6efd;
  border-radius: 10px;
  text-align: center;
  font-size: 1.2rem;
}

.custom-file-upload:hover {
  background: #e9ecef;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.file-text {
  font-weight: 500;
  color: #495057;
  font-size: 1.1rem;
}

.custom-file-upload i {
  transition: transform 0.3s ease;
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 10px;
}

.custom-file-upload:hover i {
  transform: scale(1.1);
  color: #0d6efd;
}

.file-selected {
  border-color: #28a745;
  background: #e7f1ff;
}

.file-selected i {
  color: #28a745;
}

#file-upload {
  display: none;
}

.toast-container {
  position: fixed;
  top: 1rem;
  text-align: right;
  right: 355px;
  z-index: 1055;
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}
.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}

.edit-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #fffffff3;
  border-radius: 50%;
  color: #004fc5;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.edit-icon:hover {
  color: #fffffff3;
  background-color: #0044ab;
}

.zoom-icon {
  position: absolute;
  top: 8px;
  right: 40px;
  background-color: #fffffff3;
  border-radius: 50%;
  color: #004fc5;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.zoom-icon:hover,
.zoom-icon-denah:hover {
  color: #fffffff3;
  background-color: #0044ab;
}

.image-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Gambar dengan animasi zoom */
.image-modal-content {
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.image-modal-overlay.active .image-modal-content {
  transform: scale(1);
}

/* Klik di mana saja untuk keluar */
.image-modal-overlay:after {
  content: "×";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.expand-button-denah {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 4px;
  cursor: pointer;
  z-index: 10;
}

.zoom-icon-denah {
  position: absolute;
  top: 8px;
  right: 45px;
  background-color: #fffffff3;
  border-radius: 50%;
  color: #004fc5;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.preview-image-denah {
  max-width: 80%;
  border-radius: 10px;
  height: auto;
  display: block;
}

.select2-container--default .select2-selection--single {
  border: none !important;
  box-shadow: none !important;
}

.select2-container--default .select2-selection--single:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.notif-dot-wrapper {
  position: relative;
  display: inline-block;
}

.notif-dot {
  position: absolute;
  top: -18px;
  right: -25px;
  font-size: 14px;
  color: red;
}

.modal-confirm {
  color: #636363;
  width: 400px;
}
.modal-confirm .modal-content {
  padding: 20px;
  border-radius: 5px;
  border: none;
  text-align: center;
  font-size: 14px;
}
.modal-confirm .modal-header {
  border-bottom: none;
  position: relative;
}
.modal-confirm h4 {
  text-align: center;
  font-size: 26px;
  margin: 30px 0 -10px;
}
.modal-confirm .close {
  position: absolute;
  top: -5px;
  right: -2px;
}
.modal-confirm .modal-body {
  color: #999;
}
.modal-confirm .modal-footer {
  border: none;
  text-align: center;
  border-radius: 5px;
  font-size: 13px;
  padding: 10px 15px 25px;
}
.modal-confirm .modal-footer a {
  color: #999;
}
.modal-confirm .icon-box {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  z-index: 9;
  text-align: center;
}
.modal-confirm .icon-box i {
  font-size: 46px;
  display: inline-block;
  margin-top: 20px;
}
.modal-confirm .btn,
.modal-confirm .btn:active {
  color: #fff;
  border-radius: 4px;
  background: #60c7c1;
  text-decoration: none;
  transition: all 0.4s;
  line-height: normal;
  min-width: 120px;
  border: none;
  min-height: 40px;
  border-radius: 3px;
  margin: 0 5px;
}
.modal-confirm .btn-secondary {
  background: #c1c1c1;
}
.modal-confirm .btn-secondary:hover,
.modal-confirm .btn-secondary:focus {
  background: #a8a8a8;
}
.modal-confirm .btn-danger {
  background: #f15e5e;
}
.modal-confirm .btn-danger:hover,
.modal-confirm .btn-danger:focus {
  background: #ee3535;
}
.trigger-btn {
  display: inline-block;
  margin: 100px auto;
}

.card_kavling {
  width: 200px;
  height: 250px;
  border-radius: 24px;
  text-align: center;
}

.container-upload-area__drop-zoon {
  height: 210px !important;
  background: #f8f9fa;
  padding: 10px;
  border: 2px dashed #0d6efd;
  position: relative;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
  cursor: pointer;
  transition: border-color 300ms ease-in-out;
}

.table-upload-area__drop-zoon {
  height: 90px !important;
  background: #f8f9fa;
  padding: 10px;
  border: 2px dashed #0d6efd;
  position: relative;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
  cursor: pointer;
}

.container-card_kavling {
  min-width: 160px;
  height: 210px !important;
  background: #dae2e3;
  padding: 10px;
  position: relative;
  height: 10rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
}
.container-card_kavling .title {
  font-size: 42pt;
}
.container-card_kavling .btn-detail {
  border-radius: 10px;
  color: #242424;
  padding: 5px 20px;
  background: #73b1ba;
  margin-bottom: 5px;
  cursor: pointer;
  font-weight: bolder;
  transition: background 0.3s ease;
}

.container-card_kavling .btn-detail:hover {
  background: #5e9199;
}
#dropZoonFormAddProgres,
#dropZoonFormAddProgresByTukangHarian {
  overflow-y: auto;
  overflow-x: hidden;
}
#imagePreviewContainerFormAddProgres,
#imagePreviewContainerFormAddProgresByTukangHarian {
  height: 280px;
  margin-left: 1.3rem;
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
}
.preview-item {
  width: 100px;
  height: 100px;
  position: relative;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.search__container {
  min-width: 300px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.search__title {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  color: #ff8b88;
}

.search__input {
  width: 100%;
  padding: 12px 24px;
  background-color: transparent;
  transition: transform 250ms ease-in-out;
  font-size: 14px;
  line-height: 18px;
  color: #575756;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: 95% center;
  border-radius: 50px;
  border: 1px solid #c7c7c7;
  transition: all 250ms ease-in-out;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.search__input::placeholder {
  color: color(#c7c7c7 a(0.8));
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.search__input:hover,
.search__input:focus {
  padding: 12px 0;
  outline: 0;
  border: 1px solid transparent;
  border-bottom: 1px solid #c7c7c7;
  border-radius: 0;
  background-position: 100% center;
}

.tabBar-container {
  margin: 0 auto;
}

.tabBar-buttons {
  padding-left: 2rem;
  display: flex;
}

.tabBar-button {
  position: relative;
  padding: 10px 30px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: rgb(255, 255, 255);
  color: var(--clr-blue);
  cursor: pointer;
  border: 1px solid transparent;
  border-bottom: none;
  outline: none;
}

.tabBar-button:hover {
  color: #00a9fe;
}

.tabBar-button.active {
  color: gray;
  font-weight: bolder;
  background-color: white;
  border: 1px solid #c7c7c7;
  position: relative;
  overflow: visible;
}

.tabBar-button.active .element-right::before,
.tabBar-button.active .element-left::before {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 40px;
  height: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  z-index: 3;
}

.tabBar-button.active .element-right::before {
  right: -20px;
}
.tabBar-button.active .element-left::before {
  left: -20px;
}

.tabBar-button.active .element-right::after,
.tabBar-button.active .element-left::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 20px;
  height: 21px;
  border-bottom: 1px solid #c7c7c7;
  z-index: 3;
}

.tabBar-button.active .element-right::after {
  right: -20px;
  border-left: 1px solid #c7c7c7;
  border-bottom-left-radius: 20px;
}

.tabBar-button.active .element-left::after {
  left: -20px;
  border-right: 1px solid #c7c7c7;
  border-bottom-right-radius: 20px;
}

.tabBar-button.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ffffff;
  z-index: 2;
}

.tabBar-content {
  background-color: white;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid #c7c7c7;
  border-radius: 15px;
  width: 100%;
  min-height: 480px;
  display: none;
}

.tabBar-content.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.file-plus-icon {
  position: relative;
  width: 32px;
  height: 40px;
  background: #465a65;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 0 100%);
  border-radius: 4px;
}

/* Plus Sign */
.file-plus-icon::before,
.file-plus-icon::after {
  content: "";
  position: absolute;
  background: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.file-plus-icon::before {
  width: 12px;
  height: 2px;
}

.file-plus-icon::after {
  width: 2px;
  height: 12px;
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.bg-side, .bg-nav{
  background-color: #f1f5f9 !important;
}

.avatar-wrapper .user-pic, 
#avatar-preview .user-pic{
    width: 100px;
    height: 100px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.7);
    border: 5px solid rgba(255, 255, 255, 1);
}


button.delete-avatar:hover {
    background-color: #b27a19;
}

@media screen and (max-width: 600px) {
  #title-navbar-admin {
    display: none !important;
  }

  #title-navbar-user {
    display: none !important;
  }
}

@media screen and (max-width: 530px) {
}
