/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

/* 
Color Pallet:
White: #ffffff;
Green: #2ecc71;
Dark grey: #192024;
Offwhite (can't see on QOLED): #FAF9F6
simple box shaddow: box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;

================== Dark Theme ================== */
:root {
  /* Base dark theme */
  --bg-darkest: #121212;
  --bg-darker: #1a1a1a;
  --bg-dark: #1f1f1f;
  --bg-mid: #2a2a2a;
  --bg-light: #333333;
  --bg-lighter: #3d3d3d;

  /* Text colors */
  --text-primary: #e0e0e0; /* Light grey for main text */
  --text-secondary: #a0a0a0; /* Subdued grey for secondary text */
  --text-muted: #777777;
  --text-drive: #cc0c39;

  /* Accent / Secondary (Green theme) */
  --accent: #2ecc71;
  --accent-dark: #27ae60;
  --accent-light: #58d68d;

  /* Borders & Dividers */
  --border: #2b2b2b;
  --divider: #1e1e1e;

  /* Alerts */
  --alert: #e74c3c; /* Main red (stands out without being harsh) */
  --alert-dark: #c0392b; /* For hover or border */
  --alert-light: #f1948a; /* For subtle highlights or backgrounds */
}

/* Checkbox utility */
.checkbox-wrapper-21 .mpq-f-r-control {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 18px;
}
.checkbox-wrapper-21 .mpq-f-r-control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkbox-wrapper-21 .mpq-f-r-control__indicator {
  position: absolute;
  top: 6px;
  left: 0;
  height: 15px;
  width: 15px;
  background: var(--bg-darkest);
}
.checkbox-wrapper-21 .mpq-f-r-control:hover input ~ .mpq-f-r-control__indicator,
.checkbox-wrapper-21
  .mpq-f-r-control
  input:focus
  ~ .mpq-f-r-control__indicator {
  background: var(--bg-light);
}
.checkbox-wrapper-21
  .mpq-f-r-control
  input:checked
  ~ .mpq-f-r-control__indicator {
  background: var(--accent-light);
}
.checkbox-wrapper-21
  .mpq-f-r-control:hover
  input:not([disabled]):checked
  ~ .mpq-f-r-control__indicator,
.checkbox-wrapper-21
  .mpq-f-r-control
  input:checked:focus
  ~ .mpq-f-r-control__indicator {
  background: var(--accent-dark);
}
.checkbox-wrapper-21
  .mpq-f-r-control
  input:disabled
  ~ .mpq-f-r-control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.checkbox-wrapper-21 .mpq-f-r-control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-wrapper-21
  .mpq-f-r-control
  input:checked
  ~ .mpq-f-r-control__indicator:after {
  display: block;
}
.checkbox-wrapper-21
  .mpq-f-r-control--checkbox
  .mpq-f-r-control__indicator:after {
  left: 5px;
  top: 2px;
  width: 3px;
  height: 8px;
  border: solid var(--bg-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-wrapper-21
  .mpq-f-r-control--checkbox
  input:disabled
  ~ .mpq-f-r-control__indicator:after {
  border-color: #7b7b7b;
}
/* END OF Checkbox utility */
/* General / Header section */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::selection {
  /* Changing the hgihlight effect of all elements to the main color */
  background-color: #2ecc71;
  color: #ffffff;
}
body {
  /* -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column; */
  line-height: 1.6;
  font-weight: 300;
  font-family: "Nunito Sans", sans-serif;
  color: #777;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100%;
}
main {
  width: 100%;
  min-height: 100%;
}
a {
  transition: all 0.3s ease 0s !important;
}
.main-overview {
  background-color: var(--bg-mid);
  width: 100%;
  min-height: 100vh;
}
.main-login {
  /* background-image: linear-gradient(to right bottom, #7dd56f, #28b487); */
  padding: 8rem 6rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* position: relative; */
}
.main-settings {
  background-color: var(--bg-mid);
  padding: 8rem 10rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
li,
a,
button {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ecf0f1;
  text-decoration: none;
}
.nav__el--logout {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ecf0f1;
  text-decoration: none;
}
.ma-bt-md {
  margin-bottom: 3rem !important;
}
.ma-bt-lg {
  margin-bottom: 3.5rem !important;
}
.header {
  background-color: var(--bg-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  margin: 0;
  width: 100%;
  height: 6rem;
  position: fixed;
  z-index: +1;
}
nav {
  justify-content: space-between;
  display: flex;
}
.nav-links li {
  display: inline-block;
  padding: 0px 10px;
  margin: 0 10px;
}
.nav-links li a {
  transition: all 0.3s ease 0s;
  font-family: "Nunito Sans", sans-serif;
  color: var(--accent-light);
  text-transform: uppercase;
  font-weight: 300;
}
.nav-links li a:hover {
  text-shadow: rgba(85, 197, 122, 1) 0px 0px 20px;
  text-decoration: underline;
}
.top-nav--active {
  border: solid red 2px;
}
.nav-links {
  list-style: none;
}
.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-active {
  border-bottom: solid var(--accent) 2px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;

  box-shadow: var(--accent) 0px 25px 50px -11px;
  /* box-shadow: var(--accent) 0px 25px 20px -20px; */
  /* box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; */
}
button {
  padding: 9px 25px;
  color: var(--text-primary);
  background-color: var(--accent-dark);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
button:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
}
.btn--green {
  color: var(--bg-dark);
}
.invis {
  visibility: hidden;
}
/* End of General / Header section */

/* Text visuals */

.heading-secondary {
  font-size: 2.25rem;
  text-transform: uppercase;
  font-weight: 700;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#7dd56f),
    to(#28b487)
  );
  background-image: linear-gradient(to right, #7dd56f, #28b487);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.1rem;
  line-height: 1.3;
  display: inline-block;
}
.heading-secondary--error {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff7730),
    to(#eb4d4b)
  );
  background-image: linear-gradient(to right, #ff7730, #eb4d4b);
  font-size: 3.5rem;
}

/* END OF text visuals */

/* Hero Section */
#stripes {
  width: 100%;
  height: 75%;
  margin-top: 6rem;
  max-height: 60rem;
  overflow: hidden;
  transform-origin: 0; /*#2e864b #55c57a #20bf6b #28b487 #7dd56f*/
  transform: skewY(-2deg);
  background: linear-gradient(to right bottom, #7dd56f, #28b487);
  z-index: -1;
}
#stripes,
#stripes span {
  position: absolute;
}
#stripes span {
  height: 0px;
}
#stripes :nth-child(1) {
  width: 50%;
  left: 50%;
  top: 40px;
  background: #98fb98;
}
#stripes :nth-child(2) {
  width: 14%;
  right: 0;
  bottom: 40px;
  background: #00a693;
}
#stripes :nth-child(3) {
  width: 25%;
  bottom: 0;
  right: 0;
  background: #a1ffc8;
}
@media (min-width: 670px) {
  #stripes span {
    height: 150px;
  }
  #stripes :nth-child(1) {
    top: 0;
  }
  #stripes :nth-child(2) {
    width: 16.66667%;
    top: 300px;
    bottom: auto;
    background: #7dd56f;
  }
  #stripes :nth-child(3) {
    width: 33.33333%;
    right: auto;
    background: #28b487;
  }
}
@media (min-width: 880px) {
  #stripes span {
    height: 190px;
  }

  #stripes :nth-child(1) {
    width: 33.33333%;
    left: -16.66666%;
    background: #50c878;
  }

  #stripes :nth-child(2) {
    width: 33.33333%;
    top: 0;
    left: 16.66666%;
    right: auto;
    background: #7dd56f;
  }

  #stripes :nth-child(3) {
    width: 33.33333%;
    left: 49.99999%;
    bottom: auto;
    background: #50c878;
  }

  #stripes :nth-child(4) {
    width: 33.33333%;
    top: 380px;
    right: -16.66666%;
    background: #50c878;
  }

  #stripes :nth-child(5) {
    width: 33.33333%;
    bottom: 0;
    background: #28b487;
  }
}
.hero-div {
  /* margin-top: 6rem; */
  width: 100%;
  min-height: 2rem;
}
.hero-greeting {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ecf0f1;
  text-decoration: none;
  height: 30rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-h1 {
  color: var(--accent-light);
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: rgba(255, 255, 255, 0.15); */
  background-color: var(--bg-light);
  backdrop-filter: blur(5px);
  border-radius: 5px;
  padding: 2rem;
  max-width: 50rem;
  min-width: 30rem;
  text-align: center;
  margin-top: 5rem;
}
.hero-p {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  max-width: 25rem;
  text-align: center;
  color: var(--accent-light);
}
.hero-background {
  max-height: 1rem;
}
/* End of Hero Section */

/* ///////////////////////////////////////////////// */

/* Command center */

.command {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem 0 5rem 0;
}
.command-card {
  position: relative;
  width: 300px;
  height: auto;
  border-radius: 3px;
  background-color: var(--bg-light);
  transition: 0.3s all;
  backface-visibility: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  margin: 0 2%;
}
.card-header {
  position: relative;
}
.card-bckgrnd {
  position: relative;
  clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
  height: 12rem;
  display: flex;
  justify-content: center;
  align-items: start;
}
.card-picture {
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
  clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
  height: 22rem;
}
.card-title {
  font-family: "Nunito Sans", sans-serif;
  color: var(--bg-lighter);
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1rem;
  text-align: center;
  position: absolute;
  bottom: 1rem;
  /* right: 2rem; */
  width: 100%;
  z-index: 10;
}
.card-title span {
  padding: 1rem 1.5rem;
  line-height: 1;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(125, 213, 111, 0.85)),
    to(rgba(40, 180, 135, 0.85))
  );
  background-image: linear-gradient(
    to bottom right,
    rgba(125, 213, 111, 0.85),
    rgba(40, 180, 135, 0.85)
  );
}
.card-picture-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right bottom, #7dd56f, #28b487);
  opacity: 0.7;
}
.card-detail {
  color: #777;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 3rem;
  height: 15rem;
}

.pallet-max-bid span {
  color: var(--alert) !important;
  font-weight: 600 !important;
}
.pallet-net-zero span {
  color: var(--alert) !important;
  font-weight: 600 !important;
}

.card-sub-heading {
  font-weight: 300;
  font-size: smaller;
  text-align: center;
}
.card-footer {
  background-color: var(--bg-light);
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--bg-light);
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}
.card-footer .btn-small {
  align-self: center;
}
/* Command Button */
.button-command {
  appearance: none;
  background-color: var(--bg-lighter);
  border-width: 0;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: Clarkson, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1em;
  margin: 0;
  opacity: 1;
  outline: 0;
  padding: 1.5em 2.2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-rendering: geometricprecision;
  text-transform: uppercase;
  transition: opacity 300ms cubic-bezier(0.694, 0, 0.335, 1),
    background-color 100ms cubic-bezier(0.694, 0, 0.335, 1),
    color 100ms cubic-bezier(0.694, 0, 0.335, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
}
.button-command:before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: var(--bg-mid);
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}
.button-command:hover:before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}
.button-command:after {
  background-color: #ffffff;
}
.button-command span {
  color: #777;
  z-index: 1;
  position: relative;
}
/* Command Button */
/* End of Command center */

/* /////////////////////////////////////////// */

/* Footer section */

.footer {
  background-color: var(--bg-dark);
  width: 100%;
  padding: 6rem 4rem 3rem 4rem;
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: auto auto;
  grid-row-gap: 0.75rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 50em) {
  .footer {
    grid-template-columns: 1fr;
    grid-row-gap: 1.25rem;
    justify-items: center;
  }
}
.footer-logo {
  grid-row: 1 / 3;
  -ms-flex-item-align: center;
  align-self: center;
}
@media only screen and (max-width: 50em) {
  .footer-logo {
    grid-row: 1;
  }
}
.footer-logo img {
  height: 3rem;
}
.footer-nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}
.footer-nav li {
  margin-left: 1.5rem;
}
.footer-nav a {
  color: #777;
  text-decoration: none !important;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer-nav a:hover,
.footer-nav a:active {
  color: #55c57a;
}
.footer-copyright {
  justify-self: end;
  color: #999;
}
@media only screen and (max-width: 50em) {
  .footer-copyright {
    justify-self: center;
  }
}

/* End of Footer section */

/* File Upload section */
.main-calculator {
  background-color: var(--bg-mid);
}
.calculations-container {
  height: 40rem;
  background-color: var(--bg-mid);
}

.calc-container {
  height: 100%;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: var(--bg-mid);
  /* padding-top: 100px; */
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}
.calc-card {
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
  width: 50rem;
  max-height: 60%;
  background-color: var(--bg-dark);
  opacity: 0.7;
  padding-bottom: 40px;
}
.calc-card h3 {
  font-size: 22px;
  font-weight: 600;
  background-color: var(--bg-darkest);
  color: var(--accent);
  width: 100%;
  padding: 0 20px 0 20px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.calc-drop_box {
  margin: 10px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 5px;
  background-color: var(--bg-mid);
}
.calc-drop_box h4 {
  font-size: 16px;
  font-weight: 400;
  color: #2e2e2e;
}
.calc-drop_box p {
  margin-top: 10px;
  margin-bottom: 2.5rem;
  font-size: 12px;
  color: var(--text-primary);
}
.calc-btn {
  text-decoration: none;
  background-color: #03c03c;
  color: #f7f7f7;
  padding: 10px 20px;
  border: none;
  outline: none;
  transition: 0.3s;
}
.calc-btn:hover {
  text-decoration: none;
  background-color: #d0f0c0;
  color: #03c03c;
  padding: 10px 20px;
  border: none;
  outline: 1px solid #03c03c;
}
.fileupload {
  margin: 10px 0;
  width: 100%;
  background-color: #f7f7f7;
  border: none;
  outline: none;
  padding: 12px 20px;
  border-radius: 4px;
}
.calc-btn-run {
  text-decoration: none;
  background-color: #d0f0c0;
  color: #03c03c;
  padding: 10px 20px;
  border: none;
  outline: 1px solid #03c03c;
}
.calc-btn-run:hover {
  text-decoration: none;
  background-color: #03c03c;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  outline: none;
  transition: 0.3s;
}

.costco-notif {
  color: var(--accent-dark) !important;
  font-weight: 700 !important;
}
/* End of File Upload section */

/* Previous Pallets */
.prev-pallets-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background-color: var(--bg-dark);
}
.prev-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.prev-header h1 {
  text-decoration: none;
  color: var(--accent);
  background-color: var(--bg-mid);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-top: 10px; */
}
.prev-header .triangle {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: 0;
  border-left: 50vw solid #f7f7f700;
  border-right: 50vw solid #f7f7f700;
  border-top: 80px solid var(--bg-mid);
}
.prev-header .triangle img {
  padding-bottom: 5rem;
}
.prev-pallet-grid {
  max-width: 100%;
  margin: 5rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}

.pallet-card {
  position: relative;
  width: auto;
  height: auto;
  border-radius: 3px;
  background-color: var(--bg-mid);

  transition: 0.3s all;
  backface-visibility: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  margin: 0 2%;
}

.pallet-card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-light);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.pallet-card-title {
  font-family: "Nunito Sans", sans-serif;
  color: var(--text-primary);
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.5rem;
  text-align: start;
  bottom: 1rem;
  width: 100%;
  z-index: 10;
  padding: 1rem;
}
.pallet-card-detail {
  /* color: #777; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 3rem;
  grid-column-gap: 4rem;
  padding: 1rem 1rem;
  background-color: var(--bg-light);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.pallet-card-sub-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  grid-column: 1 / -1;
  color: var(--text-secondary);
}
.pallet-card-sub-heading span {
  color: var(--accent);
  width: 100%;
  margin-left: 10px;
}
.pallet-card-data {
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pallet-card-data p {
  text-align: start;
  font-weight: 600;
  color: var(--text-secondary);
}
.pallet-card-data p span {
  text-align: start;
  font-weight: 500;
  color: var(--text-primary);
  /* margin-left: 10px; */
}
.pallet-card-footer {
  background-color: var(--bg-mid);
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--accent);
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.pallet-card-footer p {
  text-align: start;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.pallet-card-footer p span {
  text-align: start;
  color: #03c03c;
}
.pallet-card-footer .btn-small {
  align-self: center;
}
/* pallet Button */
.button-pallet {
  appearance: none;
  background-color: var(--bg-lighter);
  border-width: 0;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: Clarkson, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1em;
  margin: 0 10px;
  opacity: 1;
  outline: 0;
  padding: 1.5em 2.2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-rendering: geometricprecision;
  text-transform: uppercase;
  transition: opacity 300ms cubic-bezier(0.694, 0, 0.335, 1),
    background-color 100ms cubic-bezier(0.694, 0, 0.335, 1),
    color 100ms cubic-bezier(0.694, 0, 0.335, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
}
.button-pallet:before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: var(--bg-dark);
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}
.button-pallet:hover:before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}
.button-pallet:after {
  background-color: #ffffff;
}
.button-pallet span {
  color: #777;
  z-index: 1;
  position: relative;
}

/* End Of Previous Pallets */

/* Prcing tool section */
.add--new {
  display: flex;
  flex-direction: column;
  margin: 10rem 0 2rem 0;
  padding: 10px;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-dark);
  text-transform: uppercase;
  /* border-bottom: 1px solid rgba(172, 172, 172, 0.5); */
  border-radius: 3px;
}
.add--new * {
  color: var(--text-secondary);
}
.add--new h2 {
  color: var(--accent-light);
}
.form__input-item {
  background-color: var(--bg-lighter);
  border: solid var(--border) 1px;
  border-radius: 3px;
}
/* .form-block hr {
  border: none;
  height: 20px;
  width: 100%;
  height: 50px;
  margin-top: 0;
  border-bottom: 1px solid #55c57a;
  box-shadow: 0 10px 10px -10px #333;
  margin: -50px auto 10px;
  padding-top: 10px;
} */

.add-item-form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-add-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.form-add-item button {
  color: var(--accent-light);
  background-color: var(--bg-light);
}
.btn--add-item:hover {
  background-color: var(--bg-mid);
}
.item-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 15px;
}
.pricing-main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 90vh;
  background-color: var(--bg-mid);
}
.products-table {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-mid);
  width: 98%;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
  padding-top: 3rem;
}
.products-table table {
  width: 100%;
  table-layout: fixed;
}
.tbl-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.tbl-header th {
  padding: 20px 15px;
  align-items: start;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  color: var(--accent-light);
  text-transform: uppercase;
}

tr.header-row th:last-child {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tbl-content {
  border: solid var(--divider) 2px;
  border-radius: 5px;
  background-color: var(--bg-light);
  margin-bottom: 3rem;
}
.tbl-content th {
  padding: 20px 15px;
  align-items: start;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  color: var(--accent-light);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(172, 172, 172, 0.5);
}
.tbl-content td {
  padding: 20px 15px;
  align-items: start;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  color: var(--text-secondary);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(172, 172, 172, 0.5);
}

.table-row td:last-child {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.table-row td:last-child form {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.price-form-value {
  width: 5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
}
.price-form-value h3 {
  margin-right: 2rem;
}
.price-form-value input {
  background-color: var(--bg-lighter);
}
/* .price-form-value input::-webkit-outer-spin-button,
.price-form-value input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-form-value input[type="number"] {
  -moz-appearance: textfield;
} */

.price-form-btns {
  width: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px;
}

.price-form-btns button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  margin: 5px;
}

.item-dlt {
  width: 100%;
  background-color: var(--alert);
}
.item-dlt:hover {
  background-color: var(--alert-light);
}

.price-form-input {
  font-family: inherit;
  color: inherit;
  padding: 1.25rem 1.75rem;
  border: none;
  width: 5rem;

  background-color: #fff;
  background-color: #f2f2f2;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.price-form-input:focus {
  outline: none;
  border-bottom: 3px solid #55c57a;
}
.price-form-input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}
.price-form-input::-webkit-input-placeholder {
  color: #bbb;
}

.p-det-B-rec {
  font-weight: 700;
  color: #03c03c;
}
.p-det-B-out {
  font-weight: 700;
  color: var(--alert);
}
.p-det-A {
  font-weight: 700;
  color: var(--text-primary);
}
/* .content-btn{
  height: 90%;
} */
/* End of Prcing tool section */

.login-form {
  margin: 0 auto;
  max-width: 55rem;
  background-color: #fff;
  -webkit-box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);
  box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);
  padding: 5rem 7rem;
  border-style: solid;
  border-color: #50c878;
  border-radius: 5px;
}
.form__input {
  display: block;
  font-family: inherit;
  font-size: 1.5rem;
  color: inherit;
  padding: 1.25rem 1.75rem;
  border: none;
  width: 100%;
  background-color: var(--bg-lighter);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* Pseudo element (a visible thing that isn't really in the DOM).
      Also needs -ms- */
}
.form__input:focus {
  outline: none;
  border-bottom: 3px solid #55c57a;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}
.form__input::-webkit-input-placeholder {
  color: #bbb;
}

.form__group:not(:last-child) {
  margin-bottom: 2.5rem;
}

.form__label {
  font-family: "Nunito Sans", sans-serif;
  color: #777;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form__photo-upload {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
}

.form__user-photo {
  height: 7.5rem;
  width: 7.5rem;
  border-radius: 50%;
  margin-right: 2rem;
}

.form__upload {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.form__upload:focus + label {
  outline: 3px solid #55c57a;
  outline-offset: 3px;
}

.form__upload + label {
  color: #55c57a;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #55c57a;
  padding: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.form__upload + label:hover {
  background-color: #55c57a;
  color: #fff;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.alert {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9999;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 1.6rem 15rem;
  -webkit-box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
}
.alert--success {
  background-color: #20bf6b;
}
.alert--error {
  background-color: #eb4d4b;
}

.error {
  padding-top: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80rem;
  text-align: center;
}
.error__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.error__emoji {
  font-size: 3.75rem;
  margin-left: 1rem;
}
.error__msg {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 50rem;
  margin: 0 auto;
}
.main--err {
  width: 100%;
  min-height: 100vh;
  padding-bottom: 50px;
  background-color: #f7f7f7;
  /* padding-top: 5rem; */
}
.err_img {
  max-width: 100vh;
  height: auto;
}

.user-view {
  background-color: #fff;
  max-width: 120rem;
  margin: 0 auto;
  min-height: 100vh;
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
  box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.user-view__menu {
  -webkit-box-flex: 32rem;
  -ms-flex: 32rem 0 0px;
  max-width: fit-content;
  flex: 32rem 0 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#7dd56f),
    to(#28b487)
  );
  background-image: linear-gradient(to right bottom, #7dd56f, #28b487);
  padding: 4rem 0;
}
.user-view__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 7rem 0;
  background-color: var(--bg-dark);
}
.user-view__form-container {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 8rem;
}

.side-nav {
  list-style: none;
}
.side-nav li {
  margin: 1rem 0;
  border-left: 0 solid var(--bg-lighter);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.side-nav--active,
.side-nav li:hover {
  border-left: 4px solid var(--bg-lighter) !important;
}
.side-nav--active a {
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}
.side-nav a:link,
.side-nav a:visited {
  padding: 1rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--bg-lighter);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.side-nav a:hover,
.side-nav a:active {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.side-nav svg {
  height: 1.9rem;
  width: 1.9rem;
  fill: var(--bg-lighter);
  margin-right: 2rem;
}

.calc-form {
  display: flex;
  flex-direction: column;
  width: 75%;
}

.calc-form h4 {
  align-self: flex-start;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.calc-form p {
  align-self: center;
  padding: 20px;
  margin: 0;
  font-size: 12px;
  color: #a3a3a3;
}

/* .calc-drop_box h4 {
  font-size: 16px;
  font-weight: 400;
  color: #2e2e2e;
}
.calc-drop_box p {
  margin-top: 10px;
  margin-bottom: 2.5rem;
  font-size: 12px;
  color: #a3a3a3;
} */

.form__group_csv {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.form-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.form-block hr {
  border: none;
  height: 20px;
  width: 100%;
  height: 50px;
  margin-top: 0;
  border-bottom: 1px solid #55c57a;
  box-shadow: 0 10px 10px -10px #333;
  margin: -50px auto 10px;
  padding-top: 10px;
}

.form-block-btns {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 10px 0 5px 0;
}

.form__label-calc {
  display: flex;
  align-items: center;
  width: 100%;
}

.form__input-calc {
  margin: 10px;
  position: relative;
  z-index: 1;
  cursor: text;
  pointer-events: auto;
  background-color: var(--bg-lighter);
  border: none;
  color: var(--accent);
}
/* Chrome, Safari, Edge, Opera */
.form__input-calc::-webkit-outer-spin-button,
.form__input-calc::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.form__input-calc[type="number"] {
  -moz-appearance: textfield;
}

.form__input-calc:hover {
  outline: 1px solid #55c57a;
  /* background-color: var(--bg-mid); */
}

.form__csv-upload {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  background-color: var(--bg-lighter);
  text-decoration: none;
  border-radius: 5px;
  /* border: 1px solid #55c57a; */
  width: 200px;
  height: 40px;

  -webkit-box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
}
.form__csv-upload:hover {
  background-color: var(--bg-dark);
}
.form__csv-upload label {
  width: 100%;
  text-align: center;
  color: var(--text-primary);
  border: none;
  padding: 9px 25px;
}
.form__csv-upload label:hover {
  background-color: var(--bg-dark);
}
.form__csv-run {
  /* padding: 9px 25px; */
}
.form__csv-run button {
  /* -webkit-box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25); */
  background-color: var(--bg-dark);
  color: var(--accent);
  width: 200px;
  height: 40px;
}
.form__csv-run button:hover {
  background-color: var(--accent-dark);
  color: var(--text-primary);
}

.table__body {
  border-radius: 4px;
}

.palletDet__title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-primary);
}
.palletDet__title span {
  color: var(--accent);
  margin-left: 10px;
}

.palletDet-sell-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.palletDet-sell-btn {
  width: 50%;
  background-color: var(--accent-light);
  border: solid var(--border) 1px;
}
.palletDet-sell-btn:hover {
  background-color: var(--bg-mid);
  border: solid var(--accent-dark) 1px;
}
.pallet__details-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delete-pallet-td {
  width: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pallet-dlt {
  width: 100%;
  border-radius: 0 0 5px 5px;
  background-color: var(--alert);
}

.pallet-dlt:hover {
  background-color: #ff6656;
}

.itm_btns {
  display: flex;
  justify-content: space-around;
  /* align-items: center; */
}

.itm-dlt {
  background-color: #e74c3c;
}

.itm-dlt:hover {
  background-color: #ff6656;
}

.items-main {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.item-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.item-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

/* The following CSS is intended for the public facing site

  From this point on, there is a distinct difference between styling options 
  compared to the specific sections styled above

*/
/* Start of Landing page & Nav menu */
.landing-main {
  padding: 0;
}
.landing-body {
  color: #ffffff;
  background-image: none;
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  /* min-width: 100vw; */
}
.nav-sect {
  background-color: #ffffff;
  min-width: 100%;
  height: 6rem;
  position: fixed;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  z-index: +5;
}
.nav-menu-pc {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 100;
}
.nav-menu-mobile {
  display: none;
}
.nav-logo {
  height: 2.5rem;
  width: auto;
  /* box-shadow: rgb(46, 204, 113) 0px 20px 30px -10px; */
}
.nav-menu-pc ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-menu-pc li {
  margin: 0 1rem 0 1rem;
  border-bottom: 2px solid #707070;
  border-radius: 3px;
  /* box-shadow: 0 20px 45px 1px gray; */
  /* box-shadow: 0 4px 3px -2px gray; */
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.nav-menu-pc li:hover {
  margin: 0 1rem 0 1rem;
  border-bottom: 2px solid #2ecc71;
  border-radius: 3px;
  /* box-shadow: 0 4px 3px -2px #2ecc71; */
  box-shadow: rgb(46, 204, 113) 0px 20px 30px -10px;
}
.nav-menu-pc a {
  color: #707070;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.nav-menu-pc a:hover {
  color: #2ecc71;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.landing-hero {
  margin-top: 6rem;

  height: 48vh;
  display: grid;
  place-content: center;

  background-image: url(/../images/hero_main_4.jpg);
  background-position: center;
  background-size: cover;
  /* min-width: 100vh; */
  min-height: 100%;

  background-image: linear-gradient(
      180deg,
      hsla(145, 63%, 49%, 0.32),
      hsla(0, 0%, 10%) 100% /* #1a1a1a */
    ),
    url(/../images/hero_main_4.jpg);

  font-family: "Nunito Sans", sans-serif;
}
.landing-hero h1 {
  color: #ffffff;
  font-weight: 300;
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
}
.landing-hero span {
  color: #2ecc71;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.call-to-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}
.call-to-action a {
  /* background-color: #ffffff;
  color: #2ecc71; */
  background-color: #2ecc71;
  color: #ffffff;
  border-radius: 3px;

  min-width: 150px;
  margin: 15px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}
.call-to-action a:hover {
  /* background-color: #2ecc71;
  color: #ffffff; */
  background-color: #ffffff;
  color: #2ecc71;
  border-radius: 3px;

  min-width: 150px;
  margin: 15px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  text-transform: uppercase;

  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.contact-shop-route {
  background-color: #ffffff !important;
  color: #2ecc71 !important;
  font-weight: 600 !important;
  letter-spacing: 5px;
  padding: 25px;
  width: 40%;
  /* box-shadow: rgb(46, 204, 113) 0px 1px 2px 0px !important; */
  /* rgb(46, 204, 113) */

  box-shadow: rgb(46, 204, 113) 0px 7px 29px 0px !important;
}
.contact-shop-route:hover {
  background-color: #192024 !important;
  color: #ffffff !important;
  box-shadow: rgb(255, 255, 255) 0px 7px 29px 0px !important;
}
.call-to-action hr {
  width: 35%;
}
.cta-hero-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-hero h3 {
  /* color: #2ecc71; */
  color: #ffffff;
  font-weight: 100;
  text-transform: uppercase;
  text-align: center;
  display: grid;
  align-items: center;
  justify-items: center;
  letter-spacing: 1px;
}
.hero-img {
  width: 100%;
}
.end-hero {
  height: 5px;
  background-image: linear-gradient(to right, #7dd56f, #28b487);
  box-shadow: 0 4px 3px -2px #2ecc71;
}
/* END of Landing page & Nav menu */

/* Start of mission section */
.mission-body {
  padding: 5rem 0 5rem 0;
  color: #707070;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* min-width: 100vh; */
}
.mission-body * {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 100;
}
.mission-heading {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}
.mission-description {
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}
.mission-details {
  padding: 2rem;
  width: 95%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.mission-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mssn-outer-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  margin: 0 auto;

  border: 1px solid #2ecc71;
}
.mssn-det-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background-color: #2ecc71;
  margin: 0 auto;
}
.mssn-det-pic svg {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  color: #2ecc71;
}
.mssn-det-pic svg path {
  fill: white;
}
.mssn-det-tit {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  font-size: x-large;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 5px;
  margin: 2rem 0 1rem 0;
}
.mssn-det-des {
  /* width: 70%; */
  display: flex;
  justify-content: center;
  align-items: start;
  text-align: center;
  font-size: large;
  max-width: 25rem;
  height: fit-content;
  margin-bottom: 3rem;
}
/* END of mission section */

/* Start  of Services section */
.landing-services {
  background-color: #192024;
  width: 100%;
  padding: 5rem 0 5rem 0;
  /* min-width: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.srv-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.srv-heading * {
  padding: 1rem;
  text-align: center;
}
.srv-heading h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 2rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.srv-heading p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
}
.srv-details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 1rem;
}
.srv-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem;
  max-width: 25rem;
  text-align: center;
  height: 45rem;
}
.srv-card * {
  margin: 0.5rem;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
}
.srv-card p {
  letter-spacing: normal;
  text-transform: none;
  height: 18rem;
}
.srv-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.call-to-action a {
  /* background-color: #ffffff;
  color: #2ecc71; */
  background-color: #2ecc71;
  color: #ffffff;
  border-radius: 2px;

  min-width: 150px;
  height: 2rem;
  margin: 15px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
}
.call-to-action a:hover {
  /* background-color: #2ecc71;
  color: #ffffff; */
  background-color: #ffffff;
  color: #2ecc71;
  border-radius: 3px;

  min-width: 150px;
  margin: 15px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  text-transform: uppercase;

  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.srv-card-btn {
  border: 2px solid #2ecc71;
  border-radius: 3px;
  padding: 0.5rem;
  background-color: #192024;
  color: #2ecc71;
}
.srv-card-btn:hover {
  border: 2px solid #2ecc71;
  background-color: #2ecc71;
  color: #ffffff;
}
/* END of Services section */

/* Start of About Us section */
.about-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;

  width: 100%;
  height: auto;
  background-color: #ffffff;
}
.about-header {
  color: #707070;
  font-family: "Nunito Sans", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.about-header h2 {
  font-weight: 100;
}
.about-text {
  color: #707070;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 2rem;
}
.about-text p {
  text-align: left;
  margin: 1rem;
}
.about-det-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 90%;
}
.about-partners {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-partners * {
  margin: 0 2rem 0 2rem;
}
.about-partners img {
  width: 5rem;
}
.day-dynamics {
  width: 100px;
  height: auto;
}
.vl {
  border-left: 1px solid #707070;
  height: 4rem;
}
.signature-container {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 90%;
}
.signature-container hr {
  background-color: #000000;
  width: 20px;
  height: 3px;
}
/* END of About Us section */

/* Start of Footer section */
.landing-footer {
  width: 100%;
  height: 15rem;
  margin: 0;
  background-color: #192024;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: auto;
  bottom: 0;
}
.footer-img {
  max-height: 100%;
  width: 100%;
}
.footer-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80%;
  padding: 20px;

  display: flex;
  align-items: center;
}
.dev-signature {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  padding-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dev-signature * {
  text-transform: uppercase;
  color: #2ecc71;
  font-size: medium;
  font-weight: 100;
  letter-spacing: 5px;
}
.dev-signature a {
  font-weight: 700;
  text-decoration: underline;
}
.dev-signature a:hover {
  font-weight: 700;
  text-shadow: #2ecc71 1px 0 10px;
  text-decoration: none;
}
.jaydon-logo-clickable {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  margin-left: 5px;
}
.jaydon-logo {
  height: 25px;
}
.foot-socials-link {
  fill: #2ecc71;
}
.mssn-det-pic svg path {
  fill: white;
}
.footer-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 80%;
}
.footer-block * {
  margin: 1px 0 1px 0;
  color: #ffffff;
  text-align: center;
}
.left-foot h1 {
  font-weight: 700 !important;
  text-shadow: 3px 2px 1px #2ecc71, 1px 1px 15px #ccc;
  color: #ffffff;
}
.foot-socials-link svg {
  box-shadow: 0 10px 20px -2px #2ecc71;
}
.foot-socials-link svg:hover {
  box-shadow: none;
}
.left-foot {
  align-items: start;
}
.center-foot {
  align-items: center;
}
.right-foot {
  align-items: end;
}
.footer-block h1 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 100;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.footer-block p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.footer-link {
  font-weight: 600;
}
.footer-link:hover {
  font-weight: 600;
  text-shadow: 3px 2px 1px #2ecc71, 1px 1px 15px #ccc;
}
/* END of Footer section */

/* Start Of Contact PAGE */
.contact-body {
  color: #ffffff;
  background-image: none;
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
}
.contact-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-main {
  width: 100%;
  min-height: 100%;
  background-color: #ffffff;
}
.contact-page-hero {
  margin-top: 6rem;

  height: 24vh;
  display: grid;
  place-content: center;

  background-image: url(/../images/hero_main_4.jpg);
  background-position: center;
  background-size: cover;
  min-height: 100%;

  background-image: linear-gradient(
      180deg,
      hsla(145, 63%, 49%, 0.32),
      hsla(0, 0%, 10%) 100%
    ),
    url(/../images/hero_main_4.jpg);

  font-family: "Nunito Sans", sans-serif;
}
.contact-page-hero h1 {
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  text-align: center;
}
.contact-page-hero p {
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  text-align: center;
}
.contact-container {
  width: 100%;
  height: 100%;
  font-family: "Nunito Sans", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 2rem 0;
}
.contact-container h1 {
  text-transform: uppercase;
  font-weight: 300;
}
.contact-container p {
  text-transform: uppercase;
  font-weight: 200;
}

.contact-container * {
  color: #707070;
  font-family: "Nunito Sans", sans-serif;
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
}
.contact-form-input {
  width: 100%;
  height: 2rem;
  padding: 10px;
  border: 1px solid #d3d3d3;
}
.form-message {
  height: 10rem;
  overflow-wrap: break-word;
  resize: vertical;
}
.input-container {
  margin: 0.5rem 0 0.5rem 0;
  min-width: 80%;
}
.contact-form-button {
  width: 80%;
  margin: 0.5rem;
  border-radius: 2px;
  background-color: #2ecc71;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 300;
}

button.thar-three {
  color: #ffffff;
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
button.thar-three:hover {
  color: #ffffff !important;
  background-color: #27b161;
  box-shadow: #2ecc71 0px 5px, #6bd78e 0px 10px, #95e2aa 0px 15px,
    #baecc6 0px 20px, #ccf1d5 0px 25px;
  text-shadow: nthree;
}
button.thar-three:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
}
button.thar-three:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: "";
  color: #ffffff !important;
  background: #707070;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

/* Sellers information page */
.sellers-info-container {
  /* The top margin will need adjusted for mobile devices */
  margin-top: 6rem;
  padding: 1rem 0 1rem 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sellers-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 5rem;
  max-width: 90%;
}
.sellers-header * {
  text-align: center;
  color: #707070 !important;
}
.sellers-info-container h1 {
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
}
.sellers-info-container p {
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 200;
}
.sellers-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 2rem 0;
}
.sellers-block-content {
  max-width: 90rem;
  height: auto;
  padding: 1rem 3rem 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sellers-block-content img {
  width: 25rem;
  transform: translate(0, -5rem);
}
.img-disabled {
  display: none;
}
.sellers-block-content h1 {
  color: #2ecc71 !important;
}
.sellers-block-txt {
  width: 40%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  transform: translate(0, -2rem);
}
.sellers-target-audience {
  background-color: #192024;
  width: 100%;
}
.sellers-platform-desc {
  /* background-color: #2ecc71; */
  width: 100%;
}
.sellers-platform-desc * {
  color: #707070 !important;
}
.sellers-pitch {
  background-color: #192024;
  width: 100%;
}
.sallutation-header {
  height: fit-content;
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.sallutation-header-title {
  font-size: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50%;
  max-width: 100%;
  text-transform: uppercase;
}
.sall-divider {
  width: 20px;
}
.sallutation-inner-heading {
  border: 0px solid #ddd;
  height: 50px;
  line-height: 50px;
  font-size: 45px;
  text-transform: uppercase;
  overflow: hidden;
}
.sallutation-inner-heading span {
  position: relative;
  color: #2ecc71;
  animation: cycle 10s ease infinite;
}
.sall-disabled {
  display: none;
}
/* Animation for sellers salutation cycle */
@keyframes cycle {
  0%,
  100% {
    top: 0;
  }
  20% {
    top: 0;
  }
  25% {
    top: -50px;
  }
  45% {
    top: -50px;
  }
  50% {
    top: -100px;
  }
  70% {
    top: -100px;
  }
  75% {
    top: -150px;
  }
  95% {
    top: -150px;
  }
}
/* END OF Animation */

/* Start of Buyers page styling */
.buyers-info-container {
  width: 100%;
  height: 73vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
}
.buyers-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
}
.buyers-info-content {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.buyers-header h1 {
  text-transform: uppercase;
}
.buyers-header p {
  text-align: center;
  width: 80%;
}
.loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #707070;
  margin: 2rem;
}
.loader:before,
.loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}
.loader:after {
  color: #2ecc71;
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes spin {
  0%,
  100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}
.email-link {
  color: #2ecc71;
  text-decoration: underline;
}
/* END OF Start of Buyers page styling */

.sellers-salutation {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5rem 2rem 5rem 2rem;
}

.sellers-salutation p {
  text-align: center;
  width: 80%;
}

/* END OF Sellers sallutation */
/* END OF Sellers information page */

/* BUYER Marketplace HOME PAGE */
.market-begin {
  width: 100%;
  height: 5px;
  border: 0;
}
.mb1 {
  margin-top: 6rem;
  background-color: #2ecc71;
}
.mb2 {
  background-color: #7bf1c6;
}
.mb3 {
  background-color: #b8f3db;
}
.mb4 {
  background-color: #e8f9ec;
  /* background-color: red; */
  border-bottom-left-radius: 10px; /* Adjust the value as needed */
  border-bottom-right-radius: 10px; /* Adjust the value as needed */
}
.markethome-main {
  margin-top: 6rem;
  padding-top: 2rem;
  display: flex;
  align-items: start;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 90rem;
  /* background-color: var(--bg-mid); */

  position: relative;
}
.markethome-main * {
  width: 100%;
  height: 100%;
}
.filter-menu-left {
  height: 100%;
  padding: 10px;
  width: 300px;
}
.filter-menu-left h1 {
  text-transform: uppercase;
  font-weight: 100;
  /* color: #ffffff; */
  font-size: medium;
  margin-bottom: 10px;
}
.filter-menu-content {
  /* height: 260px; */
  height: 90%;
}
.filter-menu-content h1 {
  height: 25px;
}
.filter-options {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.filter-opt-item {
  display: flex;
  align-items: center;
  justify-content: start;
}
.filter-item-checkbox {
  width: fit-content;
  height: fit-content;
  margin-right: 10px;
  /* Styling */
  display: grid;
  place-content: center;
  border: solid var(--bg-mid) 1px;
}

.filter-item-checkbox::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--accent);
}
.filter-item-checkbox:checked::before {
  transform: scale(1);
}

.filter-options h3 {
  height: fit-content;
  font-size: medium;
  font-weight: 500;
  margin-top: 3px;
  margin-bottom: 3px;
}
.products-main {
  /* background-color: #f9f9f9; */
  /* border: solid #2ecc71 1px; */
  margin: 1px 5px 1px 5px;
  padding: 1px 5px 1px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-left: solid var(--accent-light) 1px;
}
.product-container {
  /* background-color: var(--bg-light); */
  width: 100%;
  height: fit-content;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.products-img {
  height: auto;
  width: 200px;
}
.products-details-main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 0 0px 0 15px;
  /* background-color: var(--bg-light); */
}
.product-sale-header {
  width: 100%;
  height: auto;
  color: var(--bg-darker);
}
.product-sale-header:hover {
  color: #2ecc71;
}
.product-pricing {
  display: flex;
  justify-content: start;
  align-items: center;

  width: 100%;
  height: fit-content;
}
.product-pricing * {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 400;
}
.product-sale-price {
  margin: 0 10px 0 0;
  color: var(--bg-dark);
}
.product-sale-price span {
  font-size: small;
  position: relative;
  top: -2px;
  font-weight: 500;
}
.product-sale-msrp {
  font-size: small;
}
.product-sale-msrp span {
  margin: 0 0 0 10px;
  text-decoration: line-through;
}
.product-call-to-action {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 5px 0 5px 0;
}
.product-call-to-action * {
  width: fit-content;
  height: 2rem;
  padding: 5px;
  font-size: smaller;
  border-radius: 2px;
}
.product-call-to-action button {
  color: var(--bg-dark);
}
.cta-spacer {
  margin: 0 5px 0 0;
}
.product-view-details {
  background-color: var(--accent);
  color: var(--bg-darkest);
  padding: 0 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.product-details {
  display: flex;
  justify-content: start;
  align-items: center;
}
.product-details-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: fit-content;
}
.product-details-block * {
  font-size: small;
  height: fit-content;
}
.product-details-block h4 {
  text-transform: uppercase;
  font-weight: 400;
  color: var(--accent-light);
}
.product-details-block h3 {
  font-weight: 400;
  width: fit-content;
  color: var(--accent);
}
.pagination-marketplace {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid #f9f9f9 1px;
  border-radius: 3px;
  width: fit-content;
  margin: 2rem 0 2rem 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.pagination-marketplace * {
  color: #707070;
  font-size: medium;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 1rem;
}
.pagination-marketplace a:hover {
  background-color: #2ecc71;
  color: #ffffff;
}
.pag-pg-nr-current {
  background-color: #2ecc71;
  color: #ffffff;
}
/* END OF BUYER Marketplace HOME PAGE */

/* SELLER Marketplace HOME PAGE */
.my-market-begin {
  width: 100%;
  height: 5px;
  border: 0;
}
.mb1 {
  margin-top: 6rem;
  background-color: #2ecc71;
}
.mb2 {
  background-color: #7bf1c6;
}
.mb3 {
  background-color: #b8f3db;
}
.mb4 {
  background-color: #e8f9ec;
  /* background-color: red; */
  border-bottom-left-radius: 10px; /* Adjust the value as needed */
  border-bottom-right-radius: 10px; /* Adjust the value as needed */
}

.my-markethome-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 90vh;
  width: 100%;
  background-color: var(--bg-mid);
  position: relative;
  padding: 8rem 2rem 2rem 2rem;
}
.my-markethome-main * {
  width: 100%;
  max-width: 1440px;
  height: 100%;
}
.my-products-content * {
  width: 100%;
  max-width: 1440px;
  height: 100%;
}
.my-products-content > div {
  border: solid var(--bg-dark) 1px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.list-item-container {
  background-color: var(--bg-mid);
  width: 100%;
  height: 100%;
}
.list-item-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 100%;
  background-color: var(--accent-dark);
  text-transform: uppercase;
  color: var(--text-primary);
  border-radius: 0 !important;
  border-top-left-radius: 3px !important;
  border-top-right-radius: 3px !important;
}
/* 
color: var(--text-primary);
background-color: var(--accent-dark);

hover
background-color: var(--accent);
  color: var(--bg-dark);
*/
.list-item-container a:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
}
.my-markethome-container {
  display: flex;
  align-items: start;
  justify-content: center;
  height: 100%;
  width: 100%;

  position: relative;
}
.my-markethome-container * {
  height: 100%;
  width: 100%;
}
.my-filter-menu-left {
  height: 100%;
  padding: 10px;
  width: 300px;
}
.my-filter-menu-left h1 {
  text-transform: uppercase;
  font-weight: 100;
  /* color: #ffffff; */
  font-size: medium;
  margin-bottom: 10px;
}
.my-filter-menu-content {
  /* height: 260px; */
  height: 90%;
}
.my-filter-menu-content h1 {
  height: 25px;
}
.my-filter-options {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.my-filter-options h3 {
  height: fit-content;
  font-size: medium;
  font-weight: 500;
  margin-top: 3px;
  margin-bottom: 3px;
}
.my-products-main {
  /* background-color: #f9f9f9; */
  /* border: solid #2ecc71 1px; */
  margin: 1px 5px 1px 5px;
  padding: 1px 5px 1px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-left: solid var(--accent-light) 1px;
}
.my-products-main > div {
  border: solid var(--bg-dark) 1px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.my-products-info-tab {
  width: 100%;
  padding: 10px 1rem;
  background-color: var(--bg-darker);
  margin-bottom: 1rem;
}
.my-products-info-tab * {
  font-size: medium;
  font-weight: 300;
}
.my-products-info-tab a {
  font-size: small;
  font-weight: 300;
  text-decoration: underline;
  color: var(--text-primary);
}
.my-products-info-tab a:hover {
  color: var(--accent);
}
.my-product-container {
  background-color: var(--bg-light);
  width: 100%;
  height: fit-content;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.my-products-img {
  height: auto;
  width: 200px;
}
.no-img-container {
  height: 50px;
}
.my-products-details-main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 0 0px 0 15px;
  background-color: var(--bg-mid);
  padding: 10px;
}
.my-product-sale-header {
  width: 100%;
  height: auto;
  color: var(--text-primary);
}
.my-product-sale-header:hover {
  color: #2ecc71;
}
.my-product-pricing {
  display: flex;
  justify-content: start;
  align-items: center;

  width: 100%;
  height: fit-content;
}
.my-product-pricing * {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 400;
}
.my-product-sale-price {
  margin: 0 10px 0 0;
  color: var(--text-secondary);
}
.my-product-sale-price span {
  font-size: small;
  position: relative;
  top: -2px;
  font-weight: 500;
}
.mpsp-vlaue {
  font-size: large !important;
  position: relative !important;
  top: 0px !important;
  font-weight: 300 !important;
  margin: 0 2px;
}
.my-product-sale-msrp {
  font-size: small;
}
.my-product-sale-msrp span {
  margin: 0 0 0 10px;
  text-decoration: line-through;
}

.my-product-discount h4 {
  font-weight: 400;
  font-size: small;
  letter-spacing: 0px;
  word-spacing: -2px;
  color: var(--text-drive);
}

.my-product-call-to-action {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 5px 0 5px 0;
}
.my-product-call-to-action * {
  width: 7rem;
  height: 2rem;
  padding: 5px;
  font-size: smaller;
  border-radius: 2px;
  margin: 0 5px 0 0;
}
.my-product-unlist {
  background-color: var(--alert);
  color: var(--bg-dark);
}
.my-product-unlist:hover {
  background-color: var(--alert-dark);
}
.my-product-sold {
  background-color: var(--accent);
  color: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
}
.my-product-sold:hover {
  background-color: var(--accent-dark);
}
.my-product-edit {
  background-color: var(--accent);
  color: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
}
.my-product-edit:hover {
  background-color: var(--accent-dark);
}
.my-product-details {
  display: flex;
  justify-content: start;
  align-items: start;
}
.my-product-details-block {
  display: flex;
  width: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 15px;
}
.my-product-details-block * {
  font-size: small;
  height: fit-content;
}
.my-product-details-block h4 {
  text-transform: uppercase;
  font-weight: 400;
  color: var(--accent-light);
}
.my-product-details-block h3 {
  font-weight: 400;
}
.pagination-my-marketplace {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid #f9f9f9 1px;
  border-radius: 3px;
  width: fit-content;
  margin: 2rem 0 2rem 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.pagination-my-marketplace * {
  color: #707070;
  font-size: medium;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 1rem;
}
.pagination-my-marketplace a:hover {
  background-color: #2ecc71;
  color: #ffffff;
}
/* END OF SELLER Marketplace HOME PAGE */

/* START Of My Queue Page */

.my-queue-main {
  margin-top: 6rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  min-height: 90vh;
  width: 100%;
  background-color: var(--bg-mid);
}
.empty-queue-notif {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.empty-queue-notif img {
  height: 100px;
  width: auto;
}
.eqn-header {
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 300;
}
.eqn-info {
  color: var(--text-primary);
  font-weight: 300;
}
.eqn-info a {
  color: var(--accent-light);
  text-decoration: underline;
}
.eqn-info a:hover {
  color: var(--text-primary);
  text-decoration: none;
}
.mpq-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mpq-header h1 {
  color: var(--accent);
  font-weight: 100;
}
.mpq-hdr-divider {
  /* background-color: var(--accent); */
  height: 1px;
  width: 90%;
  border: solid var(--accent) 1px;
  border-bottom-left-radius: 500px 100px;
  border-bottom-right-radius: 500px 100px;
}
.mpq-container {
  width: 95%;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--bg-darker);
  border-radius: 3px;
}
.mpq-filter-container {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
}
.mpq-f-radio {
  padding: 0 1rem 0 1rem;
}
.mpq-f-radio h4 {
  width: fit-content;
}
.mpq-main-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-darker);
  margin-top: 1rem;
  padding-top: 10px;
  border-top: solid var(--accent) 1px;
}
.mpq-main-content * {
  width: 95%;
}
.mpq-control-selector {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.mpq-card {
  background-color: var(--bg-dark);
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  border-radius: 3px;
}
.mpq-card * {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.mpq-c-header-lot {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mpq-c-header {
  height: 100%;
  width: 100%;
  padding: 0;
  background-color: var(--bg-darkest);
}
.mpq-c-header-lot {
  color: var(--accent) !important;
  padding-bottom: 0;
  font-weight: 300;
}
.mpq-c-header-hr {
  height: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mpq-c-header-hr hr {
  height: 1px;
  width: 40%;
  border: none;
  border-bottom: solid var(--accent) 1px;
  padding-top: 0;
}
.mpq-c-subHeader h4 {
  padding: 10px 0 10px 0;
  border-left: solid var(--bg-light) 1px;
  border-right: solid var(--bg-light) 1px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: start;
}
.mpq-c-subHeader {
  display: flex;
  justify-content: start;
  align-items: center;
}
.mpq-c-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 0;
}
.mpq-c-btn {
  width: 100%;
  border-radius: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--bg-mid);
  background-color: var(--accent);
}
.mpq-c-btn:hover {
  background-color: var(--accent-dark);
}
/* END Of My Queue Page */

/* List This Product Page */

.listThis-main {
  width: 100%;
  height: 100%;
  min-height: 90vh;
  margin-top: 6rem;
  padding-top: 1rem;
  background-color: var(--bg-mid);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.lt-main-content {
  width: 95%;
  max-width: 2000px;
  height: 100%;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.lt-header {
  background-color: var(--bg-darkest);
  margin-bottom: 0;
  border-bottom: solid var(--accent) 1px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 0 2em;
}
.lt-header h1 {
  color: var(--text-primary);
  font-weight: 300;
}
.lt-subheader {
  display: flex;
  justify-content: start;
  align-items: center;
}
.lt-subheader * {
  font-weight: 400;
}
.lt-subheader span {
  color: var(--accent);
  margin-left: 5px;
  font-size: small;
}
.lt-image-container {
  margin-top: 10px;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: 10px;
  /* border-bottom: solid var(--accent) 1px; */
}
#list-drop-area {
  min-width: 450px;
  min-height: 400px;
  padding: 10px;
  background-color: var(--bg-dark);
  text-align: center;
  border-radius: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
}
.lt-image-main {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  margin: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  padding: 5px;
  /* justify-content: center;
  align-items: center; */
}
.lt-image-main img {
  height: auto;
  width: 100%;
}
.lt-image-preview {
  margin: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  padding: 5px;
}
#list-img-view {
  width: 100%;
  height: 100%;
  min-width: 440px;
  min-height: 400px;
  border-radius: 10px;
  border: dashed var(--accent) 1px;
}
.list-img-view-container {
  background-position: center center;
  background-size: cover;
}
.list-img-view-container img {
  height: 100px;
  width: auto;
  margin-top: 20px;
}
.lt-image-preview img {
  height: auto;
  width: 100%;
}
.lt-image-img-container {
  background-color: var(--bg-darker);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.lt-img-src {
  display: none !important;
}
.lt-prod-id {
  display: none !important;
}
.lt-image-delete {
  background-color: var(--alert);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: var(--text-primary);
  border-radius: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.lt-image-delete:hover {
  background-color: var(--alert-dark);
}

.lt-image-confirm-upload {
  background-color: var(--accent);
  width: 100%;
  padding: 5px;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  display: none;
}
.lt-image-confirm-upload a {
  color: var(--bg-darker);
  font-weight: 500;
  text-transform: uppercase;
}

.lt-details-main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  padding: 15px;
}
.lt-details-form-section {
  /* background-color: var(--bg-darker); */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  /* padding: 0 15px; */
  border-radius: 3px;
}
.lt-df-header {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  background-color: var(--bg-darkest);
  color: var(--text-primary);
}
.lt-details-form-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
  background-color: var(--bg-darker);
  padding: 15px;
}
.ltd-product-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.ltd-product-form * {
  width: 100%;
}
.ltd-product-form label {
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  padding: 0 10px;
  font-size: large;
}
.ltd-product-form h4 {
  background-color: var(--bg-darkest);
  color: var(--accent);
  padding: 0 10px;
  font-weight: 300;
  font-size: small;
}
.ltd-pf-inputBox {
  padding: 5px;
  background-color: var(--bg-dark);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ltd-product-form input {
  background-color: var(--bg-mid);
  border: none;
  padding: 10px 10px;
  color: var(--text-primary);
}
.ltd-product-form input:focus {
  outline: none;
  border-bottom: solid var(--accent) 1px;
}
.ltd-pf-nested {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.ltd-pf-block {
  width: 100%;
  margin: 10px 0 10px 0;
}
.ltd-pf-blabel {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.ltd-pf-block input {
  height: 25px;
}
.ltd-pc-disabled {
  color: var(--text-muted) !important;
}
.ltd-pf-features {
  margin-bottom: 10px;
}
.ltd-pf-features_description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ltd-pf-features_description h4 {
  min-height: 50px;
}
.ltd-pf-features_description input {
  min-height: 100px;
}
.ltd-divider {
  width: 95%;
  border: none;
  border-bottom: solid var(--accent) 1px;
  margin: 10px 0;
}
.list-this-control {
  display: grid;
  width: 95%;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.list-this-btn {
  border-radius: 3px;
  padding: 5px;
  background-color: var(--accent);
  color: var(--bg-dark);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  margin-bottom: 15px;
}
.list-this-btn:hover {
  box-shadow: rgb(46, 204, 113) 0px 5px 30px -10px;
}
.existing-feature-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: var(--bg-darker);
  padding: 10px;
}
.existing-feature-block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content !important;
  margin: 5px;
  /* border: solid var(--accent) 1px; */
}
.existing-feature-block:first-of-type {
  margin-left: 0;
}
.existing-feature {
  color: var(--text-primary) !important;
  min-height: 30px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-light) !important;
}
.existing-feature-remove {
  /* color: var(--bg-darker);
  background-color: var(--accent); */
  background-color: var(--bg-mid);
  color: var(--accent);
  display: flex;
  width: 20px;
  min-height: 30px !important;
  justify-content: center;
  align-items: center;

  padding: 0;
  border-radius: 0;
}
.existing-feature-remove:hover {
  /* background-color: var(--bg-mid);
  color: var(--accent); */
  color: var(--bg-darker);
  background-color: var(--accent);
}
.ltd-product-features {
  margin-top: 10px;
  width: 100% !important;
  min-height: 15px !important;
  height: 15px;
}
.add-feature-btn {
  padding: 3px;
  border-radius: 0;

  width: 100%;
  background-color: var(--accent);
  color: var(--bg-dark);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.add-feature-btn:hover {
  background-color: var(--bg-darker);
  color: var(--accent);
}
/* END OF List This Product Page */

/* Marketplace SALE */

.sale-main {
  margin-top: 7rem; /* space below navbar, adjust as needed */
  margin-bottom: 7rem; /* space above footer, adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(
    100vh - 14rem
  ); /* ensures content fits between navbar and footer */
}
.back-to-marketplace {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 55rem;
  margin-bottom: 10px;
}
.back-to-marketplace a {
  color: var(--accent);
  font-size: x-large;
  text-decoration: underline;
  text-transform: uppercase;
}
.sale-main section {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.carousel {
  width: 100%;
  max-width: 1000px;
  height: 500px; /* Fixed height for visible images */
  position: relative;
}
.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
}
.slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}
.carousel-btn {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  font-size: 4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-light);
  cursor: pointer;
  border-radius: 0.25rem;
  padding: 0 0.5rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.carousel-btn:hover,
.carousel-btn:focus {
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}
.carousel-btn:focus {
  outline: 1px solid black;
}
.carousel-btn.prev-btn {
  left: 1rem;
}
.carousel-btn.next-btn {
  right: 1rem;
}
.market-sale-no-imgs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.market-sale-no-imgs h1 {
  text-transform: uppercase;
  font-weight: 300;
}
.market-sale-no-imgs img {
  height: 100px;
  width: auto;
  margin: 10px;
}

.sale-display {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 2rem;
}
.sale-informational {
  padding: 5px 40px 5px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 800px;
}
.sale-header {
  color: #192024;
}
.sale-split {
  background-color: #192024;
  width: 100%;
}
.sale-price {
  display: flex;
  justify-content: start;
  align-items: center;
}
.sale-price h4 {
  margin-right: 5px;
  color: #cc0c39;
  font-weight: 400;
}
.sale-price h3 {
  color: #192024;
  font-weight: 700;
}
.sale-price h3 > span {
  font-size: large;
  position: relative;
  font-weight: 500;
}
.sale-msrp {
  font-weight: 400;
  font-size: smaller;
}
.sale-msrp span {
  color: #192024 !important;
  font-weight: 400;
  font-size: smaller;
  text-decoration: line-through;
}
.sale-list-timestamp h4 {
  /* color: #192024; */
  font-weight: 500;
}
.sale-about-this h3 {
  color: #192024;
}
.sale-description h2 {
  color: #192024;
}
.sale-direct-contact {
  height: 200px;
}
.sale-direct-contact h2 {
  color: #192024;
}
.sale-direct-contact h3,
.sale-direct-contact h4 {
  color: #27b161;
  font-weight: 500;
}
.sale-direct-contact h4 {
  margin-bottom: 10px;
}
.sale-direct-contact a {
  background-color: var(--accent);
  padding: 5px 10px;
  color: var(--bg-mid);
  border-radius: 3px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.sale-direct-contact img {
  margin-left: 5px;
  height: 15px;
  width: auto;
  transform: translateY(-2px);
}
.sale-direct-contact p {
  margin-top: 10px;
  width: 30rem;
}
/* END OF Marketplace SALE */

/* Media queries for landing page mobile support */
@media only screen and (max-width: 840px) {
  .nav-sect {
    background-color: #ffffff;
    min-width: 100%;
    height: 3rem;
    position: fixed;
  }
  .landing-hero {
    margin-top: 3rem !important;
  }
  .nav-menu-pc {
    display: none;
  }
  .nav-menu-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  .nav-logo-mobile {
    /* height: 3rem;
    width: auto;

    position: fixed;
    right: 6.5rem; */
    height: 2.5rem;
    width: auto;
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  #menuToggle {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 5px;
    left: 25px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
  }
  #menuToggle input {
    display: flex;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
  }
  #menuToggle ul {
    list-style-type: none;
  }
  #menuToggle span {
    display: flex;
    width: 29px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #707070;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }
  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }
  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #36383f;
  }
  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }
  #menu-in-nav {
    position: absolute;
    width: 225px;
    height: 400px;
    box-shadow: 0 0 10px #85888c;
    margin: -50px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  #menu-in-nav li {
    padding: 10px 0;
    transition-delay: 2s;
  }
  #menu-in-nav li a {
    color: #707070;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-decoration: none;
  }
  #menuToggle input:checked ~ ul {
    transform: none;
  }
  .landing-hero h1 {
    font-size: 2rem;
  }
  .landing-hero h3 {
    font-size: 0.9rem;
  }
  .srv-card p {
    height: fit-content;
  }
  .landing-footer {
    height: 25rem;
  }
  .footer-info {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
  .footer-block {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin: 0 0 0.5rem 0;
  }
  .dev-signature * {
    font-size: small;
  }

  /* Login form */
  .main-login {
    padding: 5rem 2rem 2rem 2rem;
  }
  .login-form {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .heading-secondary {
    font-size: medium;
    text-align: center;
  }
  .form--login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .form__group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* END OF Login form */

  /* Contact page */
  .contact-page-hero {
    margin-top: 3rem;
  }
  /* END OF Contact page */
}

@media only screen and (max-width: 800px) {
  .sellers-block-content {
    flex-direction: column;
  }
  .sellers-block-txt {
    width: 90%;
  }
  .img-disabled {
    display: inline-block;
  }
  .img-enabled {
    display: none;
  }
  .sallutation-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
  .sall-divider,
  .sallutation-inner-heading {
    display: none;
  }
  .sall-disabled {
    display: inline-block;
    border: 0px solid #ddd;
    height: 50px;
    line-height: 50px;
    font-size: 45px;
    text-transform: uppercase;
    overflow: hidden;
  }
  .sallutation-inner-heading span {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sallutation-header-title {
    width: 100%;
    text-align: center;
  }
  .sellers-block-content img {
    width: 15rem;
  }
  .buyers-header {
    margin-top: 11rem;
  }
}
/* END OF Media queries for landing page mobile sup
  .filter-options {
  }port */
