:root {
  --primaryColor: #1471B0;
  --secondarycolor: #FF943D;
  --common-black: #222E48;
  --titleColor: #222E48;
  --bodyColor: #404A60;
}

:root {
  --body-font: "IBM Plex Sans", serif;
  --transition: all 0.5s ease-in-out;
  --transition-sec: all 1.8s ease-in-out;
  --transition-third: all 2.2s ease-in-out;
  /* Color styles */
  --p1: 20, 113, 176;
  --p2: 255, 148, 61;
  --s1: 255, 255, 255;
  --s2: 58, 56, 54;
  --n1: 245, 245, 245;
  --n2: 230, 229, 229;
  --n3: 236, 232, 227;
  --gradient-p1: linear-gradient(90deg, rgba(255, 222, 159, 0.47) 0%, rgba(255, 222, 159, 0.12) 51.11%, rgba(255, 222, 159, 0.00) 100%);
  --box-shadow-p1: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
}

@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 {
  position: absolute;
  height: 100%;
  line-height: 100%;
  min-width: 40px;
  padding: 0;
  border-radius: 30px;
  right: 8px;
  height: calc(100% - 10px);
  top: 50%;
  transform: translateY(-50%);
  background-color: #FF943D;
  padding: 0 25px;
}

input#coupon-search-input {
  margin-bottom: 0;
  border-radius: 30px;
  padding-right: 60px;
  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 */
