* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;

}


/* body,
  html {
    width: 100%;
    height: 100%;
    /* background-image: url(/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Nanum Gothic', sans-serif; */

    body,html{
      font-family: Open Sans !important;

    }
#trubuddy-logo {
  max-width: 150px;
  text-align: center;
}

.line { 
  height: 1px; 
  width: 100%; 
  margin: auto; 
  background-color: black; 
  margin-bottom: 15px;
 }

.category-total-text{ 
  display: flex; 
  justify-content: space-between; 
  margin-top: 10px; 
}

.all-stock{
  display: flex; 
  justify-content: space-evenly; 
  align-items: center; 
  flex-wrap: nowrap;
}

.discount-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fef3e8;
  height: 42px;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}

.discount-vector {
  width: 18px;
  height: 18px;
  top: 1px;
}

.discount-text {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.discount-container h6 {
  color: #cc4400; 
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.cross {
  top: 20px;
  position: absolute;
  width: 14px;
  height: 14px;
  right: 15px;
  border: 2px;
  color: #003509;
  cursor: pointer;
}

.cross:before, .cross:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #003509; 
  transform-origin: center;
}


.cross:before {
  transform: rotate(45deg);
}

.cross:after {
  transform: rotate(-45deg);
}

.cartcontainer {
  display: flex;
  background-color: #fef3e8;
  width: 60vw;
  height: 52px;
  border-radius: 5px 5px 0px 0px;
  position: fixed;
  bottom: 0;
  justify-content: space-between;
  align-items: center;
}
.totalcart {
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.totalcart p {
  font-size: 18px;
  font-weight: bold; 
  margin: 0;
  font-family: 'Open Sans', sans-serif; 
}
.cartcenter {
  display: flex;
  align-items: center; 
  gap: 10px;
  margin: 0; 
}

.cartcenter img {
  width: 18px;
  height: 18px;
  margin: 0;
}

.cartcenter p {
  font-weight: bold;
}

.cartcontainer2 {
  display: flex;
  background-color: #fef3e8;
  width: 60vw;
  height: 52px;
  border-radius: 5px 5px 0px 0px;
  position: fixed;
  bottom: 0;
  justify-content: space-between;
  align-items: center;
}
.cartcenter2 {
  display: flex;
  align-items: center; 
  gap: 10px;
  margin: 0; 
}

.cartcenter2 img {
  width: 18px;
  height: 18px;
  margin: 0;
}

.cartcenter2 p {
  font-weight: bold;
}

.cartbtn {
  display: flex;
  align-items: center; 
  justify-content: center;
  margin-right: 15px;
}

.cartbtn button {
  width: 213px;
  height: 36px;
  border-radius: 20px;
  border: none;
  background-color: #EE7700;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  /* padding: 8px 1rem;  */
  min-width: 120px;
  white-space: nowrap;
}

.cartbtn button:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.tag {
  position: relative;
}

.count-circle {
  position: absolute;
  right: 3%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #EEEEEE;
  color: #444444;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.tag span {
  padding-right: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ini-text {
  display: flex;
  align-items: center; 
  justify-content: space-between; 
  margin-top: 1rem;
}

.stocktemp {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 5px;
  padding-top: 5px;
}

#in-stock-circle {
  width: 0.8vw; 
  height: 0.8vw; 
  max-width: 12px; 
  max-height: 12px; 
  border-radius: 50%;
  background-color: #629B25;
}

#in-stock-text {
  color: #629B25;
  font-size: 16px !important;
  font-family: Open Sans;
  font-weight: 600;
}

.cartabove{
  display: none;
}

.search-div-allcomics {
  position: relative;
  z-index: 1;
}

#allcomics-searchbox {
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  border-radius: 5px;
  background-color: #fff;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  z-index: 2; 
}

#allcomics-hits {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;

  overflow-y: auto;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2; 
}

#allcomics-results {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 0 0 5px 5px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2; 
  display: none;
}

.tag {
  position: relative;
}

.count-circle {
  position: absolute;
  right: 3%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #EEEEEE;
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

.searchbox-input::placeholder {
  color: #444444 !important;
}

.ais-SearchBox-form::before {
  background: rgba(0, 0, 0, 0) url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23444%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%228%22%20fill%3D%22none%22%20stroke%3D%22%23444%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fcircle%3E%3Cline%20x1%3D%2221%22%20y1%3D%2221%22%20x2%3D%2216.65%22%20y2%3D%2216.65%22%20stroke%3D%22%23444%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fline%3E%3C%2Fsvg%3E) repeat scroll 0% 0% !important;
}

.ais-SearchBox-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #828282 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  caret-color: #cc4400 !important;
  color: #cc4400 !important;
  padding-right: 38px !important;
}

.ais-Highlight-highlighted, .ais-Snippet-highlighted {
  background-color:#FEF3E8 !important;
  color: #cc4400 !important;
  font-style: normal;
  font-weight: 700 !important;
}

.ais-Hits-item{
  cursor: pointer !important;
  padding: 10px !important;
  box-shadow: none !important;
  border: 1px solid #D9D9D9;
  border-top: 0 !important;
}

.hit {
  display: flex;
  align-items: center;

}

.hit-image {
  margin-right: 10px;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.hit-title-link {
  cursor: pointer;
}

.hit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#no-results {
  appearance: none;
  background-color: #fff;
  color: #cc4400;
  font: inherit;
  max-width: 100%;
  padding-left: 2.5rem;
  margin-bottom: 5px;
  font-weight: 600;
}

#no-results-msg {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center; 
  height: 100%; 
  text-align: center; 
  color: #808080;
  font-size: 16px;
  font-weight: 600;
  gap: 1rem;
}

@media (max-width: 390px) {
 
  .discount-text {
    font-size: 14px !important;
  }

  .cartcontainer{
    /* gap: 15% !important; */
    justify-content: space-around !important;
  }

  .totalcart p{
    font-size: 16px;
    font-weight: bold;
  }

  .cartbtn{
    /* width: 14.8vw;
    height: 3.5vh; */
  }
}

#nav-bar {
  box-shadow: 0px 2px 6px 0px #00000040 !important;
}

#main-div {
  margin: 0 11vw 0 11vw;
  position: relative;
}

/* CSS for filter buttons*/
.comic-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 1rem;
  outline: none !important;
  margin-bottom: 1.5rem;
}

.comicBtn {
  background-color: white;
  color: #000;
  border: none;
  outline: none !important;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
}

.active {
  background-color: #FFFFFF;
  color: #EE7700;
  border-bottom: 2px solid #EE7700;
  outline: none !important;
}

.active-responsive {
  background-color: transparent;
  color: #000;
  text-decoration: underline;
  font-weight: bold;
  outline: none !important;
}

.divider-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin: 10px 0;
  padding-right: 1rem;
  padding-left: 1rem;
  justify-content: center;
  align-items: center;
}

.divider-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.left-text{
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.right-text{
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

::placeholder {
  color: rgb(0, 0, 0);
  /* Set the color of the placeholder text */
}




.tag {
  /* font-family: "Montserrat", sans-serif; */
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  cursor: pointer;
  height: 44px;
  align-items: end;

}

#caragories {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#caragories p {
  margin: 0;
  cursor: pointer;
  /* padding: 8px 40px; */
  border-radius: 100px;

}

#caragories p.selecteddd {
  background-color: #FEF3E8;
}

.count {
  float: right;
  font-weight: 700;
  background-color: #f3f3f3;
  color: #9a9a9a;
  border-radius: 50px;
  padding: 0 8px;
  line-height: 1.4;
  cursor: default;
}

.selected {
  background-color: #FEF3E8;
  font-weight: 600;
  color: #EE7700;
  /* padding: 5px 10px; */
  /* border-radius: 100px; */
}

.cart-circle {
  width: 15px;
  height: 15px; 
  position: absolute;
  top: -5px;
  right: -6px;
  border-radius: 50%; 
  background-color: #EE7700; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-icon-total {
  margin: 0; 
  color: white; 
  font-size: 10px; 
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
}


span.cartTotal {
  position: absolute;
  bottom: 26px;
  left: 25px;
  background: #EE7700;
  border-radius: .8em;
  -moz-border-radius: .8em;
  -webkit-border-radius: .8em;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  line-height: 1.4em;
  margin-right: 15px;
  text-align: center;
  width: 1.4em;
  font-size: 15px;
}

hr {
  margin: 0 !important;
}


.book-card{
  list-style: none;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  background: #FBFBFB;
  padding: 10px 10px 10px 10px;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

ul {
  flex-wrap: wrap;
  /* flex-grow: inherit; */
  display: flex;
}

#vertical-hr {
  border: none;
  border-left: 2px solid #8c8c8c;
  /* Adjust color and thickness as needed */
  height: 24px;
  /* Adjust the height as needed */
  margin: 0;
  margin-left: 6px !important;
  margin-right: 6px !important;
  padding: 0;
  margin-bottom: 0px !important;
}

#price-div {
  margin: 0px !important;
  margin-top: 6px !important;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
  color: #C40;
}

#price-div span {
  font-size: 17px;
  color: #C40;
}

#know-more {
  color: #E70;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-transform: capitalize;
}

.clamp-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  width: 210px;
  color: #000;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 124%;
  /* 19.84px */
}
/* 
*::selection {
  color: white;
  background-color: #e70;
} */

.price-span {
  font-size: 20px;
}

.add-to-cart-btn,
.disabled-cart-btn {
  user-select: none;
  display: flex;
  width: 210px;
  height: 36px;
  /* padding: 8px 39px 8px 40px; */
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 5px;
  color: #C40;
  border: 1px solid #C40;
  /* position: absolute; */
  bottom: 5px;

}

.disabled-cart-btn {
  border: none;
  /* justify-content: end !important; */
}

hr {
  margin-bottom: 4px !important;
}

.ad-c-p {
  margin: 0;
  color: #C40;
  font-family: Open Sans;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
}

.book-card {
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background: #FEF3E8;
}

#c-divider {
  display: none;
}

.book-card{
  width: 234px;
  position: relative;
}

#allcomics-hits{
  width: 100%;
  position: absolute;
}


@media screen and (max-width: 1280) {         /*Changes need to be made for cart conainer and its child*/
  .totalcart p {
    font-size: 16px;
  }
  .cartcenter p {
    font-size: 15px;
  }
  .cartbtn{
    width: 0;
    height: 0;
  }
}


@media screen and (max-width: 768px) {
  
  .ini-text {
    padding-left: 15px;
    padding-right: 15px;
  }

  #left {
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.25);
    background-color: #fff;
  }

  .discount-container{
    width: 100%; 
    padding: 11px 14px; 
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 0;
    z-index: 5;                    
  }

  .count-circle{
    display: none;
  }

  .cat-text{
    padding: 0 !important;
  }

  .mb-0, .my-0 {
    margin-bottom: 10px !important;
}
  .search-div-allcomics {
    position: relative;
  }

  #tag-div{
    margin-top: 2rem !important;
    margin-bottom: 10px;
  }

  #right h3 {
    display: block;
    font-size: 16px;
    flex-grow: 0;
    white-space: nowrap;
  }

  .caregories-txt {
   display: none;
  }

  .discount-text{
    font-size: 17px;
  }

  .h3 {
    font-size: 26px !important;
  }

  #trubuddy-logo {
    width: 100px;
  }

  .cartcontainer{
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* gap: 20%; */
    width: 100%;
  }

  .cartbtn{
    width: 170px;
  }

  #totalcount{
    padding-right: 10px;
    font-size: 14px !important;
  }
  
  .cartcontainer2 {
    display: flex;
    background-color: #fef3e8;
    width: 60vw;
    height: 52px;
    border-radius: 5px 5px 0px 0px;
    position: fixed;
    bottom: 0;
    justify-content: space-between;
    align-items: center;
  }
  .cartcenter2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    z-index: 5;
    bottom: 52px;
    justify-content: center;
    width: 100%;
    border-bottom: 2px solid #d8d8d8;      
  }
  
  .cartcenter2 img {
    width: 18px;
    height: 18px;
    margin: 0;
  }
  
  .cartcenter2 p {
    font-weight: bold;
  }

  .cartcontainer .cartcenter{
    display: none;
  }

  #main-div {
    margin: 0;
    position: relative;
    flex-direction: column;
  }

  .add-to-cart {
    width: 95%;
    height: 40px;
  }

  #price-div span {
    font-size: 17px;
  }

  .card-img-all-c {
    width: 100% !important;
  }

  p {
    width: fit-content !important;
  }

  hr {
    display: none;
  }

  #vertical-hr {
    display: block;
  }

  .tags {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-color: transparent transparent;
  }

  #right {
    width: 100vw;
    margin-top: 0 !important;
  }

  .clamp-text {
    font-size: 5vw;
    -webkit-line-clamp: 2;

  }

  #trubuddy-logoo {
    width: 130px !important;
  }

  #know-more {
    font-size: 17px !important;
  }

  ul {

    width: 100vw;
    justify-content: center;
  }

  .book-card{
    width: 75%;
  }

  #left {
    width: 100%;
    /* height: 7rem; */
  }
  .comicBtn {
    padding: 5px 7px;
  }
  #main-div {
    min-height: 100vh;
    position: relative;
  }

  .tag {
    display: inline-block;
    margin-right: 10px !important;
    font-size: 14px;
    height: auto;
    border-radius: 100px;
  }

  #caragories {
    display: none;
  }

  .mobile-h3 {
    font-size: 22px;
  }
}

@media (max-width: 390px) {
 
  .discount-text {
    font-size: 14px !important;
  }

  .cartcontainer{
    /* gap: 15% !important; */
    justify-content: space-around !important;
  }

  .totalcart p{
    font-size: 14px;
  }

  .cartbtn{
    /* width: 14.8vw;
    height: 3.5vh; */
  }
}

#main-div {
  display: flex;
  position: relative;
}

.tags {
  user-select: none;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 11 */
}

.tags::-webkit-scrollbar {
  width: 0px;
  /* Safari and Chrome */
}

.login-btn {
  color: #EE7700;

  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: center;
  cursor: pointer;
}

#left {
  z-index: 444;

}

#right{
  margin-bottom: 6rem !important;
  margin-top: 1rem;
}

/* .added-svg {
  margin-right: 0.5rem; 
} */
.delete-cart-btn {
  margin-left: 1.7rem; 
}

 /*Responsive CSS for Comic Buttins and Divider */
@media (max-width: 768px) {

  #allcomics-searchbox{
    padding: 0;
    padding-top: 10px !important;
  }

  .comic-container {
    justify-content: space-evenly; 
    overflow-x: hidden; 
    /* padding-bottom: 0.5rem;  */
    gap: 3%;
    width: 100%;
    flex-wrap: nowrap;
    margin-bottom: 0 !important;
  }

  .unselected-category{
    border: 1px solid #B3B3B3;
    border-radius: 50px;
  }

  .comicBtn{
    font-size: 14px;
    white-space: nowrap;
  }

  .selected {
    color: #CC4400;
    border: 1px solid #CC4400;
  }

  #no-results-msg {
    margin-top: 10rem;
  }
  .circle-ok {
    margin-left: 0 !important;
  }

  .sort-text {
    margin-right: 0 !important;
    font-size: 12px !important;
  }
}

.hide-stars{
  opacity: 0 !important;
}
.sort-container {
  display: flex;
  align-items: center;
  border-left: 1px solid #b3b3b3;
  padding-left: 10px;
}
.sort-text {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  margin-right: 5px;
}
.sort-dropdown {
  font-size: 14px;
  border: none;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
}
.sort-dropdown option {
  font-size: 16px; 
  color: #333; 
  background-color: #f9f9f9;
  padding: 5px; 
  border: none; 
  cursor: pointer; 
}
.sort-dropdown option:hover {
  background-color: #e0e0e0; 
  color: #000; 
}
.sort-hover:hover {
  background-color: #ee7700;
}
#bestSellingTag {
  background-color: #FFD8B1;
  position: absolute;
  top: 1%; 
  left: 0;
  padding: 3px 10px;
  /* z-index: 10;  */
}
.tag-name {
  font-size: 14px;
  color: #000000;
  margin: 0;
  font-weight: 600;
}
.category-container {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  width: 100%;
  margin-bottom: 1rem;
}

.count-books {
  display: flex;
  justify-content: end;
  align-items: center;
}

.totalCount-text {
  font-size: 16px;
  font-weight: 600;
  color: #cc4400;
}

.totalcount-set {
  cursor: pointer;
  text-decoration: underline;
}
nav {
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.banner-ab-test {
  background-color: #fef3e8;
}

.banner-ab-test-text {
  color: #cc4400 !important;
}