/* Navbar user option styles */
.navbar-right .log-in {
  display: flex;
  gap: 26px;
}

.navbar-right {
  display: flex;
  align-items: center;
}

.user-profile {
  display: flex;
  align-items: center;
}

.bell-icon {
  position: relative;
}

.des-notification {
  width: 7px;
  height: 7px;
  background-color: #f65e59;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  right: 15px;
}

.profile-dropdown {
  position: relative;
}
.profile-dropdown:hover .profile-menu {
  display: block;
}

.profile-dropdown:hover .drop-icon {
  transform: rotate(180deg);
}
.profile-menu {
  top: 28px;
  /* left: 20px; */
}

.user-img {
  border-radius: 50%;
  background: #d9d9d9;
  width: 49px;
  height: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 12px 0 0;
}

.user-drop-icon {
  position: relative;
}

.user-drop-icon .drop-icon {
  cursor: pointer;
  transition: all 0.4s ease;
}

.user-drop-icon:hover .profile-menu {
  display: block;
}

.user-drop-icon:hover .drop-icon {
  transform: rotate(180deg);
}

.user-drop-icon {
  position: relative;
}

.user-drop-icon .drop-icon {
  cursor: pointer;
  transition: all 0.4s ease;
}

.user-drop-icon:hover .profile-menu {
  display: block;
}

.user-drop-icon:hover .drop-icon {
  transform: rotate(180deg);
}

.user-drop-icon:hover .profile-menu {
  display: block;
}

.profile-menu {
  display: none;
  position: absolute;
  right: 0;
  padding-top: 25px;
  z-index: 999;
}

.profile-menu ul {
  background-color: var(--primary-color-white);
  padding: 25.5px;
  width: 186px;
  transition: all 0.4s ease;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.profile-menu ul li {
  margin-bottom: 16px;
}

.profile-menu ul li:last-child {
  margin-bottom: 0;
}

.profile-menu ul li a {
  font-size: 14px;
  line-height: 22px;
  color: #444444;
  text-transform: capitalize;
  transition: 0.4s;
  display: flex;
  align-items: center;
  gap: 13px;
}

.profile-menu ul li a:hover {
  color: var(--primary-color-green);
}

.profile-menu .menu-icon img {
  width: auto;
}

/* Sign-in modal styles */
.form-section {
  display: flex;
  flex-direction: column;
}

/* .input-group-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
} */

.login-modal-label {
  width: 100%;
  display: block;
  font-size: 14px;
  line-height: 21px;
  color: #333333;
  margin-bottom: 4px;
}

.login-modal-input {
  width: 100%;
  border-radius: 8px;
  height: 50px;
  border: 1px solid #d8d8d8;
  font-size: 14px;
  line-height: 22px;
  padding: 0 17px;
  outline: none;
}

.pass-input-eye {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  cursor: pointer;
}

.login-modal-pass-block {
  position: relative;
  display: block;
}

.forgot-password {
  font-size: 13px;
  line-height: 21px;
  color: #898989;
  font-weight: normal;
}

.login-modal-submit {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #d8d8d8;
  font-size: 17px;
  line-height: 26px;
  color: #000;
  background-color: #f4ce14;
  border-color: #f4ce14;
  cursor: pointer;
  transition: 0.4s;
}

.flex-star {
    display: flex;
    gap: 2px;
    cursor: pointer;

    svg {
        width: 13.8px;
        height: 13.11px;
    }
}

.rotate-ease {
    transition: all 0.4s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

.input-group-place {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group-place-icon {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 0.375rem;
}

.filter-distance-input-text > .input-group-text {
  border: none;
  background: none;
}

@media(min-width: 991px) {
  .search-field {
    margin-left: 16px;
    display: flex;
  }
  .search-field input[type = text]{
    max-width: 250px;
  }
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #2C4A2E;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0deg);
  }

  100% {
      -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}
