/* including required css files */
@import url('../fonts.css');
@import url('../roots.css');

/* ********** General styles declaration ******** */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--mtnRegular);
}

:root {
  --agroPrimary: #2f6b3b;
  --agroPrimaryDark: #1f4d2a;
  --agroSecondary: #4d8b57;
  --agroAccent: #7fb069;
  --agroLight: #f4faf3;
  --agroSoft: #e7f1e5;
  --agroBorder: #cfe0cc;
  --agroText: #203124;
  --agroMuted: #5f6f63;
  --agroWhite: #ffffff;
  --agroPanel: #f8fbf7;
  --agroDanger: #c0392b;
  --agroSuccess: #2e7d32;
  --agroWarning: #d68910;
  --agroInfo: #2e86c1;
}

.text-danger {
  color: var(--agroDanger) !important;
}

.text-success {
  color: var(--agroSuccess);
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
  line-height: calc(1.25 / 0.875);
}

.text-xs {
  font-size: 0.75rem;
  line-height: calc(1 / 0.75);
}

.b-none {
  border: none;
}

.d-none {
  display: none;
}

a {
  text-decoration: none;
}

.body-wrapper {
  display: flex;
}

/* Side bar section style */
.sidebar-wrapper {
  width: 18%;
  background-color: var(--agroWhite);
  border-bottom: 1px solid var(--agroBorder);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
}

.close-icon {
  display: none;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
}

.sidebar-logo img {
  width: 50px;
}

.sidebar-logo p {
  font-size: 18px;
  color: var(--agroPrimaryDark);
}

.sidebar-nav-links {
  margin: 0 10px;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-section-title {
  font-family: var(--mtnExtraBold);
  color: var(--agroMuted);
  font-size: 12px;
  margin: 5px 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px;
  border-radius: 8px;
  justify-content: space-between;
}

.sidebar-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-link svg {
  color: var(--agroText);
}

.sidebar-link .sidebar-arrow {
  transition: transform 0.2s ease-in-out;
}

.sidebar-link p {
  font-size: 15px;
  color: var(--agroText);
}

.sidebar-link:hover {
  background-color: var(--agroSoft);
  cursor: pointer;
}

.active-sidebar-link {
  background-color: var(--agroSoft);
}

.active-sidebar-link svg {
  color: var(--agroPrimaryDark);
}

.active-sidebar-link .sidebar-arrow {
  transform: rotate(-180deg);
}

.active-sidebar-link p {
  font-family: var(--mtnExtraBold);
  color: var(--agroPrimaryDark);
}

.sub-sidebar-links {
  padding: 5px 0;
}

.sub-sidebar-links ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sub-sidebar-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 8px;
  background-color: #f8fbf8;
  border: 1px solid var(--agroBorder);
}

.sub-sidebar-link-item svg {
  color: var(--agroPrimaryDark);
}

.sub-sidebar-link-item p {
  font-size: 12px;
  color: var(--agroText);
}

.sub-sidebar-link-item:hover {
  background-color: var(--agroPrimaryDark);
  cursor: pointer;
}

.sub-sidebar-link-item:hover p,
.sub-sidebar-link-item:hover svg {
  color: var(--agroWhite);
}

.active-sub-sidebar-link {
  background-color: var(--agroPrimaryDark);
}

.active-sub-sidebar-link svg,
.active-sub-sidebar-link p {
  color: var(--agroWhite);
  font-family: var(--mtnBold);
}

/* Keep the active sub-menu open on page load */
.collapsible-menu:has(.active-sub-sidebar-link) .sidebar-content {
  display: block;
}

.collapsible-menu:has(.active-sub-sidebar-link) > .sidebar-link {
  background-color: var(--agroSoft);
}

.collapsible-menu:has(.active-sub-sidebar-link) > .sidebar-link svg {
  color: var(--agroPrimaryDark);
}

.collapsible-menu:has(.active-sub-sidebar-link) > .sidebar-link .sidebar-arrow {
  transform: rotate(-180deg);
}

.sidebar-content {
  display: none;
}

/* End of side bar section style */

.content-wrapper {
  width: 82%;
}

/* Header section style */
.header-wrapper {
  background-color: var(--agroWhite);
  padding: 6px 10px;
  border-bottom: 1px solid var(--agroBorder);
  border-left: 1px solid var(--agroBorder);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-sidebar {
  display: flex;
  align-items: center;
  display: none;
}

.header-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--agroWhite);
  width: 45%;
  border-radius: 30px;
  border: 1px solid var(--agroBorder);
  padding: 5px 15px;
}

.header-search-bar input {
  flex-grow: 1;
  height: 30px;
  border: none;
  background-color: transparent;
}

.header-search-bar input:focus {
  outline: none;
}

.search-lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--agroBorder);
  padding: 4px;
  border-radius: 5px;
  gap: 4px;
}

.search-lang p {
  font-size: 12px;
  font-family: var(--mtnLight);
  color: var(--agroMuted);
}

.notification-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--agroPrimaryDark);
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 15px;
}

.profile-pic {
  position: relative;
}

.profile-pic-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 2px;
  background-color: var(--agroPrimaryDark);
}

.profile-pic-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.pic-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: var(--agroSuccess);
  border-radius: 50%;
}

.profile-name p {
  font-family: var(--mtnLight);
}

.profile-name p:first-child {
  font-size: 23px;
  color: var(--agroText);
}

.profile-name p:last-child {
  font-size: 10px;
  color: var(--agroMuted);
}

.profile-down-arrow {
  background-color: rgba(53, 53, 53, 0.07);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* End of header section style */

/* Main content style */
.main-wrapper {
  background-color: var(--agroPanel);
  background-image: url('../../../assets/images/background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-left: 1px solid var(--agroBorder);
  padding: 10px 0;
  height: 100%;
  position: relative;
}

.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.page-title {
  display: flex;
  align-items: center;
  gap: 2px;
}

.page-title svg:first-child {
  cursor: pointer;
}

.page-title p:first-child,
.page-title .back-page {
  font-size: 14px;
  color: var(--agroPrimary);
  font-family: var(--mtnExtraBold);
}

.page-title p:last-child {
  font-size: 13px;
  font-family: var(--mtnExtraBold);
  color: var(--agroMuted);
}

.content-title .page-message {
  font-size: 31px;
  color: var(--agroText);
  font-family: var(--mtnExtraBold);
}

.page-description-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  width: 55%;
}

.page-description {
  font-size: 13px;
  color: var(--agroMuted);
  text-align: right;
}

.page-action-btns {
  display: flex;
  gap: 5px;
}

.page-action-btn {
  background-color: var(--agroPrimary);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  gap: 8px;
  cursor: pointer;
}

.page-action-btn p {
  font-size: 13px;
  font-family: var(--mtnBold);
  color: var(--agroWhite);
  text-wrap: nowrap;
}

.page-action-outline-btn {
  background-color: transparent;
  border: 1px solid var(--agroMuted);
}

.page-action-outline-btn p {
  color: var(--agroPrimaryDark);
}

.cancle-btn {
  background-color: #7b8b80;
}

.cancle-btn p {
  color: var(--agroWhite);
}

.delete-btn {
  background-color: var(--agroDanger);
}

.delete-btn p {
  color: var(--agroWhite);
}

.cards {
  padding: 20px 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.analytics-cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background-color: var(--agroWhite);
  padding: 13px 20px;
  border-radius: 15px;
  border: 1px solid var(--agroBorder);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.card-header-title {
  font-size: 12px;
  font-family: var(--mtnExtraBold);
  color: var(--agroMuted);
}

.card-info .card-title {
  font-size: 30px;
  font-family: var(--mtnExtraBold);
  color: var(--agroText);
  margin-top: 15px;
}

.card-info .bolder-card-title {
  margin-top: 0px;
  font-family: var(--mtnExtraBold);
  font-size: 30px;
}

.card-info .bolder-card-title span {
  font-size: 16px;
  font-family: var(--mtnExtraBold);
}

.card-info .card-subtitle {
  font-size: 12px;
  color: var(--agroMuted);
}

.card-divider {
  width: 100%;
  height: 1px;
  background-color: var(--agroBorder);
  opacity: 0.6;
  margin: 10px 0;
}

.card-footer {
  display: flex;
  align-items: center;
}

.card-footer p {
  font-size: 11px;
}

.green-footer p {
  color: var(--agroSuccess);
}

.red-footer p {
  color: var(--agroDanger);
}

.action-activity-wrapper {
  display: flex;
}

.action-wrapper {
  width: 70%;
  border-top: 1px solid var(--agroBorder);
  border-right: 1px solid var(--agroBorder);
  padding: 15px 10px;
}

.section-heading {
  padding: 10px;
}

.section-heading p:first-child {
  font-size: 26px;
  color: var(--agroText);
}

.section-heading p:last-child {
  font-size: 13px;
  color: var(--agroMuted);
}

.action-btns {
  background-color: var(--agroWhite);
  border-radius: 14px;
  border: 1px solid var(--agroBorder);
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin-bottom: 30px;
}

.action-btn {
  flex-wrap: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--agroWhite);
  border: 2px solid var(--agroPrimary);
  border-radius: 10px;
  padding: 4px;
}

.action-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(47, 107, 59, 0.12);
  padding: 8px;
  border-radius: 5px;
}

.action-btn-icon svg {
  color: var(--agroPrimary);
}

.action-btn p {
  font-size: 12px;
  color: var(--agroText);
  font-family: var(--mtnMedium);
}

.action-btn:hover {
  background-color: var(--agroPrimary);
  border-color: var(--agroPrimary);
  cursor: pointer;
}

.action-btn:hover .action-btn-icon {
  background-color: rgba(255, 255, 255, 0.14);
}

.action-btn:hover .action-btn-icon svg,
.action-btn:hover p {
  color: var(--agroWhite);
}

.activity-wrapper {
  width: 30%;
  border-top: 1px solid var(--agroBorder);
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-wrappers {
  background-color: #f7faf7;
  border: 1px solid var(--agroBorder);
  border-radius: 13px;
  padding: 8px;
}

.activities {
  background-color: var(--agroWhite);
  border-radius: 14px;
}

.activities .activity:last-child,
.activities .pending-task:last-child,
.activities .systems-health:last-child {
  border-bottom: none;
}

.activity {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-bottom: 1px solid rgba(194, 194, 194, 0.35);
}

.activity-content p:first-child {
  font-size: 13px;
  color: var(--agroText);
}

.activity-content p:last-child {
  font-size: 11px;
  color: var(--agroMuted);
}

.section-btn {
  background-color: #e6eee5;
  border: 1px solid var(--agroWhite);
  border-radius: 10px;
  padding: 6px 0;
  margin-top: 12px;
  cursor: pointer;
}

.section-btn p {
  text-align: center;
  font-family: var(--mtnExtraBold);
  color: var(--agroMuted);
  font-size: 13px;
}

.pending-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid rgba(194, 194, 194, 0.35);
}

.task-status-color {
  min-width: 15px;
  min-height: 15px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.status-red-color {
  background-color: var(--agroDanger);
}

.status-green-color {
  background-color: var(--agroWarning);
}

.status-yellow-color {
  background-color: var(--agroSuccess);
}

.task-review-btn {
  background-color: var(--agroPrimaryDark);
  padding: 6px 11px;
  border-radius: 18px;
  width: fit-content;
  cursor: pointer;
}

.task-review-btn p {
  color: var(--agroWhite);
  font-size: 10px;
}

.systems-health {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-bottom: 1px solid rgba(194, 194, 194, 0.35);
}

.system-health {
  flex-grow: 1;
}

.health-title {
  font-family: var(--mtnMedium);
  font-size: 12px;
  color: var(--agroText);
}

.health-prograss {
  width: 100%;
  height: 15px;
  background-color: #e6e9e6;
  border-radius: 15px;
}

.health-prograss-bar {
  height: 100%;
  border-radius: inherit;
  position: relative;
}

.health-green-prograss-bar {
  background:
    linear-gradient(to right, #6fdb73, #56b567),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3) 10px,
      rgba(0, 0, 0, 0) 10px,
      rgba(0, 0, 0, 0) 20px
    );
}

.health-red-prograss-bar {
  background:
    linear-gradient(to right, #ed9e9e, #dc8f8f),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3) 10px,
      rgba(0, 0, 0, 0) 10px,
      rgba(0, 0, 0, 0) 20px
    );
}

.health-yellow-prograss-bar {
  background:
    linear-gradient(to right, #d7b75f, #bd9b3a),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3) 10px,
      rgba(0, 0, 0, 0) 10px,
      rgba(0, 0, 0, 0) 20px
    );
}

.health-prograss-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 50%
  );
  background-size: 25px 25px;
  border-radius: 20px;
}

.health-stats {
  display: flex;
  justify-content: space-between;
}

.health-stat p {
  font-size: 10px;
  color: var(--agroMuted);
}

.filter-options {
  background-color: #f7faf7;
  border: 1px solid rgba(194, 194, 194, 0.35);
  border-radius: 12px;
  padding: 13px;
  margin: 0px 10px;
  display: flex;
  align-items: end;
  gap: 30px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  flex-grow: 1;
  gap: 8px;
}

.filter-search {
  grid-column: 1 / span 2;
}

.filter p {
  font-size: 11px;
  color: var(--agroText);
}

.filter .input-info-text {
  font-size: 12px;
  color: var(--agroMuted);
  margin-top: 4px;
}

.dropdown,
.search {
  background-color: var(--agroWhite);
  border: 1px solid var(--agroBorder);
  border-radius: 5px;
  display: flex;
  align-items: center;
  margin-top: 2px;
  position: relative;
}

.search svg {
  margin: 0 4px;
}

.search input {
  flex-grow: 1;
  height: 35px;
  background-color: transparent;
  border: none;
  padding: 0 10px;
}

.dropdown select {
  flex-grow: 1;
  height: 35px;
  border: none;
  padding: 0 10px;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../../../assets/icons/chevron-down.svg");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: calc(100% - 5px) center;
  font-size: 11px;
}

.long-filter .search {
  height: 90px;
}

.long-filter .image-picker {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.long-filter .image-picker img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.long-filter .image-picker .reset-btn,
.long-filter .image-picker .cicon-reset-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.long-filter .image-picker p {
  font-size: 12px;
  color: var(--agroMuted);
}

.long-filter .search textarea {
  height: 100%;
  flex-grow: 1;
  border: none;
  padding: 4px 10px;
  resize: none;
  background-color: transparent;
}

.group-filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 7px;
}

.group-form-filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 17px;
}

.group-form-filter .filter label {
  font-size: 13px;
  margin-bottom: 2px;
  color: var(--agroText);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.upload-file {
  width: 100%;
  height: 160px;
  border: 1px dashed rgba(32, 49, 36, 0.45);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.upload-file .upload-text {
  font-size: 15px;
  color: var(--agroText);
  font-family: var(--mtnMedium);
}

.upload-file .upload-subtext {
  font-size: 12px;
  color: var(--agroMuted);
  margin: 4px 0 8px 0;
}

.uploaded-files {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  padding-top: 7px;
}

.uploaded-file {
  border-radius: 6px;
  border: 1px solid rgba(32, 49, 36, 0.25);
  padding: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.uploaded-file-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

.uploaded-file-info p:first-child {
  font-size: 11px;
  color: var(--agroText);
  font-family: var(--mtnMedium);
}

.uploaded-file-info p:last-child {
  font-size: 8px;
  color: var(--agroMuted);
}

.uploaded-file svg {
  cursor: pointer;
}

.dropdown select:focus,
.search input:focus,
.search textarea {
  outline: none;
}

.graphs {
  margin: 15px 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.graph {
  display: flex;
  flex-direction: column;
}

.graph-wrapper > div:not(.graph-wrapper-header) {
  position: relative;
  flex-grow: 1;
}

.doughnut-chart-container {
  max-width: fit-content;
  width: 100%;
  margin: 0 auto;
}

.graph-wrapper {
  background-color: #fafdfa;
  border-radius: 15px;
  padding: 15px;
  margin-top: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--agroBorder);
}

.graph-wrapper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.graph-wrapper-header p {
  font-size: 16px;
  font-family: var(--mtnBold);
  color: var(--agroText);
}

.graph-wrapper-action {
  display: flex;
  align-items: center;
  gap: 8px;
}

.graph-wrapper-action .dropdown {
  flex-grow: 1;
}

.graph-wrapper-action .dropdown select {
  padding-right: 32px;
  padding-left: 3px;
}

.graph-more-icon {
  border-color: var(--agroBorder);
}

.page-content-wrapper {
  background-color: #fdfefd;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
  overflow-x: auto;
  border: 1px solid var(--agroBorder);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 258px));
  gap: 10px;
}

.product {
  background-color: #f7faf7;
  border: 1px solid rgba(194, 194, 194, 0.35);
  border-radius: 15px;
  padding: 10px;
}

.image-wrapper {
  width: 100%;
  height: 130px;
  border-radius: 5px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.prod-category {
  font-size: 11px;
  color: var(--agroMuted);
  text-transform: uppercase;
  margin-top: 6px;
}

.prod-title {
  font-family: var(--mtnBold);
  font-size: 14px;
  color: var(--agroText);
  margin-top: 3px;
  margin-bottom: 6px;
}

.prod-description {
  font-size: 11px;
  color: var(--agroMuted);
}

.prod-status-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--agroBorder);
}

.prod-status {
  padding: 8px 10px;
  background-color: #f5f6f7;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  width: fit-content;
}

.prod-status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #091e42;
}

.prod-status p {
  font-size: 12px;
  font-family: var(--mtnMedium);
  color: #091e42;
}

/* in stock color */
.status-instock {
  background-color: #ecfdf3;
}

.status-instock .prod-status-indicator {
  background-color: var(--agroSuccess);
}

.status-instock p {
  color: var(--agroSuccess);
}

/* out of stock color */
.status-outstock {
  background-color: rgba(244, 67, 54, 0.09);
}

.status-outstock .prod-status-indicator {
  background-color: var(--agroDanger);
}

.status-outstock p {
  color: var(--agroDanger);
}

/* low on stock color */
.status-lowstock {
  background-color: rgba(214, 137, 16, 0.12);
}

.status-lowstock .prod-status-indicator {
  background-color: var(--agroWarning);
}

.status-lowstock p {
  color: var(--agroWarning);
}

/* shipping color */
.status-shipping {
  background-color: rgba(46, 134, 193, 0.09);
}

.status-shipping .prod-status-indicator {
  background-color: var(--agroInfo);
}

.status-shipping p {
  color: var(--agroInfo);
}

.prod-price {
  font-family: var(--mtnExtraBold);
  font-size: 17px;
  color: var(--agroText);
}

.prod-progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-progress-info p {
  font-size: 12px;
  color: #091e42;
}

.prod-progress-bar {
  margin-top: 2px;
  height: 8px;
  width: 100%;
  background-color: #e8e8e8;
  border-radius: 50px;
}

.prod-inner-progress {
  height: 100%;
  border-radius: inherit;
}

.prod-inner-green-progress {
  background-color: var(--agroSuccess);
}

.prod-inner-red-progress {
  background-color: var(--agroDanger);
}

.customer-email {
  font-size: 11px;
  color: var(--agroMuted);
}

.system-action-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.system-action-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #9ba5b7;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
}

.system-action-btn p {
  font-size: 10px;
  font-family: var(--mtnMedium);
  color: var(--agroText);
}

.view-action-btn {
  background-color: var(--agroPrimaryDark);
  border-color: var(--agroPrimaryDark);
}

.view-action-btn p {
  color: var(--agroWhite);
}

.join-action-btn {
  background: var(--agroPrimary);
  border-color: var(--agroPrimary);
}

.join-action-btn p {
  color: var(--agroWhite);
}

.delete-action-btn {
  border-color: var(--agroDanger);
}

.delete-action-btn p {
  color: var(--agroDanger);
}

.activate-action-btn {
  background-color: transparent;
  border-color: var(--agroSuccess);
}

.activate-action-btn p {
  color: var(--agroSuccess);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 10px;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: var(--agroWhite);
  cursor: pointer;
  border: 1px solid var(--agroBorder);
}

.pagination-btn p,
.pag-count p {
  font-size: 12px;
  color: #344054;
}

.pagination-counter {
  display: flex;
  align-items: center;
}

.pag-count {
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.active-pag {
  background-color: #eff4ef;
}

.customers {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.customer {
  background-color: var(--agroWhite);
  border: 1px solid rgba(194, 194, 194, 0.35);
  padding: 8px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-profile {
  background-color: #f2f7f1;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: fit-content;
}

.customer-image {
  padding: 0;
  border-radius: 0;
  width: 65px;
  height: 50px;
  border-radius: 4px;
  background-color: transparent;
}

.customer-profile-image {
  padding: 0;
}

.customer-profile-image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.customer-image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.customer-profile p {
  color: var(--agroPrimary);
  font-size: 14px;
  font-family: var(--mtnExtraBold);
  text-wrap: nowrap;
}

.customer-profile .profile-image {
  width: 20px;
  height: 20px;
  background-color: red;
}

.customer-name {
  margin-right: 15px;
}

.customer-name p:first-child {
  font-size: 14px;
  color: var(--agroText);
  text-wrap: nowrap;
}

.customer-name p:last-child {
  font-size: 11px;
  color: var(--agroMuted);
  text-wrap: nowrap;
}

.customer-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 15px;
}

.customer-actions .system-action-btns {
  gap: 8px;
}

.table-action-btn {
  display: flex;
  justify-content: end;
  padding-right: 10px;
  gap: 10px;
  margin-top: 20px;
}

.table-post-img {
  width: 52px;
  height: 55px;
  border-radius: 5px;
  background-color: var(--agroBorder);
}

.table-post-img img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.print-btn {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--agroPrimaryDark);
  border-radius: 4px;
  padding: 6px 11px;
  cursor: pointer;
}

.print-btn p {
  font-size: 11px;
  font-family: var(--mtnBold);
  color: var(--agroPrimaryDark);
}

table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  color: #42526d;
  font-size: 12px;
}

table thead tr th,
table tbody tr td {
  background-color: #fafcfb;
  padding: 12px;
  text-wrap: nowrap;
  border-bottom: 1px solid #eaecf0;
}

input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--agroPrimary);
}

.header-title-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-title-icon svg {
  margin-top: 4px;
}

table tbody tr td {
  background-color: var(--agroWhite);
}

table tbody tr .table-td {
  background-color: #f5f8f4;
  padding: 3px 5px;
  border-radius: 16px;
  width: fit-content;
}

.table-action-btns {
  justify-content: start;
  gap: 10px;
}

.table-wrapper {
  border: 1px solid #eff1f4;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--agroWhite);
  overflow-x: auto;
}

.table-wrapper .pagination-btn {
  border: 1px solid #d0d5dd;
}

.table-search-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.table-search {
  display: flex;
  align-items: center;
  border: 1px solid #eff1f4;
  border-radius: 7px;
  padding: 0 10px;
  width: 50%;
  background: var(--agroWhite);
}

.table-search input {
  flex-grow: 1;
  height: 35px;
  border: none;
  margin-left: 8px;
  background-color: transparent;
}

.table-search input:focus {
  outline: none;
}

.table-search-filter .table-action-btn {
  margin-top: 0;
}

/* modal overlay */
.modal-overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(217, 217, 217, 0.38);
  backdrop-filter: blur(5.4px);
  z-index: 998;
  overflow-y: auto;
  padding: 1rem;
  justify-content: center;
}

.order-modal,
.customer-profile-modal {
  display: none;
  width: 40%;
  position: relative;
  background-color: var(--agroWhite);
  border-radius: 19px;
  z-index: 999;
  padding: 10px;
  margin: auto 0;
}

.new-product-modal,
.new-user-modal,
.generate-report-modal,
.new-service-modal,
.new-product-im-modal,
.status-modal,
.restock-modal,
.product-delete-modal,
.user-delete-modal,
.deletion-modal,
.new-category-modal,
.category-status-modal,
.new-post-modal,
.new-topic-modal,
.assign-topic-modal,
.add-forum-modal,
.user-detail-modal,
.agent-delete-modal,
.post-status-modal,
.topic-status-modal,
.sme-update-modal,
.sme-delete-modal,
.schedule-report-modal {
  display: none;
  width: 40%;
  position: relative;
  background-color: var(--agroWhite);
  border-radius: 19px;
  z-index: 999;
  padding: 10px;
  margin: auto 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 25px;
  font-family: var(--mtnLight);
  color: var(--agroText);
}

.modal-subtitle {
  font-size: 13px;
  color: var(--agroMuted);
  margin-top: 2px;
}

.modal-header svg {
  cursor: pointer;
}

.modal-content {
  background-color: #f7faf7;
  padding: 13px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
  border: 1px solid var(--agroBorder);
}

.modal-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.sub-content-header {
  border-left: 4px solid var(--agroPrimary);
  padding-left: 5px;
}

.sub-content-header p {
  font-family: var(--mtnBold);
  font-size: 17px;
  color: var(--agroPrimaryDark);
}

.permissions {
  display: flex;
  gap: 10px;
}

.spacer-permissions {
  margin-top: 5px;
  justify-content: space-between;
}

.permission {
  display: flex;
  align-items: center;
  gap: 8px;
}

.permission p {
  font-size: 15px;
  color: var(--agroText);
}

.row-permissions {
  flex-direction: row;
  gap: 20px;
}

.order-id {
  font-size: 18px;
  color: var(--agroPrimaryDark);
  font-family: var(--mtnBold);
}

.order-modal-infos {
  display: flex;
  gap: 15px;
}

.order-modal-infos .modal-content {
  flex-grow: 1;
}

.order-modal-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 0;
}

.order-modal-detail {
  display: flex;
  flex-direction: column;
}

.order-modal-detail .order-header {
  font-size: 14px;
  color: #7c8b80;
}

.order-modal-profile {
  background-color: var(--agroPrimary);
}

.order-modal-profile p {
  color: var(--agroWhite);
}

.order-modal-detail .order-info {
  font-size: 15px;
  color: var(--agroText);
  font-family: var(--mtnMedium);
}

.order-modal-timeline {
  padding-top: 20px;
}

.timeline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-linebar {
  width: 3px;
  height: 40px;
  background-color: #34c759;
  margin-left: 15px;
}

.customer-modal-info p:first-child {
  font-size: 20px;
  color: var(--agroText);
  font-family: var(--mtnBold);
}

.customer-modal-info p:nth-child(2),
.customer-modal-info p:nth-child(3) {
  font-size: 15px;
  color: var(--agroMuted);
  line-height: 15px;
}

.key-stats {
  padding: 5px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.key-stat {
  background-color: var(--agroWhite);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  border: 1px solid var(--agroBorder);
}

.key-stat p:first-child {
  font-size: 30px;
  color: var(--agroPrimary);
  font-family: var(--mtnMedium);
}

.key-stat-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(153, 153, 153, 0.3);
  margin: 5px 0;
}

.key-stat p:last-child {
  font-size: 12px;
  color: var(--agroMuted);
  font-family: var(--mtnMedium);
}

.new-sme-wrapper {
  background-color: #fcfefb;
  padding: 17px;
  border-radius: 15px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid var(--agroBorder);
}

.progress-wrapper,
.content-form-wrapper {
  background-color: #f6faf5;
  padding: 17px;
  border-radius: 10px;
  position: relative;
  border: 1px solid var(--agroBorder);
}

.settings-info-wrapper {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-wrapper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-wrapper-header p:first-child {
  font-size: 16px;
  color: var(--agroText);
  font-family: var(--mtnBold);
  background-color: transparent;
}

.progress-wrapper-header p:last-child {
  color: var(--agroPrimaryDark);
  font-size: 13px;
}

.progressbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0 20px;
}

.progress-status {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.progress-status div {
  width: 55px;
  height: 55px;
  border-radius: 50px;
  background-color: #cfd8cf;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-status div svg {
  color: var(--agroWhite);
}

.progress-status p {
  font-size: 13px;
  color: var(--agroText);
  width: 80px;
  text-align: center;
}

.pev-progress-status div {
  background-color: var(--agroSuccess);
}

.active-progress-status div {
  background-color: var(--agroPrimary);
}

.progressbar-line {
  height: 7px;
  border-radius: 50px;
  background-color: #d9d9d9;
  position: absolute;
  top: 90px;
  left: 50px;
  right: 50px;
}

.inner-progressbar-line {
  height: 100%;
  background-color: var(--agroPrimary);
  border-radius: inherit;
  transition: 0.2s;
}

.reports {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  padding: 10px;
}

.report {
  display: flex;
  flex-direction: column;
  background-color: var(--agroWhite);
  border-radius: 11px;
  border-left: 3px solid var(--agroPrimary);
  padding: 13px 20px;
  gap: 15px;
}

.report-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.report-header p {
  font-size: 21px;
  font-family: var(--mtnBold);
  color: var(--agroPrimaryDark);
}

.report-text {
  font-size: 13px;
  color: var(--agroMuted);
}

.report-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.report-footer-content {
  display: flex;
  align-items: center;
  gap: 5px;
}

.report-footer-content p {
  font-size: 11px;
  color: var(--agroMuted);
  font-family: var(--mtnMedium);
}

.settings-wrapper {
  width: 100%;
  display: flex;
  padding: 0px 15px;
  gap: 12px;
}

.settings-sidebar {
  background-color: var(--agroWhite);
  width: 25%;
  height: fit-content;
  padding: 14px 0;
  border-radius: 9px;
  border: 1px solid var(--agroBorder);
}

.settings-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.settings-sidebar ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 4px;
  cursor: pointer;
}

.settings-sidebar ul li:hover {
  background-color: rgba(47, 107, 59, 0.08);
}

.settings-sidebar-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.settings-sidebar-item .sidebar-stroke {
  height: 45px;
  width: 4px;
}

.settings-sidebar-item svg,
.settings-sidebar-item p {
  color: var(--agroPrimaryDark);
}

.settings-sidebar-item p {
  font-size: 14px;
  font-family: var(--mtnLight);
}

.active-settings-sb {
  background-color: rgba(47, 107, 59, 0.08);
}

.active-settings-sb .settings-sidebar-item .sidebar-stroke {
  background-color: var(--agroPrimary);
}

.active-settings-sb svg,
.active-settings-sb .settings-sidebar-item p {
  color: var(--agroPrimary);
  font-family: var(--mtnBold);
}

.settings-contents {
  width: 85%;
  height: fit-content;
}

.settings-content {
  background-color: var(--agroWhite);
  border-radius: 19px;
  padding: 13px;
  border: 1px solid var(--agroBorder);
}

.settings-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  margin: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  width: 100%;
}

.settings-content-header p:first-child {
  font-size: 26px;
  color: var(--agroText);
}

.settings-content-header p:last-child {
  font-size: 13px;
  color: var(--agroMuted);
}

.security-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--agroWhite);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(194, 194, 194, 0.35);
}

.security-setting-info p:first-child {
  font-family: var(--mtnMedium);
  font-size: 14px;
  color: var(--agroText);
}

.security-setting-info p:last-child {
  font-size: 11px;
  color: var(--agroMuted);
}

.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

/* Toggle On */
input:checked + .slider {
  background-color: var(--agroPrimary);
}

input:checked + .slider:before {
  transform: translateX(16px);
}

.settings-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.settings-footer p {
  font-size: 13px;
  color: var(--agroMuted);
}

.settings-footer p span {
  color: var(--agroDanger);
  font-size: 18px;
}

.help-main-question {
  text-align: center;
  margin: 20px 15px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.help-main-question p:first-child {
  font-family: var(--mtnLight);
  font-size: 35px;
  color: var(--agroText);
}

.help-main-question p:last-child {
  font-size: 13px;
  color: var(--agroMuted);
}

.help-centers {
  display: flex;
  padding: 15px;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.help-center {
  background-color: var(--agroWhite);
  padding: 13px 20px;
  border-radius: 11px;
  border-left: 3px solid var(--agroPrimary);
}

.help-center-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.help-center-header p {
  font-size: 19px;
  font-family: var(--mtnBold);
  color: var(--agroPrimaryDark);
}

.help-center ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}

.help-center ul li {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.help-center ul li a {
  color: var(--agroMuted);
  font-size: 14px;
  font-family: var(--mtnMedium);
}

.faqs {
  padding: 6px;
  border-radius: 12px;
  background-color: #f1f6f0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

.cont-infos {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.faq {
  background-color: var(--agroWhite);
  border-radius: 8px;
  padding: 13px 11px;
  display: flex;
  gap: 4px;
  border: 1px solid var(--agroBorder);
}

.faq-info p:first-child {
  font-size: 19px;
  color: var(--agroPrimaryDark);
  font-family: var(--mtnBold);
}

.faq-info p:last-child,
.faq-info p:nth-child(2),
.faq-info p:nth-child(3) {
  font-size: 14px;
  color: var(--agroMuted);
}

.faq-info p span {
  font-family: var(--mtnBold);
}

.contacts {
  display: flex;
  gap: 11px;
  padding: 15px;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--agroPrimaryDark);
  gap: 11px;
  border-radius: 11px;
  padding: 13px 20px;
  width: 100%;
}

.contact-title {
  font-size: 21px;
  font-family: var(--mtnBold);
  color: #f2f2f2;
}

.contact-subtitle {
  font-size: 13px;
  color: #d7e5d8;
  text-align: center;
}

.tab-link-section {
  display: flex;
  width: fit-content;
  margin-left: 15px;
}

.tab-link {
  padding: 10px 25px;
  cursor: pointer;
  background-color: #f4f8f3;
}

.active-tab {
  background-color: var(--agroPrimary);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: var(--agroWhite);
}

/* Mobile style */
@media (max-width: 950px) {
  .sidebar-wrapper {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    transition: left 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
  }

  .sidebar-wrapper.open {
    left: 0vw;
  }

  .content-wrapper {
    width: 100%;
  }

  .toggle-sidebar,
  .close-icon {
    display: block;
  }

  .action-activity-wrapper {
    flex-direction: column;
  }

  .action-wrapper {
    width: 100%;
    border-top: 1px solid var(--agroBorder);
    border-right: none;
  }

  .activity-wrapper {
    width: 100%;
  }

  .new-product-modal,
  .new-user-modal,
  .generate-report-modal,
  .new-service-modal,
  .new-product-im-modal,
  .status-modal,
  .deletion-modal,
  .order-modal,
  .restock-modal,
  .product-delete-modal,
  .user-delete-modal,
  .customer-profile-modal,
  .new-category-modal,
  .category-status-modal,
  .new-post-modal,
  .new-topic-modal,
  .assign-topic-modal,
  .add-forum-modal,
  .user-detail-modal,
  .post-status-modal,
  .sme-update-modal,
  .sme-delete-modal,
  .schedule-report-modal {
    width: 60%;
  }
}

@media (max-width: 685px) {
  .header-search-bar {
    width: 70%;
  }

  .notification-icon,
  .profile-name {
    display: none;
  }

  .content-header {
    flex-direction: column;
  }

  .content-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-description-wrapper {
    flex-direction: column;
  }

  .page-description {
    text-align: center;
  }

  .table-search-filter {
    flex-direction: column;
    gap: 8px;
  }

  .table-search {
    width: 100%;
  }

  .key-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .key-stat p:first-child {
    font-size: 25px;
  }

  .settings-wrapper {
    flex-direction: column;
  }

  .settings-sidebar,
  .settings-contents {
    width: 100%;
  }

  .tab-link {
    padding: 10px;
  }
}

@media (max-width: 565px) {
  .products {
    grid-template-columns: repeat(auto-fit, minmax(250px, 280px));
    justify-content: center;
  }
}

@media (max-width: 490px) {
  .filter-options {
    flex-direction: column;
  }

  .filters {
    width: 100%;
  }

  .filter-options .page-action-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 530px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pagination-counter .pag-count:nth-child(2),
  .pagination-counter .pag-count:nth-child(3),
  .pagination-counter .pag-count:nth-child(5),
  .pagination-counter .pag-count:nth-child(6) {
    display: none;
  }

  .new-product-modal,
  .new-user-modal,
  .generate-report-modal,
  .new-service-modal,
  .new-product-im-modal,
  .status-modal,
  .deletion-modal,
  .order-modal,
  .restock-modal,
  .product-delete-modal,
  .user-delete-modal,
  .customer-profile-modal,
  .new-category-modal,
  .category-status-modal,
  .new-post-modal,
  .new-topic-modal,
  .assign-topic-modal,
  .add-forum-modal,
  .user-detail-modal,
  .post-status-modal,
  .sme-update-modal,
  .sme-delete-modal,
  .schedule-report-modal {
    width: 95%;
  }
}

@media (max-width: 450px) {
  .header-search-bar {
    width: 60%;
  }

  .search-lang {
    display: none;
  }

  .header-search-bar {
    padding: 5px 10px;
  }

  .header-search-bar svg {
    display: none;
  }

  .page-message {
    text-align: center;
  }

  .page-description-wrapper {
    width: 80%;
  }

  .card {
    padding: 13px 10px;
  }

  .card-info .card-title {
    font-size: 25px;
  }

  .modal-overlay {
    padding: 5px;
  }

  .tab-link p {
    font-size: 12px;
  }
}