@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
body {
  background-color: #002e1f;
  background-image: url("../images/bg.png") !important;
  background-size: cover;
  font-family: "Instrument Sans", sans-serif !important;
}

.card {
  border-radius: 12px;
}

.btn {
  font-weight: 500;
}
.card {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.form-control {
  border-radius: 30px;
  font-size: 14px;
}
.btn.custom {
  background: #7ad31f;
  border: none;
  border-radius: 30px;
}
label {
  color: #fff;
  font-size: 13px;
}

/* -----------------categoryselection page------------------- */

.list-unstyled.category-list {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
.category-card {
  background: white;
  height: 210px;
  cursor: pointer;
  padding-top: 25px;
}
.list-unstyled.category-list li {
  background: #efefef;
  border-radius: 10px;
  padding: 7px 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.list-unstyled.category-list span {
  font-size: 12px;
  display: flex;
}
.cat-title {
  border-left: 3.5px solid #8ed03d;
  padding-left: 10px;
  font-size: 18px;
}
.cat-price {
  font-size: 15px;
}
.cat-price span {
  font-size: 12px;
}
.cat-row {
  margin-bottom: 30px;
}
.category-checkbox {
  top: 10px;
  right: 10px;
  accent-color: #0580ff;
}

.category-checkbox:checked + .category-card {
  border: 1px solid #8ed03d !important;
  background: #efffdc;
}
.category-card:hover {
  box-shadow: 0px 2px 20px 0px #0000001a;
}
.bottom-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0px 0px 20px 0px #0000001a;
}
.green-btn {
  background: #8ed03d !important;
  border: none !important;
  font-size: 14px !important;
  padding: 8px 20px !important;
}
.green-btn:hover {
  background: #074834 !important;
}

@media screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
}

/* ------------------Selected Categories page-------------- */

.lastDate {
  background: #ffffff;
  width: fit-content;
  padding: 7px 15px;
  font-size: 13px;
  border-radius: 30px;
  color: #8b8b8b;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #f5f5f5;
}
.award-card {
  border-radius: 20px;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.award-card:hover {
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
}
.award-card.selected {
  background: #efffdc;
  background: #efffdc;
}
.view-btn {
  background-color: #e50000;
  color: #fff;
  border: none;
  padding: 5px 15px;
  font-size: 0.9rem;
  border-radius: 20px;
}
.view-btn:hover {
  background-color: #c80000;
}
.status-text {
  font-size: 0.85rem;
}

/* ---------------Form Submission Page------------------ */

/* Sticky sidebar */
.sidebar-fixed {
  position: sticky;
  top: 20px;
}

/* Mobile styles */
@media (max-width: 767px) {
  .sidebar-fixed {
    position: relative;
    top: 0;
    border: none;
    padding-bottom: 10px;
  }
  .nav.flex-column {
    flex-direction: row !important;
    overflow-x: auto;
    padding-bottom: 5px;
    justify-content: space-between;
  }
  .nav-item {
    flex: 0 0 auto;
    margin-left: 15px;
  }

  .nav-link.active {
    color: #000 !important;
  }
  .nav-link {
    padding: 0;
  }
  .mt-xs-2 {
    margin-top: 10px;
  }
  #thankyou {
    height: 100% !important;
  }
}
#form-sub label {
  color: #000;
  font-size: 18px;
}
#form-sub .form-control {
  border-radius: 15px;
  font-size: 14px;
  padding: 10px;
}

#form-sub .text-muted {
  font-size: 14px;
}

#form-sidebar a {
  padding: 10px 0;
  /* border-bottom: 1px solid #d5d5d5; */
}

/* ---------------Checkout-------------- */

.user-details {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
}
.payment-details {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
}

/* -----------Thankyou----------------0 */

.thankyou-container {
  border-radius: 15px;
  background: rgb(255 255 255 / 78%);
  /* border-radius: 16px; */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.parent-title {
  font-weight: 500;
  font-size: 15px;
}
.thankyou-container ul li {
  font-size: 14px;
  list-style: circle;
}
.selected-cat-details {
  padding: 15px;
  background: #edfdea;
  border-radius: 15px;
}
.selected-cat-details.h6 h5 {
  font-size: 14px;
  margin-bottom: 5px;
}
