.portfolio__header--desktop {
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  padding-top: 3rem;
  background-color: #f5f5f5;
}

.portfolio__header--mobile {
  display: none;
}

.portfolio__nav ul {
  display: flex;
  align-items: center;
  height: 100%;
}

.portfolio__nav li + li {
  margin-left: 20px;
}

.portfolio__main--title {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  padding: 48px 0;
  background-color: #f5f5f5;
}

.portfolio__main--content {
  width: 80%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.portfolio__main--aside {
  flex: 0 0 25%;
  max-width: 25%;
}

.portfolio__deck {
  flex: 0 0 75%;
  max-width: 75%;
}

.portfolio__brandList {
  padding-right: 48px;
}

.portfolio__brandListItem {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(179, 179, 179, 0.2);
}

.portfolio__brandListItem:last-child {
  border-bottom: 0;
}

.portfolio__brandListLink {
  cursor: pointer;
  display: block;
}

.portfolio__brandListLink:hover {
  color: #8d8d8d;
}

.portfolio__decktitle {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 32px;
  color: #8d8d8d;
}

.portfolio__deckcard {
  min-height: 250px;
  box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05), 0 15px 40px rgba(166, 173, 201, 0.08);
  border-radius: 4px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  padding-left: 3rem;
}

html,
body {
  overflow-x: hidden;
  height: 100%;
}

#sidebarMenu {
  height: 100%;
  position: fixed;
  right: 0;
  width: 250px;
  transform: translateX(250px);
  transition: transform 250ms ease-in-out;
  background: #FFE4F0;
  top: 0;
  padding-top: 80px;
  z-index: 1;
}

input[type=checkbox]:checked ~ #sidebarMenu {
  transform: translateX(0);
}

input[type=checkbox] {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}

.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 38px;
  right: 15px;
  height: 22px;
  width: 22px;
}

.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #383838;
}

.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}

.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -9px;
}

@media screen and (max-width: 480px) {
  .portfolio__header--desktop {
    display: none;
  }

  .portfolio__header--mobile {
    display: block;
    padding: 10px 0;
    background-color: #f5f5f5;
  }

  .portfolio__brandList {
    padding-right: 0;
  }

  .portfolio__brandListItem {
    padding: 16px 24px;
  }

  .header--contact li {
    font-size: 18px;
    padding: 16px 24px;
  }

  .textcontent--logo {
    margin: 15px 0 0 15px;
  }

  .portfolio__main--aside {
    display: none;
  }

  .portfolio__main--title {
    font-size: 2rem;
  }

  .portfolio__decktitle {
    font-size: 20px;
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*----- Common styles -----*/
body {
  font-family: "Roboto", sans-serif;
  background-color: #fbfbfb;
}

.bg-white {
  background-color: white !important;
}

.overflow-y-auto {
  overflow-y: auto;
}

.mobile-width {
  width: 360px;
  margin: 50px auto;
  border: 1px solid #d2d2d2;
}

a {
  text-decoration: none;
  color: black;
}

.section-card {
  margin: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.07);
  background: white;
}

.card-header {
  display: grid;
  grid-template-columns: 30px 7fr 2fr;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  padding: 20px;
  align-items: center;
}

.illustration {
  text-align: center;
  margin-bottom: 30px;
}

button.bottom-button {
  font-family: "Roboto", sans-serif;
  width: 100%;
  padding: 20px;
  color: black;
  background-color: #efbeca;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-weight: 400;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 360px;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 1em 0;
  padding: 0;
}

.grey-button {
  font-family: "Roboto", sans-serif;
  margin: 10px 20px;
  background-color: #f2f2f2;
  border: 1px solid #f2f2f2;
  padding: 8px;
}

.brand-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #efbeca;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid #efbeca;
}

.full-width {
  width: 100% !important;
}

.alert-danger {
  text-align: center;
  font-size: 12px;
  margin: 20px 10px;
  padding: 10px 0;
  border-radius: 4px;
  color: #fb3333;
  background-color: #ffe6e6;
  border: 0.5px solid #fb3333;
}

.alert-success {
  text-align: center;
  font-size: 12px;
  margin: 20px 10px;
  padding: 10px 0;
  border-radius: 4px;
  color: #009900;
  background-color: #d9ffd9;
  border: 0.5px solid #009900;
}

/*----- Typography -----*/
.body-text {
  font-size: 10px;
}

.header-text {
  font-size: 16px;
  font-weight: 500;
}

.light-text {
  font-weight: 300;
}

.selected {
  color: #efbeca !important;
}

/*----- Empty State -----*/
.empty-state {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  min-width: 100%;
}

.empty-state a {
  font-size: 14px;
  color: #f22973;
}

/*----- Splash screen styles -----*/
.splash-screen {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*----- Top title bar, navbar, menubar and bottom menu bar styles -----*/
.navbar {
  padding: 20px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 8px 6px -6px rgba(112, 112, 112, 0.2);
  z-index: 10;
}

.options-icon .fa-bars::before {
  color: #8d8d8d;
}

.navbar > form.search-form {
  width: 50%;
  margin-left: 10px;
}

input.search-bar {
  color: #8d8d8d;
  width: 80%;
  border: 0.5px solid rgba(141, 141, 141, 0.3);
  border-radius: 8px;
  padding: 6px 10px;
}

.menu-bar {
  position: sticky;
  top: 73px;
  background: #fff;
  z-index: 10;
}

.menu-bar ul {
  display: flex;
  align-items: center;
  background: white;
}

.menu-bar li {
  width: calc(25% - 1px);
  text-align: center;
  border-right: 1px solid rgba(112, 112, 112, 0.2);
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-bar li a {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #8d8d8d;
  font-size: 12px;
  font-weight: 500;
}

.menu-bar li.highlight {
  background-color: #efbeca;
}

.menu-bar li.highlight a {
  color: black;
  font-weight: 500;
}

.menu-bar li:last-child {
  border-right: 0;
  width: 25%;
}

.menu-bar li.empty-list {
  border-bottom: 0;
}

.in_app.menu-bar {
  top: 63px;
}

.in_app.menu-bar li,
.in_app.menu-bar li:last-child {
  width: calc(100% / 2);
}

.menu-bar.bottom {
  position: sticky;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 360px;
}

.menu-bar.bottom ul li a.active {
  color: #efbeca;
  font-weight: 700;
}

/*----- styles for page - http://limesebiz.localsvr.dev/ -----*/
/*----- Common hompepage styles -----*/
.shop-by-brand-body {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px;
}

.brand-container p {
  margin-top: 5px;
  text-align: center;
}

.star-products.section-card {
  box-shadow: none;
}

.star-products-flex {
  display: flex;
  background-color: #fdfdfd;
}

.star-product-1image {
  flex-basis: 50%;
  flex-grow: 1;
  margin-right: 3px;
}

.star-product-2image {
  flex-basis: 50%;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
}

.star-products-flex .star-product-listing {
  position: relative;
}

.star-products-flex .star-product-listing .product-title {
  position: absolute;
  top: 20px;
  display: block;
  text-align: center;
  width: 100%;
}

.star-product-listing.image3 {
  margin-top: 3px;
}

.category-title {
  margin: 20px;
}

.homescreen-v2 .features {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.homescreen-v2 .feature-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  line-height: 14px;
}

.homescreen-v2 .v2-category-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: -10px;
}

.section-card.category {
  margin: 10px 5px 10px 0;
  padding: 15px 8px;
}

.category i {
  float: right;
}

/*------ No logged in styles -----*/
.login-prompt {
  margin: 20px;
  padding: 1rem;
  background: white;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.login-prompt h4 {
  font-size: 18px;
  font-weight: normal;
  margin: 1rem 0 0.5rem;
  text-align: center;
}

.login-prompt .login-button {
  font-size: 14px;
  display: block;
  margin: 1rem 0 0.75rem;
  text-align: center;
  padding: 0.75rem 0;
  background-color: #efbeca;
  color: black;
  font-weight: 400;
}

.login-prompt .login-button:active {
  transform: scale(0.9);
}

.login-prompt p {
  font-size: 12px;
  color: #707070;
  text-align: center;
  line-height: 1.2;
}

.login-prompt .contact-text {
  font-size: 14px;
  text-align: left;
}

.login-prompt .contact-link {
  display: inline-block;
  margin: 0 0.25rem;
  color: #efbeca;
}

.login-prompt .contact-link:hover,
.login-prompt .contact-link:active {
  opacity: 0.8;
}

/*----- Logged in styles -----*/
.features {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.feature-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  line-height: 14px;
}

.billing-body {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  text-align: center;
}

.billing-division {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.billing-division + .billing-division {
  border-left: solid 1px rgba(141, 141, 141, 0.2);
}

.billing-body h6 {
  font-weight: 300;
  color: #8d8d8d;
  padding-top: 10px;
  padding-bottom: 10px;
}

.billing-body p {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*----- 
    styles for pages
    1. https://limesebiz.localsvr.dev/seller/login
    2. https://limesebiz.localsvr.dev/seller/verify
-----*/
/*----- User login and phone number verification styles -----*/
.mobile-width.phone-input,
.mobile-width.phone-verification {
  background-color: white;
  padding-bottom: 100px;
  margin-top: 100px;
}

.phone-input h3,
.phone-verification h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.phone-input p,
.phone-verification p {
  max-width: 290px;
  text-align: center;
  margin: auto auto 50px;
  font-weight: 400;
  color: #707070;
  line-height: 21px;
}

.phone-verification p {
  margin-bottom: 20px;
}

.phone-input .phone-number {
  text-align: center;
  max-width: 182px;
  margin: auto;
}

.phone-input .phone-number label {
  font-size: 20px;
  color: #8d8d8d;
  line-height: 27px;
  max-width: 41px;
}

.phone-input .phone-number input[type=number] {
  border: none;
  font-size: 20px;
  line-height: 27px;
  font-weight: 300;
  max-width: 140px;
}

.phone-input .phone-number input[type=number]::-webkit-inner-spin-button,
.phone-input .phone-number input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.phone-input .phone-number input[type=number] {
  -moz-appearance: textfield;
}

a.alert-link {
  display: block;
  text-align: center;
  color: #ef013c;
  font-size: 12px;
}

.phone-verification input[type=number]::-webkit-inner-spin-button,
.phone-verification input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.phone-verification .otp-verify {
  text-align: center;
}

.phone-verification input[type=number] {
  -moz-appearance: textfield;
  border: 0;
  border-bottom: 1px solid #313131;
  height: 30px;
  width: 20px;
  margin: 10px;
  text-align: center;
}

.otp-box {
  width: 80px !important;
  letter-spacing: 10px;
  font-size: 14px;
  font-weight: bold;
  padding-left: 20px;
  padding-right: 10px;
}

/*----- Profile Setup Page -----*/
.mobile-width.setup-profile {
  background-color: white;
}

.setup-profile .illustration {
  margin-bottom: 50px;
}

.setup-profile h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #313131;
  margin-bottom: 20px;
}

.setup-profile p {
  max-width: 290px;
  text-align: center;
  margin: auto auto 50px;
  font-weight: 400;
  color: #707070;
  line-height: 21px;
}

.setup-profile .profile-info {
  display: flex;
  align-items: center;
  padding-left: 25px;
}

.setup-profile .info-box {
  width: 100%;
  height: 30px;
  margin-left: 20px;
  border: 0;
}

.setup-profile .info-box:focus {
  outline: 0;
  border: 0;
}

/*----- Catalog Page Styles -----*/
.catalog {
  min-height: 85vh;
  background-color: #f4f4f4;
}

.catalog .header {
  display: flex;
  align-items: center;
  padding: 20px;
  position: sticky;
  top: 73px;
  background: #fff;
}

.catalog .header h4 {
  margin-left: 5px;
}

.catalog .catalog-list {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.catalog .catalog-item {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.catalog .item-icon img {
  margin-top: -20px;
  margin-right: 10px;
}

.catalog .item-description {
  margin-left: 10px;
}

.catalog .item-description h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.catalog .item-description p {
  line-height: 15px;
  color: #8d8d8d;
}

/*----- Product Listing -----*/
.product-list .menu-bar ul li {
  width: calc(50% - 1px);
}

.product-list .menu-bar ul li:last-child {
  width: 50%;
}

.product-list .menu-bar {
  top: 63px;
}

.product-list .menu-bar ul li a {
  font-weight: 700;
  color: #707070;
  font-size: 14px;
}

.product-list .menu-bar ul li:first-child a {
  cursor: default;
  pointer-events: none;
}

.product-list .filter-title {
  color: #8d8d8d;
  margin: 10px 20px;
}

.product-container {
  display: flex;
  border-bottom: 1px solid #c9c9c9;
  margin-bottom: 3px;
}

.product-description a {
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.product-description .product-title {
  font-size: 16px;
  font-weight: 500;
  color: #313131;
  margin-top: 10px;
}

.product-description .brand-name {
  font-size: 12px;
  font-weight: 400;
  color: #8d8d8d;
  margin-top: 15px;
  margin-bottom: 15px;
}

.product-description .additional-data {
  display: flex;
  justify-content: space-between;
}

.product-description .stock-count {
  font-size: 12px;
  font-weight: 400;
  color: #8d8d8d;
}

.product-description .stock-count.empty {
  color: #f22973;
}

.product-description .price {
  margin-top: 15px;
}

.product-description .price > .current-price {
  font-weight: 500;
  font-size: 12px;
  color: #313131;
}

.product-description .price > .mrp {
  margin-left: 5px;
  display: inline-block;
  padding: 6px 10px 4px;
  font-size: 10px;
  font-weight: 500;
  color: white;
  background-color: #efbeca;
}

.filter .header {
  background-color: white;
  padding: 15px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.filter .header h3 {
  font-size: 20px;
  font-weight: 500;
}

.filter .header p {
  font-size: 12px;
  color: #707070;
}

.filter-container {
  display: grid;
  grid-template-columns: 40% 60%;
  margin-top: 3px;
}

.filter-container .filter-options {
  min-height: 85vh;
  background-color: #f4f4f4;
}

.filter-container .filter-options li {
  padding: 20px 10PX;
  font-size: 14px;
  font-weight: 400;
  color: #313131;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-container .filter-options li .fa {
  font-size: 14px;
  background-color: #fff;
  color: #efbeca;
  border-radius: 50%;
}

.filter-container .filter-options .filtered {
  font-weight: 700;
  background-color: white;
}

.filter-container .filter-results {
  min-height: 500px;
  background-color: white;
  padding-left: 25px;
  padding-top: 20px;
}

.filter-container .filter-results li {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 300;
}

.filter-container .filter-results li label {
  margin-left: 5px;
}

.filter .filter-bottom-navbar {
  background-color: white;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #c9c9c9;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 360px;
}

.filter .filter-bottom-navbar button {
  flex: 1 1 auto;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  font-weight: 400;
  display: block;
  background-color: #fff;
}

.filter .filter-bottom-navbar button.close {
  border-right: 1px solid #c9c9c9;
}

.filter .filter-bottom-navbar button.apply {
  color: #21947a;
}

/*----- Quick Order Page -----*/
.quick-order .header {
  background-color: white;
  padding: 15px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.quick-order .header h3 {
  font-size: 20px;
  font-weight: 500;
}

.quick-order .header p {
  font-size: 12px;
  color: #707070;
}

.quick-order .order-bottom-navbar {
  border-top: 1px solid #c9c9c9;
  background-color: white;
  text-align: center;
  padding: 20px;
  position: sticky;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 360px;
  margin: 0 auto;
}

.order-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-top: 3px;
}

.order-container .order-options {
  min-height: 83vh;
  background-color: #f4f4f4;
}

.order-container .order-options li a {
  display: block;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: #313131;
}

.order-container .order-options .ordered {
  font-size: 12px;
  font-weight: 700;
}

product-add > i {
  color: #DDD;
}

.product-add.selected > i {
  color: #EFBECA !important;
}

.order-container .order-options .ordered.selected {
  background-color: white;
}

.order-container .order-results {
  min-height: 500px;
  background-color: white;
}

.order-container .order-results .no-result {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.order-container .product {
  margin: 15px 10px;
  padding-bottom: 10px;
  display: grid;
  grid-template-columns: 200px auto;
  border-bottom: 1px solid #c9c9c9;
}

.order-container .product h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-right: 5px;
}

.order-container .product p {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}

.order-container .product p > .stock-count {
  float: right;
  padding-right: 5px;
}

.order-container .product p > .stock-count.empty {
  color: #f22973;
}

.order-container .product-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.order-container .product-add i {
  font-style: normal;
  font-size: 15px;
  color: #E5E5E5;
}

.order-container .product-add span {
  font-size: 7px;
}

.quick-order .order-bottom-navbar a {
  color: #21947a;
}

/*----- Accounts Page -----*/
.mobile-width.account {
  height: 560px;
}

.account-operations {
  min-height: 80vh;
}

.account .header-text {
  font-size: 16px;
  font-weight: 300;
  color: #313131;
}

.account .account-option a {
  display: block;
  font-size: 14px;
  padding: 17px 30px 17px;
  border-bottom: 1px solid #e0e0e0;
}

.account .account-option:last-child {
  border-bottom: 0;
}

/*----- Orders Statuses -----*/
.status-pending-confirmation {
  color: rgba(255, 179, 0, 0.75);
}

.status-confirmed {
  color: #3fc380;
}

/*----- Orders Page -----*/
.mobile-width.orders {
  height: 560px;
}

.orders .header-text {
  font-size: 16px;
  font-weight: 300;
}

.order-main {
  min-height: 85vh;
}

.orders .order-list h3 {
  font-size: 16px;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.orders .order-list h3.order-name {
  max-width: 150px;
  font-size: 10px;
  font-weight: 300;
  line-height: 14px;
  border-bottom: 0;
}

.orders .order-list p {
  float: right;
  font-weight: 700;
  font-size: 14px;
  margin-top: -33px;
  padding-right: 14px;
}

.orders .order-list p.order-count {
  font-size: 10px;
}

.orders .grey-button {
  width: 100%;
  margin: 0;
  color: #8d8d8d;
}

/*----- Order Details Page -----*/
.order-details-main {
  min-height: 85vh;
}

.order-details .sub-text {
  padding: 10px 15px;
  line-height: 14px;
}

.order-details .card-header {
  border-bottom: 0;
}

.order-details .header-text {
  font-size: 16px;
  font-weight: 300;
}

.section-card.user-info {
  padding: 15px;
}

.order-details .user-name {
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

.order-details .user-address {
  font-size: 12px;
  font-weight: 300;
  color: #313131;
  margin-bottom: 10px;
  line-height: 16px;
}

.order-details .user-number {
  font-size: 12px;
  font-weight: 300;
}

.order-details .user-number i {
  color: #8d8d8d;
  margin-right: 10px;
}

.section-card.payment-details {
  padding: 15px;
}

.payment-details .payment-details-table {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
  width: 100%;
}

.payment-details-table td {
  padding: 5px 0;
}

.payment-details-table td:nth-child(2n) {
  text-align: right;
}

.payment-details-table td.bold-text {
  font-weight: 700;
}

.payment-details-table td.yellow-text {
  color: #ffb300;
}

.order-details section p:first-child {
  color: #8d8d8d;
}

/*----- Items Page -----*/
.items-listing {
  min-height: 85vh;
}

.items-listing .section-card {
  padding: 15px;
}

.items-listing .section-card:last-child {
  padding: 15px;
}

.items-listing .section-card p:first-child {
  font-size: 9px;
  color: #8d8d8d;
  line-height: 12px;
}

.items-listing .section-card h3 {
  font-weight: 500;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.items-listing table {
  width: 100%;
}

.items-listing td {
  font-size: 12px;
  font-weight: 500;
}

.items-listing td:nth-child(2n) {
  text-align: right;
}

/*----- Shopping Cart -----*/
.shopping-cart > .section-card.alert-danger {
  margin: 20px;
}

.section-card.in-cart-product {
  padding: 20px;
}

.section-card.in-cart-product.has-error {
  border: 1px solid red;
}

.in-cart-product .shopping-brand {
  font-size: 12px;
  font-weight: 300;
  color: #8d8d8d;
  line-height: 1.3;
  letter-spacing: 0.7px;
}

.in-cart-product .shopping-title {
  margin: 10px 0;
}

.in-cart-product .shopping-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.in-cart-product .shopping-details p {
  font-size: 12px;
  color: #8d8d8d;
}

.in-cart-product .cart-operations {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.in-cart-product .cart-change > * {
  padding-left: 5px;
}

.in-cart-product .cart-operations a.remove {
  font-size: 12px;
  color: #8d8d8d;
}

.section-card.with-message {
  margin-top: 50px;
  padding: 20px;
  text-align: center;
}

.section-card.with-message > p {
  margin-bottom: 30px;
  line-height: 24px;
}

.section-card.with-message > span.muted {
  font-size: 10px;
  color: #B5B5B5;
}

.shopping-cart .bottom .bottom-button:nth-child(odd) {
  width: 50%;
  left: 0;
  right: unset;
  background-color: #c9c9c9;
  color: black;
}

.shopping-cart .bottom .bottom-button:nth-child(even) {
  width: 50%;
  right: 0;
  left: unset;
}

/*----- Customer Details -----*/
.section-card.customer-details {
  padding: 20px 20px 0 20px;
}

.customer-details .customer-name {
  margin: 10px 0;
}

.customer-details .customer-details-table td {
  font-size: 12px;
  padding: 10px 0;
  color: #8d8d8d;
}

.customer-details .customer-operations {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.customer-details .customer-operations a {
  display: block;
  width: 100%;
  padding: 10px 0;
  flex: 1 1 auto;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.customer-details .customer-operations a.edit {
  color: #efbeca;
}

.customer-details .customer-operations a.remove {
  color: #707070;
}

/*----- Product Details -----*/
.product-details {
  min-height: 80vh;
}

.product-details .product-image {
  display: block;
  margin: 30px auto;
}

.product-details .product-description {
  padding: 0 20px;
}

.product-details .product-description h6,
.product-details .product-description p {
  font-size: 12px;
  color: #707070;
  font-weight: 300;
}

.product-details .product-description h3 {
  font-size: 18px;
  margin: 10px 0;
}

.product-details .price-change {
  display: flex;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
}

.product-details .price-change .difference {
  display: block;
  padding: 3px 8px;
  color: #efbeca;
  margin-top: -3px;
  font-size: 12px;
  font-weight: 500;
}

.product-details .price-change * {
  margin: 0 5px;
}

.product-details .price-change .selling-price {
  font-size: 18px;
}

.product-details .price-change .mrp-price {
  font-size: 12px;
  font-weight: 400;
  text-decoration: line-through;
  color: #8d8d8d;
}

.product-details .price-change .stock-count {
  font-size: 14px;
  font-weight: 500;
}

.variants ul {
  display: flex;
  margin-top: 20px;
  margin-left: 0;
}

.product-description .variants a {
  display: block;
  padding-left: 0;
  margin-right: 10px;
}

/*----- Order Confirmation Page -----*/
.order-confirmation .card-title,
.order-confirmation .item-details .title {
  font-size: 14px;
  color: #707070;
  padding: 10px 20px;
  border-bottom: 1px solid #f1f1f1;
  text-transform: uppercase;
}

.order-confirmation .item-details {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
}

.order-confirmation .item-details:last-child {
  border-bottom: 0;
}

.order-confirmation .item-details .title {
  border: 0;
}

.order-confirmation .item-details .brand-details,
.order-confirmation .item-details .quantity {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-confirmation .item-details .brand-details {
  font-weight: 700;
}

.order-confirmation .item-details .quantity {
  font-size: 12px;
  color: #707070;
}

.order-confirmation .item-details .quantity span {
  color: #313131;
}

.order-confirmation .address {
  padding-bottom: 20px;
}

.order-confirmation .address h3 {
  margin-top: 20px;
  padding: 10px 20px;
}

.order-confirmation .address p {
  padding: 5px 20px;
  font-size: 12px;
  color: #707070;
}

.order-confirmation .payment {
  padding-bottom: 20px;
}

.order-confirmation .payment table {
  width: 100%;
  margin-top: 20px;
}

.order-confirmation .payment td {
  padding: 7px 20px;
}

.order-confirmation .payment td:nth-child(2n) {
  text-align: right;
}

.order-confirmation .bottom-button {
  position: sticky;
}

/*----- Address Select Page -----*/
.address-list.section-card {
  padding: 20px;
}

.address-list .card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.address-list .card-title p {
  font-size: 18px;
  letter-spacing: 0.2px;
}

.address-list .address-details p {
  font-size: 16px;
  color: #707070;
  margin: 10px 0;
}

/*----- Customer Address -----*/
.address-edit {
  margin-top: 15px;
}

.address-edit .profile-info {
  display: flex;
  align-items: center;
  padding-left: 25px;
}

.address-edit .info-box {
  width: 100%;
  height: 30px;
  margin-left: 20px;
  border: 0;
}

.address-edit .info-box:focus {
  outline: 0;
  border: 0;
}

.address-edit .bottom .bottom-button:nth-child(odd) {
  width: 50%;
  left: 0;
  right: unset;
  background-color: #c9c9c9;
  color: black;
}

.address-edit .bottom .bottom-button:nth-child(even) {
  width: 50%;
  right: 0;
  left: unset;
}

.address-edit .info-box:disabled {
  width: 80%;
  background: #fff;
  border: 0;
}

/*CUSTOM*/
.shopping-cart input.item-count {
  width: 35px;
  text-align: center;
  margin-left: 5px;
  padding: 3px;
}

.empty-state h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 1rem 1.25rem;
  text-align: center;
}

.empty-state p {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  margin: 0 1rem 2rem;
  line-height: 1.5;
}

/*----- Desktop Landing Page -----*/
.landingpage__main {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 3rem 0;
  height: calc(100vh - 6rem);
}

.landingpage__textcontent {
  max-width: 650px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landingpage__image {
  max-width: 550px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.textcontent--heading {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.2;
  margin: 2rem 0 1.5rem;
}

.textcontent--subtext {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.textcontent--link {
  color: #3464eb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.textcontent--link:hover,
.textcontent--link:active {
  color: #0e3299;
}

.bizfeatures__container {
  display: flex;
}

.bizfeatures {
  text-align: center;
}

.bizfeatures + .bizfeatures {
  margin-left: 3rem;
}

.image--mockup {
  max-width: 550px;
  max-height: 565px;
  margin-top: 8rem;
}

.header--contact p {
  margin: 0.75rem 0;
}

.header--contact a {
  color: black;
  display: inline-block;
  margin-left: 0.5rem;
}

.header--contact a:hover {
  opacity: 0.8;
  transition: 0.2s all ease;
}

.supportedBy {
  margin: 0.75rem 0 3rem;
}

.supportedBy h5 {
  font-size: 1.125rem;
  margin: 0.75rem 0;
}

.supportedBy .logo-spot {
  display: flex;
  flex-wrap: wrap;
}

.supportedBy img {
  margin-right: 0.5rem;
}

/*----- Ledger Page -----*/
.ledger {
  padding: 1rem;
  margin-bottom: 84px;
}

.ledger-entry {
  padding: 1rem;
  border: 0.5px solid #d2d2d2;
  margin-bottom: 1rem;
}

.entry-header,
.entry-details {
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-header {
  margin-bottom: 1rem;
}

.reference {
  flex-grow: 1;
  font-size: 16px;
  margin-right: 1.25rem;
}

.date {
  flex-shrink: 0;
  font-size: 12px;
  color: #9f9f9f;
}

.notes,
.price {
  font-size: 12px;
}

.notes {
  flex-grow: 1;
  color: #9f9f9f;
  margin-right: 1.25rem;
}

.price {
  flex-shrink: 0;
}

.price-debit {
  color: #e16767;
}

.price-credit {
  color: #468d35;
}

.ledger ~ footer {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  border-top: 0.5px solid #d2d2d2;
  border-bottom: 0.5px solid #d2d2d2;
  padding: 1rem;
}

.footer-balance,
.footer-tally {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-balance {
  margin-bottom: 1rem;
}

.footer-balance h4 {
  font-size: 20px;
}

.tally {
  font-size: 14px;
  font-weight: normal;
}

.price-balance {
  color: #3661d8;
}

@media (max-width: 599px) {
  .mobile-width {
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
    border: 0;
  }

  .menu-bar.bottom,
button.bottom-button,
.filter .filter-bottom-navbar {
    max-width: unset;
  }
}
.glossary__title {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-top: 32px;
}

.glossary__separator {
  width: 90%;
  max-width: 585px;
  margin: 30px auto;
}

.glossary__nav {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glossary__formcontrol,
.glossary__formcontrol.search-bar {
  display: block;
  width: 225px;
  font-size: 14px;
  line-height: 18px;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(140, 140, 140, 0.3);
  border-radius: 0;
  outline: none;
}

.glossary__navlist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.glossary__navlink {
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  transition: all 0.3s ease;
  padding: 0 1.5px 2px 1.5px;
}

.glossary__navitem {
  padding: 5px 5px 0px 5px;
}

.glossary__navitem:first-child {
  padding-left: 0;
}

.glossary__navitem:last-child {
  padding-right: 0;
}

.glossary__navtitle {
  margin-bottom: 0.5rem;
  color: #777777;
}

.glossary__search .glossary__navtitle {
  margin-bottom: 0.75rem;
}

.glossary__navlink:hover {
  color: #8d8d8d;
  font-weight: 500;
  opacity: 0.7;
  border-bottom: 2px solid #efbeca;
}

.glossary__navlink--active {
  color: inherit;
  font-weight: 500;
  border-bottom: 2px solid #efbeca;
}

.glossary__main {
  width: 80%;
  max-width: 790px;
  margin: 0 auto;
  display: flex;
}

.glossary__alphabetlist {
  padding-right: 15px;
  border-right: 1px solid #e0e0e0;
}

.glossary__dropdown {
  padding-left: 15px;
  border-left: 1px solid #e0e0e0;
}

.glossary__search {
  padding: 0 15px;
}

.glossary__search,
.glossary__alphabetlist,
.glossary__dropdown {
  min-height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.glossary__searchbar {
  padding: 4px 8px;
  border: 0.5px solid rgba(141, 141, 141, 0.3);
  min-height: 27px;
  font-size: 16px;
}

.glossary__hero {
  flex: 0 0 40%;
}

.glossary__heroletter {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 400px;
  pointer-events: none;
}

.glossary__content {
  flex: 0 0 60%;
  padding-top: 3.5rem;
}

.glossary__product {
  margin-bottom: 2rem;
}

.glossary__productTitle {
  font-size: 22px;
  font-weight: 400;
  color: #e1abb7;
  margin-bottom: 0.5rem;
}

.glossary__productDescription {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #313131;
}

.glossary__productTag {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #8d8d8d;
  padding: 0.25rem 0.5rem;
  border: 1px solid #efefef;
  margin-right: 0.25rem;
}

.dropbtn {
  background-color: #fff;
  color: #313131;
  padding: 0.5rem 1.5rem;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  min-width: 225px;
  transition: all 0.2s ease-in-out;
  border: 1px solid rgba(140, 140, 140, 0.3);
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #eee;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100%;
  min-width: 225px;
  overflow: auto;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.dropdown-content .search-bar.glossary__formcontrol {
  width: 80%;
  margin: 16px auto 8px;
}

.glossary__search .dropbtn {
  min-width: unset;
  border: 0;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #eee;
}

.show {
  display: block;
}

.caret:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.filter__section {
  width: 80%;
  max-width: 1140px;
  margin: 1rem auto 0.5rem;
  display: flex;
  align-items: center;
}

.filter__title {
  font-size: 16px;
  font-weight: 500;
  color: #919191;
  margin-right: 0.5rem;
}

.filter__tag {
  margin-right: 0.25rem;
  font-size: 14px;
  color: #919191;
  border: 1px solid rgba(140, 140, 140, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
}

.filter__tag span {
  margin-right: 1.5rem;
}

.filter__tag i {
  cursor: pointer;
  display: inline-block;
  padding: 2px;
  transition: all 0.2s;
}

.filter__tag i:hover {
  color: #313131;
}

@media screen and (max-width: 480px) {
  .glossary__title {
    margin-top: 32px;
  }

  .glossary__nav {
    flex-wrap: wrap;
  }

  .glossary__navlist {
    justify-content: space-between;
  }

  .glossary__navitem {
    margin: 5px 0;
    padding: 5px 6px;
  }

  .glossary__navitem:first-child {
    padding-left: 7px;
  }

  .glossary__navitem:last-child {
    padding-right: 7px;
  }

  .glossary__alphabetlist {
    flex-basis: 100%;
    padding-right: 0;
    border-right: 0;
    margin-bottom: 24px;
  }

  .glossary__search {
    flex-basis: calc(44% - 7.5px);
    padding-right: 7.5px;
    padding-left: 0;
  }

  .glossary__dropdown {
    flex-basis: calc(42% - 7.5px);
    border-left: 0;
    padding-left: 7.5px;
  }

  .glossary__navlink {
    padding: 0 6px 2px;
  }

  .glossary__searchbar {
    max-width: 160px;
  }

  .glossary__dropdown button {
    min-width: 100%;
  }

  .glossary__hero {
    display: none;
  }

  .glossary__content {
    flex-basis: 100%;
  }

  .glossary__productTag {
    margin-bottom: 0.5rem;
  }
}