:root {
  --bodyFont: "Inter", sans-serif;
  --titleFont: "Space Grotesk", sans-serif;
  --primaryColor: #7D25EC;
  --secondaryColor: #FE424B;
  --blackColor: #222E48;
  --whiteColor: #ffffff;
  --titleColor: #1B2A52;
  --bodyColor: #7F879E;
  --btnColor: #ffffff;
  --btnBgColor: #7D25EC;
  --linkColor: #7F879E;
  --hoverColor: #FE424B;
  --borderColor: #EFF0F3;
  --lightColor: #F8FAFF;
  --transition: 1.3s;
}

@keyframes waves {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes fadeIn2nd {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
/* Coupon Search */
#coupon-search-results {
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  top: 100%;
  padding: 0px 20px;
  z-index: 2;
}

#coupon-search-results ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#coupon-search-results li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

#coupon-search-results li a {
  text-decoration: none;
  color: #333;
}

#coupon-search-results li a:hover {
  color: #FF943D;
}

button.tp-coupn-search-btn {
  background-color: #FF943D;
  padding: 0 25px;
}

input#coupon-search-input {
  margin-bottom: 0;
  border-radius: 30px;
  padding: 0 15px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: transparent;
}

.tp-coupon-search-style1 button.tp-coupn-search-btn {
  padding: 0 10px;
}

/* style 2 */
.tp-coupn-search {
  display: flex;
}

.tp-coupn-search-input-wrapper {
  flex: 1;
}

.tp-coupon-category {
  width: max-content;
  background-color: transparent;
  border-right: 1px solid rgb(213, 224, 228);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

.tp-coupn-search {
  background: #fff;
  border-radius: 100px;
}

/*# sourceMappingURL=search.css.map */
