/* General Styles */
body {
  font-family: 'Poppins' !important;
}

.clr-black {
  color: #000000;
}

.clr-white {
  color: #FFFFFF;
}

.clr-red {
  color: #FF0000;
}

.clr-blue {
  color: #253B96;
}

.clr-lightblue {
  color: #05BCFF;
}

.clr-cyan {
  color: #00DFB7;
}

.clr-gray {
  color: #979797;
}

.clr-drakbluegray {
  color: #475467;
}

.clr-bluegray {
  color: #344054;
}

.clr-purple {
  color: #6938EF;
}

.fnt-32 {
  font-size: 32px;
}

.fnt-24 {
  font-size: 24px;
}

.fnt-22 {
  font-size: 22px;
}

.fnt-20 {
  font-size: 20px;
}

.fnt-18 {
  font-size: 18px;
}

.fnt-16 {
  font-size: 16px;
}

.fnt-14 {
  font-size: 14px;
}

.fnt-13 {
  font-size: 13px;
}

.fnt-12 {
  font-size: 12px;
}

.fnt-11 {
  font-size: 11px;
}

.fnt-w-700 {
  font-weight: 700;
}

.fnt-w-600 {
  font-weight: 600;
}

.fnt-w-500 {
  font-weight: 500;
}

.fnt-w-400 {
  font-weight: 400;
}

.hidden {
  display: none !important;
}

.txt-u {
  text-decoration: underline;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.ac-c {
  align-content: center;
}

.al-it-ct {
  align-items: center;
}

.dp-flx {
  display: flex;
}

.flx-d-col {
  flex-direction: column;
}

.flx-d-row {
  flex-direction: row;
}

.jc-sb {
  justify-content: space-between;
}

.jc-ct {
  justify-content: center;
}

.js-it-ct {
  justify-items: center;
}

.mg-tp-at {
  margin-top: auto;
}

.mg-tp-40 {
  margin-top: 40px;
}

.mg-tp-20 {
  margin-top: 20px;
}

.mg-tp-10 {
  margin-top: 10px;
}

.mg-bt-50 {
  margin-bottom: 50px;
}

.mg-bt-30 {
  margin-bottom: 30px;
}

.mg-bt-20 {
  margin-bottom: 20px;
}

.mg-bt-15 {
  margin-bottom: 15px;
}
.mg-bt-10 {
  margin-bottom: 10px;
}

.mg-bt-5 {
  margin-bottom: 5px;
}


.pd-r-5 {
  padding-right: 5px;
}

.pd-r-10 {
  padding-right: 10px;
}

.pd-lr-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.pd-lr-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.pd-lr-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.pd-lr-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.pd-lr-2 {
  padding-left: 2px;
  padding-right: 2px;
}

.pd-tb-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pd-tb-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.pd-20 {
  padding: 20px;
}

.br-12 {
  border-radius: 12px;
}

.flx-1 {
  flex: 1;
}

.pointer {
  cursor: pointer;
}

.pst-abs {
  position: absolute;
}

.pst-rel {
  position: relative;
}

.txt-shadow {
  text-shadow: 2px 2px 10px rgba(45, 26, 98, 0.8);
}

.container-body {
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
}

.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background-color: #f9f9f9;
  width: 100%;
  box-sizing: border-box;
}

.country-flag {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.country-flag img {
  width: 24px;
  height: 16px;
  margin-right: 10px;
}

.country-flag select {
  border: none;
  background: none;
  outline: none;
}

.phone-input input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  width: 100%;
}

.google-btn {
  width: 100%;
  padding: 12px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-btn img {
  width: 24px;
  margin-right: 10px;
}

.google-btn:hover {
  background-color: #f9f9f9;
}

.line-on-sides {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 5px;
  width: 80%;
}

.line-on-sides::before,
.line-on-sides::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #D4D3D3;
}

.verification-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

/* Code Input Boxes */
.code-inputs {
  display: flex;
  column-gap: 10px;
  margin-bottom: 20px;
}

.code-box {
  width: 50px;
  height: 58px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.filled {
  border-color: #05BCFF !important;
}

.code-box:focus {
  border-color: #05BCFF;
}

.line-divider {
  width: 100%;
  height: 4px;
  border-radius: 10px;
  margin: 10px 0;
}

.input-container {
  width: 100%;
  border: 1px solid #B0B1BC40;
  border-radius: 5px;
  box-shadow: 1px 1px 1px 0px #253B9640;
  padding: 8px 10px;
  height: 60px;
}

.input-container input,
.input-container select {
  border: none;
  width: 100%;
  outline: none;
}

.input-container input:focus {
  border: none;
  outline: none;
}

.input-container span {
  padding-block: 1px;
  padding-inline: 2px;
}

/* Container for the file input */
.photo-upload-box {
  position: relative;
  width: 118px;
  height: 150px;
  border-radius: 10px;
  border: 2px solid #ddd;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  cursor: pointer;
}

.photo-upload-box input[type="file"] {
  display: none;
}

/* Image preview box */
.image-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100% !important;
  width: 100% !important;
  overflow: hidden !important;
  background-color: #FFFFFF;
  border: none !important;
}

.image-preview-main {
  display: none;
  height: 280px;
  width: 235px;
  border: none;
  border-radius: 20px;
  object-fit: cover;
}

.image-preview img.uploaded-image {
  width: 95%;
  height: 95%;
  object-fit: cover;
  border-radius: 10px;
}

.remove-icon {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-color: #05BCFF;
  border-radius: 0 10px 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.remove-icon img {
  width: 16px;
  height: 16px;
}

.selected-label {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 2px 5px;
  font-size: 10px;
  border-radius: 3px;
  display: none;
}

.bottom-nav .nav-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.bottom-nav .nav-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 380px;
  height: 58px;
  position: fixed;
  bottom: 20px;
  background: white;
  padding: 10px 0;
  box-shadow: 1px 1px 0.5px 0px #253B9640;
  border-radius: 50px;
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
}

.nav-item.active {
  background-color: #05BCFF;
  border-radius: 50%;
}

.nav-item.active img {
  filter: brightness(0) invert(1);
}

.nav-item .uploaded-img {
  filter: none !important;
}

.date-scroll-container {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
  height: 160px;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}


.date-scroll-container::-webkit-scrollbar,
.scroll::-webkit-scrollbar {
  display: none;
}

.date-scroll {
  display: flex;
  gap: 10px;
  padding: 5px;
  width: max-content;
}

.date-box {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  background-color: white;
  color: black;
  border-radius: 10px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.date-box.active {
  background-color: #3085fe;
  color: white;
}

.time-box {
  border: 1px solid #EAECF0;
  border-radius: 12px;
  background-color: #F9FAFB;
}

.blue-container {
  width: 100%;
  height: 240px;
  background-color: #05BCFF;
  border-radius: 0 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.white-container {
  width: 95%;
  height: 220px;
  padding: 16px;
  border-radius: 8px;
  background-color: #FEFEFE;
  display: flex;
  flex-direction: column;
}

.sml-container {
  width: 48%;
  padding: 10px;
  border: 1px solid #EBECEE;
  background-color: #F9F9F9;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sml-container .dp-flx {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.primary-btn {
  width: 100%;
  padding: 16px;
  background-color: #05BCFF;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 2px 2px 0px #97979780;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

.secondary-btn {
  width: 48%;
  height: 40px;
  border-radius: 100px;
}

.third-btn {
  width: 100%;
  height: 40px;
  border-radius: 100px;
  box-shadow: 0px 0px 0px 1px #6938EF;
}

.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(217, 217, 217, 0.77);
  z-index: 998;
}

.popup-container {
  position: fixed;
  bottom: 20px;
  width: 95%;
  padding: 85px 31px 32px;
  z-index: 999;
  background-color: #FFFFFF;
  border-radius: 16px 16px 0 0;
}

.popup-container .clock-img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.user-img {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  overflow: hidden;
}

.user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-container {
  max-width: 430px;
  /* background-image: url('../assets/img/map.png');
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: cover; */
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}

.profile-container {
  max-width: 430px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: cover;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}

.arrow-img {
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 8px;
  position: absolute;
  left: 10px;
  right: auto;
  transition: transform 0.2s ease;
  z-index: 2;
  touch-action: none;
}

.swipe-btn {
  width: 100%;
  padding: 16px;
  background-color: #05BCFF;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 2px 2px 0px #97979780;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.swipe-container {
  position: relative;
  touch-action: none;
}

.swipe-text {
  transition: opacity 0.2s ease;
}

.swiping {
  opacity: 0.5;
  cursor: grabbing;
}

.swipe-success {
  background-color: #4CAF50 !important;
}

.swipe-track {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 1;
  border-radius: 5px 0 0 5px;
}

.popup-message-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  text-align: center;
}

.popup-close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.circle-icon {
  width: 40px;
  height: 40px;
  background-color: #F9FAFF40;
  backdrop-filter: blur(5px);
  box-shadow: 0px 3.5px 4px 0px #B0B1BC1A;
  border-radius: 50%;
  text-align: center;
  align-content: center;
}

.profile-detail-container {
  padding: 8px 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 2px 0px #253B9626;
  border: 1px solid #B0B1BC40;
  background: #F9FAFF;
}

.arrow.down {
  transform: rotate(90deg);
}

.profile-container .upload-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #FFFFFFCC;
  backdrop-filter: blur(4px);
}