#cartBtnsRoot {
  margin-top: 10px;
  background-color: transparent !important;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.cartBtn {
  width: 47%;
  max-width: 220px;
  height: 70px;
  background-color: transparent;
  border: none;
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.5);
  border-radius: 16px;

  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#addBtn {
  background-color: #71aaad;
  outline: 1px solid #71aaad;
  border: 1px solid #71aaad;
}
#addBtn > p {
  /* font-size: 22px !important; */
  font-size: clamp(18px, 1.5vw, 22px) !important;
  color: white;
}
#addBtn:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
.addBtnClicked {
  background-color: #00939d !important;
  box-shadow: 1px 1.5px 3px rgba(0, 0, 0, 0.75) inset !important;
  border: none !important;
  outline: none !important;
}
.addBtnClicked:hover {
  cursor: default !important;
  filter: none !important;
}
#reqBtn {
  color: #00939d;
  outline: 1px solid #00939d;
  border: 1px solid #71aaad;
  text-decoration: none;
}

#reqBtn:hover {
  cursor: pointer;
  filter: brightness(0.9);
  background-color: rgba(0, 0, 0, 0.1);
}

#reqBtn:active {
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.5) inset;
}

#reqBtn > p {
  font-size: clamp(18px, 1.5vw, 22px) !important;
  margin-right: 5px;
}
#reqBtn > img {
  width: 15%;
  min-width: 26px;
  max-width: 36px;
  height: auto;
}

.cardAmountContainer {
  display: flex;
  width: 38%;
  min-width: 82px;
  max-width: 90px;
  justify-content: space-between;
  align-items: center;

  border: 1px solid white;
  border-radius: 18px;
  height: 36px;
}

.cardAmountTxt {
  margin-left: 10px;
  margin-top: 2px;
  color: white !important;
}

.cardAmountBtns {
  display: flex;
}
.cardAmountBtn {
  border: none;
  background-color: transparent;
  align-self: center;
  color: white !important;
  font-family: sans-serif;
  font-size: 18px;
  padding: 0 8px;
  height: 36px;
  transition: background-color 0.1s ease;
}

.cardAmountBtn:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.cardAmountLastBtn {
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}
@media (max-width: 1150px) {
  .cartBtnsContainer {
    justify-content: space-between;
  }
}
@media (max-width: 930px) {
  .cartBtnsContainer {
    justify-content: center;
  }
  #addBtn > p,
  #reqBtn > p {
    font-size: 20px !important;
  }
}
@media (max-width: 460px) {
  #cartBtnsRoot {
    justify-content: center;
  }
  #addBtn > p,
  #reqBtn > p {
    font-size: 18px !important;
  }
}
