/* - Basic - */
html
{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after 
{
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

a, li
{
  text-decoration: none;
  list-style: none;
}

.span-color
{
  color: var(--purple);
}

.svg-down
{
  transform: rotate(180deg);
}

.vh
{
  height: 10vh;
}

:root
{
  --white: #ffffff;
  --black: #000000;
  --light-purple: #e2e4fe;
  --purple: #ad7bfd;
}
/* --------- */

/* - content - */
.content
{
  width: 100%;
  padding: 30px;
  background-color: var(--light-purple);
}

.content h1
{
  width: 100%;
  margin-bottom: 7px;
  font-size: 25px;
  font-family: 'Barlow', sans-serif;
  color: var(--black);
}

.content p
{
  width: 100%;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
}
/* --------- */

/* - Cupcake - */
.cupcake
{
  width: 100%;
  max-width: 300px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: var(--white);
}

.cupcake:last-of-type
{
  margin-bottom: 0px;
}

.cupcake-image
{
  width: 100%;
  margin-bottom: 20px;
}

.cupcake-image img
{
  width: 100%;
  background-color: var(--light-purple);
}

.cupcake-info
{
  width: 100%;
}

.cupcake-info h1
{
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
  font-family: 'Barlow', sans-serif;
  text-align: center;
}

.cupcake-info hr
{
  width: 100px;
  height: 3px;
  margin-bottom: 15px;
  background-color: var(--light-purple);
  border: none;
}

.cupcake:hover .cupcake-info hr
{
  width: 150px;
  transition: width 0.5s ease;
}

.cupcake:not(:hover) .cupcake-info hr
{
  width: 100px;
  transition: width 0.5s ease;
}

.cupcake-info p
{
  margin-bottom: 20px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  text-align: center;
}

.cupcakes .cupcake-buttons a
{
  margin-bottom: 0px;
  color: var(--black);
  font-weight: normal;
}

.cupcake-buttons
{
  width: 100%;
}

.cupcake-buttons a
{
  width: 49% !important;
  padding: 5px 10px;
  color: var(--black);
  background-color: var(--light-purple);
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  text-align: center;
}

.cupcake-buttons a:hover
{
  color: var(--light-purple);
  background-color: var(--black);
}

.addToCart
{
  width: 49% !important;
}

.cupcake-input
{
  width: 100%;
  padding: 5px 10px;
  color: var(--black);
  background-color: var(--light-purple);
  border-radius: 5px;
  border: none;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  text-align: center;
}

.cupcake-input:hover
{
  color: var(--light-purple);
  background-color: var(--black);
  cursor: pointer;
}
/* --------- */

/* - Manage Buttons - */
.manage-buttons
{
  width: 100%;
}

.manage-buttons a
{
  width: 49% !important;
  padding: 5px 10px;
  margin-bottom: 0px;
  color: var(--black) !important;
  background-color: var(--purple)!important;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: normal !important;
  text-align: center;
}

.manage-buttons a:hover
{
  color: var(--purple)!important;
  background-color: var(--black)!important;
}
/* --------- */

/* - Input fields - */
.input-field
{
  width: 100%;
  margin-bottom: 10px;
}

.input-field .field
{
  width: 100%;
  padding: 10px;
  color: var(--black);
  background-color: var(--white);
  border-radius: 5px;
  border: none;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  text-align: center;
}
/* --------- */

/* - Submit Button - */
.submit-button
{
  padding: 5px 10px;
  color: var(--black);
  background-color: var(--purple);
  border-radius: 5px;
  border: none;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
}

.submit-button:hover
{
  color: var(--purple);
  background-color: var(--black);
}
/* --------- */

/* - Gender input - */
.gender
{
  width: 49%;
  padding: 10px 10px;
  color: var(--black);
  background-color: var(--white);
  border-radius: 5px;
  border: none;
}

.content .gender p
{
  margin-right: 10px;
  margin-bottom: 0px;
}

.gender-field
{
  text-align: center;
}
/* --------- */

/* - Mobile Navbar - */
.mobile-navbar
{
  width: 100%;
}

.mobile-nav
{
  width: 100%;
  height: 10vh;
  background-color: var(--light-purple);
  position: absolute;
  z-index: 0;
}

.mobile-nav .logo h1
{
  margin-left: 10px;
  color: var(--purple);
  font-size: 25px;
  font-family: 'Rubik', sans-serif;
}

.mobile-nav .logo img
{
  height: auto;
  width: 30px;
  margin-left: 10px;
}

.fa-bars
{
  margin-right: 10px;
  color: var(--purple);
  font-size: 25px;
  cursor: pointer;
}

.menu-items
{
  display: none;
  width: 100%;
  height: 100vh;
  background-color: var(--light-purple);
  position: fixed;
  z-index: 100;
}

.icon
{
  height: 10vh;
  width: 100%;
}

.fa-xmark
{
  display: none;
  font-size: 25px;
  color: var(--purple);
  margin-right: 10px;
  cursor: pointer;
}

.menu-items ul
{
  width: 100%;
  height: 90vh;
}

.menu-items ul a
{
  margin: 5px;
  color: var(--purple);
  font-size: 17px;
  font-family: 'Barlow', sans-serif;
  font-weight: bold;
}

@keyframes slideIn 
{
  from 
  {
    transform: translateX(100%);
  }

  to 
  {
    transform: translateX(0);
  }
}

@keyframes slideOut 
{
  from 
  {
    transform: translateX(0);
  }

  to 
  {
    transform: translateX(100%);
  }
}

.nav-signIn
{
  margin-top: 15px;
}

.navbar
{
  display: none !important;
}
/* --------- */

/* - Sign In - */
.signIn
{
  width: 100%;
  height: 90vh;
  background-color: var(--light-purple);
}

.signIn .content
{
  width: 100%;
  max-width: 400px;
}

.signIn-info
{
  width: 100%;
  margin-bottom: 10px;
}

.signIn-info p
{
  width: fit-content;
  margin-bottom: 0px;
  margin-right: 3px;
}

.signIn-info a
{
  width: fit-content;
  color: var(--purple);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: bold;
}
/* --------- */

/* - Sign Up - */
.signUp
{
  width: 100%;
  background-color: var(--light-purple);
}

.signUp .content
{
  width: 100%;
  max-width: 400px;
}

.signUp-info
{
  width: 100%;
}

.signUp-info p
{
  margin-right: 3px;
}
/* --------- */

/* - Welcome - */
.welcome
{
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}

.welcome-background
{
  display: none;
}

.welcome-background img
{
  width: 100%;
  height: 100%;
}

.welcome-image
{
  width: 100%;
  height: 90vh;
  padding: 20px;
}

.welcome-image img
{
  width: 100%;
  height: auto;
  max-width: 280px;
}

.logo-circle
{
  width: 225px;
  height: 225px;
  background-color: var(--light-purple);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

.welcome-info
{
  width: 100%;
  padding: 0px 50px 50px 50px;
}

.welcome-info h1
{
  max-width: 350px;
  margin-bottom: 15px;
  color: var(--black);
  font-size: 25px;
  font-family: 'Rubik', sans-serif;
}

.welcome-title
{
  color: var(--purple);
}

.welcome-info p
{
  max-width: 350px;
  margin-bottom: 15px;
  color: var(--black);
  font-size: 17px;
  font-family: 'Barlow', sans-serif;
}

.welcome-info a
{
  max-width: 350px;
  padding: 5px 10px;
  color: var(--black);
  background-color: var(--purple);
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  text-align: center;
}

.welcome-info a:hover
{
  color: var(--purple);
  background-color: var(--black);
}
/* --------- */

/* - Bestsellers - */
.bestsellers
{
  width: 100%;
}

.bestsellers .content
{
  flex-wrap: wrap;
}
/* --------- */

/* - About - */
.about
{
  width: 100%;
  padding: 20px 30px;
  background-color: var(--white);
}

.about-image
{
  width: 100%;
  margin-bottom: 20px;
}

.about-image img
{
  width: 100%;
  max-width: 280px;
}

.about-info
{
  width: 100%;
  text-align: start;
}

.about-info h1
{
  max-width: 400px;
  margin-bottom: 10px;
  font-size: 20px;
  font-family: 'Barlow', sans-serif;
  color: var(--black);
}

.about-info hr
{
  width: 150px;
  height: 3px;
  margin-bottom: 10px;
  background-color: var(--light-purple);
  border: none;
}

.about-info p
{
  max-width: 400px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  text-align: justify;
}
/* --------- */

/* - Cupcakes - */
.cupcakes
{
  width: 100%;
}

.cupcakes .content
{
  flex-wrap: wrap;
}

.cupcakes a
{
  width: 100%;
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: bold;
}

.cupcakes .manage-buttons a
{
  color: var(--black) !important;
  background-color: var(--light-purple) !important;
  margin-bottom: 0px;
}

.cupcakes .manage-buttons a:hover
{
  color: var(--light-purple) !important;
  background-color: var(--black) !important;
  margin-bottom: 0px;
}
/* --------- */

/* - Admin - */
.admin
{
  width: 100%;
  height: 90vh;
  background-color: var(--light-purple);
}

.admin .content
{
  width: 100%;
  max-width: 400px;
}

.admin-buttons
{
  width: 100%;
}

.admin-buttons a
{
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 10px;
  color: var(--black);
  background-color: var(--white);
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: normal;
  text-align: center;
}

.admin-buttons a:hover
{
  color: var(--white);
  background-color: var(--black);
}

.adminOrders .content
{
  width: 100%;
  max-width: 400px;
}

.adminOrders .order
{
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  background-color: var(--white);
}
/* --------- */

/* - Persons - */
.persons
{
  width: 100%;
  background-color: var(--light-purple);
}

.persons .content
{
  width: 100%;
  max-width: 400px;
}

.persons a
{
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: bold;
}

.person
{
  width: 100%;
  margin-bottom: 15px;
}

.person:last-of-type
{
  margin-bottom: 0px;
}

.person h1
{
  width: 100%;
  padding: 10px;
  color: var(--black);
  background-color: var(--white);
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: normal;
}
/* --------- */

/* - Create Person - */
.createPerson
{
  width: 100%;
  background-color: var(--light-purple);
}

.createPerson .content
{
  width: 100%;
  max-width: 400px;
}
/* --------- */

/* - Person Info - */
.personInfo
{
  width: 100%;
  background-color: var(--light-purple);
}

.personInfo .content
{
  width: 100%;
  max-width: 400px;
}

.personInfo-info
{
  width: 100%;
}

.personInfo-info p
{
  margin-right: 3px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
}

.personInfo-info a
{
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
}
/* --------- */

/* - Linked Accounts - */
.linkedAccounts
{
  width: 100%;
  background-color: var(--light-purple);
}

.linkedAccounts .content
{
  width: 100%;
  max-width: 400px;
}

.account
{
  width: 100%;
  margin-bottom: 15px;
}

.account p
{
  width: 100%;
  padding: 10px;
  margin-bottom: 7px;
  color: var(--black);
  background-color: var(--white);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  border-radius: 5px;
}

.account:last-of-type
{
  margin-bottom: 0px;
}

.accountInfo
{
  width: 100%;
  background-color: var(--light-purple);
}

.accountInfo .content
{
  width: 100%;
  max-width: 400px;
}
/* --------- */

/* - Create Account - */
.createAccount
{
  width: 100%;
  background-color: var(--light-purple);
}

.createAccount .content
{
  width: 100%;
  max-width: 400px;
}

.createAccount h1
{
  margin-bottom: 7px;
  font-size: 25px;
  font-family: 'Barlow', sans-serif;
}

.createAccount p
{
  margin-bottom: 10px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
}
/* --------- */

/* - Create Cupcake - */
.createCupcake
{
  width: 100%;
  background-color: var(--light-purple);
}

.createCupcake img
{
  width: 100%;
}

#base-cupcake
{
  width: 100%;
  height: auto;
}
/* --------- */

/* - Shopping Cart - */
.cart body 
{
  background-color: var(--light-purple);
}

.shopping-cart
{
  width: 100%;
  background-color: var(--light-purple);
}

.shopping-cart .content
{
  flex-wrap: wrap;
  width: 100%;
}

.shopping-cart p
{
  width: fit-content;
  margin-right: 3px;
}

.shopping-cart a
{
  width: fit-content;
  color: var(--purple);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: bold;
}

.empty-cart
{
  width: 100%;
}

.empty-cart p
{
  margin-right: 3px;
  margin-bottom: 0px;
}

.empty-cart a
{
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
}

.cart-item
{
  width: 100%;
  max-width: 300px;
  margin-bottom: 10px;
  background-color: var(--white);
}

.item-image
{
  width: 100%;
  padding: 20px;
}

.item-image img
{
  width: 100%;
  background-color: var(--light-purple);
}

.item-info
{
  width: 100%;
  padding: 0px 20px 20px 20px;
}

.item-text
{
  width: 100%;
  margin-bottom: 7px;
}

.item-text h1
{
  width: none;
  padding: 5px 0px;
  margin-bottom: 0px;
  font-size: 20px;
  font-family: 'Barlow', sans-serif;
  font-weight: normal;
}

.removeItem .field
{
  width: none;
  background-color: var(--white);
}

.removeItem .submit-button
{
  padding: 5px 0px;
  background-color: var(--white);
  cursor: pointer;
}

.removeItem .submit-button:hover
{
  padding: 5px 0px;
  color: var(--purple);
  cursor: pointer;
}

.item-info hr
{
  width: 100%;
  height: 2px;
  margin-bottom: 10px;
  background-color: var(--light-purple);
  border: none;
}

.item-price
{
  width: 100%;
}

.updateCart .field
{
  width: 100%;
  text-align: center;
}

.updateCart
{
  width: 100%;
}

.updateCart h2
{
  width: 32%;
  padding: 5px;
  background-color: var(--light-purple);
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: normal;
  text-align: center;
}

.updateCart .field
{
  width: 32%;
  padding: 5px;
  background-color: var(--light-purple);
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: normal;
  text-align: center;
}

.updateCart .submit-button
{
  width: 32%;
  padding: 5px;
  background-color: var(--light-purple);
  text-align: center;
}

.total-price
{
  width: 100%;
  padding: 20px;
  background-color: var(--white);
}

.total-price hr
{
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
  border: none;
  background-color: var(--black);
}

.total-price a
{
  width: 100% !important;
  padding: 5px;
  border-radius: 5px;
  color: var(--black);
  background-color: var(--purple);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
}

.total-price a:hover
{
  color: var(--purple);
  background-color: var(--black);
}

.individual-prices
{
  width: 100%;
  margin-bottom: 10px;
}

.individual-prices:last-of-type
{
  margin-bottom: 20px;
}

.individual-prices p
{
  width: fit-content;
  margin-bottom: 0px;
}
/* --------- */

/* ----- Order ----- */
.order
{
  width: 100%;
  background-color: var(--light-purple);
}

.order .content
{
  width: 100%;
  max-width: 400px;
}

.order .individual-prices:last-of-type
{
  margin-bottom: 0px;
}

.orderForm
{
  width: 100%;
}

.orderForm .content
{
  width: 100%;
}

.orderForm .field
{
  text-align: start;
}
/* ----------------- */

/* ----- Footer ----- */
.footer
{
  width: 100%;
}

.footer-content
{
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 30px;
  background-color: var(--light-purple);
}

.footer-info
{
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-navigation
{
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-contact
{
  width: 100%;
  max-width: 200px;
}

.footer h1
{
  margin-bottom: 5px;
  font-size: 20px;
  font-family: 'Barlow', sans-serif;
}

.footer hr
{
  width: 200px;
  height: 3px;
  margin-bottom: 10px;
  background-color: var(--black);
  border: none;
}

.footer p
{
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
}

.footer a
{
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  color: var(--black);
}

.footer a:hover
{
  text-decoration: underline;
}

.footer-socials
{
  width: 100%;
}

.footer-socials .fa-square-instagram, .fa-square-facebook
{
  font-size: 15px;
  color: var(--black);
}
/* ----------------- */

/* - Utility Classes - */
.flex-fr /* flex, row */
{
  display: flex;
  flex-direction: row;
}

.flex-fc /* flex, column */
{
  display: flex;
  flex-direction: column;
}

.flex-fe /* flex, evenly*/
{
  display: flex;
  justify-content: space-evenly;
}

.flex-frc /* flex, row, center */
{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.flex-fra /* flex, row, around */
{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.flex-frb /* flex, row, between */
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-fre /* flex, row, evenly */
{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.flex-fcc /* flex, center, center */
{
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-fsc /* flex, center, start */
{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.flex-fec /* flex, end, center */
{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.flex-frsc /* flex, row, start, center */
{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.flex-frcs /* flex, row, center, start */
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.flex-fcsc /* flex, column, start, center */
{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.flex-fcss /* flex, column, start, start */
{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-fcbs /* flex, column, between, start */
{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-frcc /* flex, row, center, center */
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-frac /* flex, row, around, center */
{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.flex-frbc /* flex, row, between, center */
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.flex-frec /* flex, row, evenly, center */
{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.flex-frec /* flex, row, evenly, center */
{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.flex-fcec /* flex, column, end, center */
{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.flex-fccs /* flex, column, center, starr */
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.flex-fccc /* flex, row, center, center */
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-fcec /* flex, column, end, center */
{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
/* --------- */

@media only screen and (min-width: 768px)
{
  /* - Navbar - */
  .mobile-navbar
  {
    display: none;
  }

  .navbar
  {
    display: flex !important;
    width: 100%;
    height: 10vh;
    background-color: var(--light-purple);
    position: absolute;
  }

  .navbar .logo img
  {
    width: 50px;
    height: auto;
    margin-left: 10px;
  }

  .navbar .logo h1
  {
    margin-left: 10px;
    color: var(--purple);
    font-size: 25px;
    font-family: 'Rubik', sans-serif;
  }

  .menu ul a
  {
    margin: 0px 5px;
    color: var(--purple);
    font-size: 20px;
    font-family: 'Saira Condensed', sans-serif;
  }

  .nav-signIn
  {
    margin-top: 0px;
    margin-right: 10px;
  }

  .nav-signIn a
  {
    color: var(--purple);
    font-size: 20px;
    font-family: 'Saira Condensed', sans-serif;
  }

  .nav-signIn .fa-cart-shopping
  {
    margin-right: 10px;
  }
  /* --------- */

  /* - Welcome - */
  .welcome
  {
    width: 100%;
    height: 90vh;
    padding: 75px;
    flex-direction: row;
    background-color: var(--white);
  }

  .welcome-image
  {
    width: 50%;
    height: 100%;
    background-color: var(--light-purple);
  }

  .welcome-info
  {
    width: 50%;
    height: 100%;
    padding: 20px;
    background-color: var(--light-purple);
  }
  /* --------- */

  /* - Bestsellers - */
  .bestsellers
  {
    width: 100%;
  }

  .bestsellers .content
  {
    flex-direction: row;
    justify-content: start;
    width: 100%;
  }

  .bestsellers .cupcake
  {
    margin-right: 10px;
  }

  .bestsellers .cupcake:last-of-type
  {
    margin-right: 0px;
  }

  .cupcake:last-of-type
  {
    margin-bottom: 20px;
  }
  /* --------- */

  /* - About - */
  .about
  {
    flex-direction: row;
    width: 100%;
    height: 90vh;
    padding: 0px;
  }

  .about-image
  {
    width: 50%;
    height: 100%;
    padding: 20px;
    margin-bottom: 0px;
  }

  .about-info
  {
    width: 50%;
    height: 100%;
    padding: 20px;
  }
  /* --------- */

  /* - Footer - */
  .footer-content
  {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: start;
    width: 100%;
    height: 40vh;
  }
  /* --------- */

  /* - cupcakes - */
  .cupcakes
  {
    width: 100%;
  }

  .cupcakes .content
  {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .shopping-cart .content
  {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .shopping-cart .content p
  {
    width: 100%;
  }

  .shopping-cart .individual-prices p
  {
    width: fit-content;
  }
  /* --------- */
}