body {
    font-family: 'Poppins';font-size: 22px;
}
.topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: gold;
    padding: 0px 10px;
}
.websiteName{
    font-weight: 900;
    font-size: 20px;
}
.cartCounter {
    font-size: 12px;
    background-color: darkturquoise;
    padding: 2px 7px;
    border-radius: 18px;
    font-weight: 500;
    font-family: sans-serif;
    position: relative;
    top: -10px;
    left: -3px;
    display:none;
}
.addToCartSection {
    padding-top: 70px;
    text-align: -webkit-center;
}
.cartSection{
    text-align: -webkit-center;
}
td{
    padding: 10px;
}
.addToCartButton{
    padding: 4px 10px;
    background-color: teal;
    color: #fff;
    border: 1px solid;
    cursor: pointer;
}
.errorLabel{
    color: tomato;
}
.cartItemsTable{
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.cartItemsTable thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}
.cartItemsTable th,
.cartItemsTable td {
    padding: 12px 15px;
}
.cartItemsTable tbody tr {
    border-bottom: 1px solid #dddddd;
}

.cartItemsTable tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.cartItemsTable tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.cartHeader{
    /* background-color: rgb(255 215 0 / 40%); */
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.totalDiv{
    border-bottom: 2px solid #009879;
    margin-top: -25px;
}

.topbarseparator{
    margin-top: 30px;
}

.loginSection {
    width: 500px;
    padding: 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    position: absolute;
    left: calc(50% - 275px);
    top: calc(50% - 175px);
}

button {
    /* background-color: #13aa52;
    border: 1px solid #13aa52; */
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    outline: 0;
    padding: 10px 25px;
    text-align: center;
    transform: translateY(0);
    transition: transform 150ms, box-shadow 150ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }

.loginbtn {
  background-color: #13aa52;
  border: 1px solid #13aa52;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  outline: 0;
  padding: 10px 25px;
  text-align: center;
  transform: translateY(0);
  transition: transform 150ms, box-shadow 150ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

button:disabled,
button[disabled]{
  border: 1px solid #999999 !important;
  background-color: #cccccc !important;
  color: #666666 !important;
  cursor: default;
}

input{
    background-color: #ffd7002e;
    border-radius: 0;
    border: 0.09em solid gray;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: inherit;
    font-size: inherit;
    min-width: 353px;
}

.error{
    color: tomato;
    text-align: justify;
}


html { font-size: 18px; }
body { padding: 1rem; }

.card {
  /* background-color: dodgerblue; */
  /* color: white; */
  padding: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  /* border: 1px solid gray; */
  /* height: 4rem; */
}

.cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
}

/* Screen larger than 600px? 2 column */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

/* Screen larger than 900px? 3 columns */
@media (min-width: 900px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

img.shopImg {
    /* height: 200px; */
    /* width: 100%; */
    height: 330px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

label.shopProductPrice {
    display: block;
    font-size: 18px;
    padding-bottom: 8px;
    color: #e1a400;
}

button.shopAddToCartBtn {
    background-color: #13aa52;
    border: 1px solid #13aa52;
}

button.checkoutBtn {
    background-color: #13aa52;
    border: 1px solid #13aa52;
    margin-right: 10px;
}

button.backBtn {
    background-color: black;
    border: 1px solid #8c8c8c;
    margin-left: 10px;
}

button.shopDetailsBtn {
    background-color: #8c8c8c;
    border: 1px solid #8c8c8c;
    margin-left: 4px;
}

.checkoutPageButtons {
    position: absolute;
    bottom: 11px;
    /* background-color: #ffd70033; */
    width: 100%;
    right: 0px;
    border-top: 0.09em solid #ededed;
}

.thankyouSection {
    width: 600px;
    padding: 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    position: absolute;
    left: calc(50% - 315px);
    top: calc(50% - 200px);
}

.detailProductName {
    font-size: 22px;
}

.productDetailsImg{
    max-width: 50%;
    height: 400px;
    padding-right: 100px;
}

.productAdded {
    font-size: 14px;
    background-color: lightgreen;
    z-index: 200;
    position: fixed;
    bottom: 20;
    right: 10px;
    padding: 20px;
}

.footer{
    position: absolute;
    bottom: 6px;
}