.user-form-option li:nth-child(1) a {
  background: #DB4437;
}

.user-form-option li:nth-child(1) a i {
  background: #be3a2e;
}

.product-img {
  height: 170px;
    -o-object-fit: cover;
       object-fit: cover;
       border-radius: 20px;
}

.product-card {
  height: 400px;
  width: 100%;
  border-radius: 30px 30px 0px 30px;
  background: rgba(255, 227, 216, 1);
  position: relative;
  /* max-height: 500px; */
}

.corner-img {
  position: absolute;
  bottom: 0px;
  /* stays attached to bottom always */
  right: -1px;
  /* stays attached to right always */
  z-index: 5;
}



.category-head {
  max-height: 120px;
  overflow: hidden;
}

.category-head img {
  height: 100%;
}

.n-relative {
  position: relative;
}

#search-form {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 27px 27px 20px;
  width: 100%;
}

@media only screen and (min-width: 376px) and (max-width: 640px),
only screen and (max-width: 375px) {
  #search-form {
    padding: 27px 10px 20px;
    width: 100% !important;
    height: 100% !important;
  }
}

#search-form .form-heading {
  text-transform: capitalize;
  font-size: 27px;
  color: black;
}

#search-form .label-grid {
  margin-top: 20px;
  margin-right: 92px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

#search-form .label-grid input {
  display: none;
}

#search-form .label-grid input:checked+label .lebal-category {
  color: white !important;
}

#search-form .label-grid input:checked+label {
  background-color: var(--chalk);
  border: 1px solid var(--white);
  color: white;
}

#search-form input:checked .lebal-category {
  color: white !important;
}

#search-form .label-grid input:checked .lebal-category {
  color: #fff !important;
}

#search-form .label-grid label {
  display: block;
  width: 100%;
  padding: 10px 10px 30px;
  background-color: var(--white);
  border-radius: 40px !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  color: var(--dark);
}

#search-form .label-grid label img {
  width: 80%;
  display: block;
  margin: auto;
}

#search-form .label-grid label span {
  position: absolute;
  width: 100%;
  display: block;
  text-align: center;
  color: var(--heading);
  left: 0;
  bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
}

#search-form .cat-select {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

#search-form .cat-select input {
  border-radius: 10px;
  border: none !important;
  padding: 10px 10px;
  background-color: transparent;
  display: block;
  width: 100%;
  max-width: 100%;
}

#search-form .location-select {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 96% 0%;
  gap: 4px;
}

#search-form .location-select input {
  border-radius: 10px;
  border: 2px solid #0044bb;
  padding: 10px 10px 10px 30px;
  background-color: transparent;
  display: block;
  width: 100%;
  position: relative;
  border-radius: 0px;
}

#search-form .location-select label {
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 18px;
  color: #90ee90;
  transform: translateY(-50%);
  z-index: 1;
}

#search-form .location-select p {
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 18px;
  color: black;
  transform: translateY(-50%);
  z-index: 1;
  display: inline;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  margin: 0px;
}

#search-form button {
  border-radius: 10px;
  background: var(--dark-brown);
  color: white;
  width: 100%;
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  width: 100%;
}

#search-form button:hover {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.validation-message {
  color: red;
}

.login_status {
  text-align: center;
  color: red;
  margin-bottom: 10px;
}

.swal2-styled.swal2-confirm {
  background-color: #ff6b35 !important;
}