.banner {
  background-color: #00478f;
}
.product_heading {
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}
.product_tagline {
  font-size: 17px;
  color: #ececec;
}
.filterDiv {
  display: none;
}
.show {
  display: block;
}
.text-small {
  font-size: 20px !important;
  font-weight: 600;
}
.sticky-search {
  position: sticky;
  top: -1px;
  z-index: 3;
}

input {
  width: 50%;
  padding: 6px 10px;
  border: none;
  border-radius: 2px;
  background-color: #fff;
}

input:focus-visible {
  outline: none;
}
/* Style the buttons */
#myBtnContainer {
  margin: 0 -15px 0 -15px;
  padding: 0 0 15px 0;
  text-align: center;
  background-color: #fff;
  background-color: #ecf6ff;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
#myBtnContainer .btn {
  margin: 5px;
  padding: 10px;
  border-color: #1f60a15d !important;
  transition: all .2s ease;
  border-radius: 2px;
  background-color: #ffffff;
  color: #002142;
  font-size: 11px;
  font-weight: 600;
}
.btn-win {
  padding: 6px 15px !important;
  margin-right: -2px !important;
  border-right: none !important;
  border-radius: 2px !important;
  transition: all .2s ease;
  background-color: #ffffff !important;
  color: #31344b;
  font-size: 16px !important;
  font-weight: 600;
}
.btn-mac {
  padding: 6px 15px !important;
  margin-left: -4px !important;
  border-radius: 2px !important;
  transition: all .2s ease;
  background-color: #ffffff !important;
  color: #31344b;
  font-size: 16px !important;
  font-weight: 600;
}
#myBtnContainer .btn:hover {
  color: #31344b;
  background-color: #f6fbff;
  border-color: #fff;
}
#myBtnContainer .btn.active1 {
  background-color: #00478f !important;
  color: white;
  border: 1px solid #00478f !important;
}
/* search menu */
.list-wrap .empty-item {
  transition-property: opacity;
  transition-duration: 0s;
  transition-delay: 0s;
  transition-timing-function: ease
}
.list-wrap .empty .empty-item {
  transition-property: opacity;
  transition-duration: .2s;
  transition-delay: .3s;
  transition-timing-function: ease
}
.list-wrap .hiding {
  margin-left: -100%;
  opacity: .5
}
.list-wrap .hidden {
  display: none
}
.list-wrap .empty-item {
  background: #fff;
  color: red;
  margin: .2em 0;
  padding: .5em .8em;
  font-style: italic;
  border: none;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  float: left;
  clear: left;
  width: 100%
}
.list-wrap .empty .empty-item {
  opacity: 1;
  visibility: visible
}
/* product card */
.card {
  background-color: #f8fcff;
  background-clip: border-box;
  border-radius: 5px;
  border: 1px solid #accdeb !important;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1)!important;
}
.card:hover {
  background-color: #e9f5ff;
}
.logo {
  font-size: 20px;
  font-weight: 600;
}
.logo-txt {
  background-color: #223569;
  padding: 2px;
  border-radius: 2px;
  color: #fff;
}
.logo-txt2 {
  padding: 2px;
  color: #223569;
}
.pr-name {
  color: #223569;
  font-weight: 600;
  font-size: 18px;
}
.price-info {
  position: relative;
  color: #004288;
  margin-left: -90px;
}
.product-price {
  color: rgb(197, 0, 0);
  background-color: #ffffff;
  font-size: 25px;
  position: absolute;
  top: -10px !important;
  padding: 30px 20px;
  border-radius: 50%;
  border: 1px solid #accdeb !important;
}
.card-btn {
  transition: all .2s ease;
  margin: 5px;
  color: #223569;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #accdeb !important;
}
.card-btn:hover {
  background-color: #fff;
}
/* tooltip */
.tooltip-btn {
  position: relative;
  display: inline-block;
}
.tooltip-btn .tooltiptext {
  visibility: hidden;
  width: 80px;
  background-color: #223569;
  color: #fff;
  text-align: center;
  font-size: 12px;
  border-radius: 2px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 120%;
  left: 50%;
  margin-left: -40px;
}
.tooltip-btn .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #223569 transparent;
}
.tooltip-btn:hover .tooltiptext {
  visibility: visible;
}
@media only screen and (max-width: 576px) {
  .sticky-search {
    position: relative;
  }
}
.empty{
  position: relative;
}
.empty::after{
  content:"No Product Found...";
  position: absolute;
  left: 50%;
  top: -50px;
  color: #c92e00;
  background-color: #ffddd3;
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 15px;
  display: block;
  z-index: 9;
  border-radius: 2px;
  transform: translate(-50%);
  text-align: center;
}