@charset "UTF-8";
@import url("part2.css");
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 500;
  src: url(./../fonts/MaterialIcons-Regular.ttf);
}
@font-face {
  font-family: "Open Sans Regular";
  src: url(./../fonts/OpenSans-VariableFont_wdth\,wght.ttf);
}
@font-face {
  font-family: "Open Sans Italic";
  src: url(./../fonts/OpenSans-Italic-VariableFont_wdth\,wght.ttf);
}
@font-face {
  font-family: "RobotoCondensed-Bold";
  src: url("./../fonts/RobotoCondensed-Bold.ttf");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}

.container {
  padding: 0.5rem 3rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  [class*=col-xl-], [class*=col-lg-], [class*=col-md-] {
    width: 100%;
  }
  .col-1 {
    width: calc(8.3333% * 1);
  }
  .col-2 {
    width: calc(8.3333% * 2);
  }
  .col-3 {
    width: calc(8.3333% * 3);
  }
  .col-4 {
    width: calc(8.3333% * 4);
  }
  .col-5 {
    width: calc(8.3333% * 5);
  }
  .col-6 {
    width: calc(8.3333% * 6);
  }
  .col-7 {
    width: calc(8.3333% * 7);
  }
  .col-8 {
    width: calc(8.3333% * 8);
  }
  .col-9 {
    width: calc(8.3333% * 9);
  }
  .col-10 {
    width: calc(8.3333% * 10);
  }
  .col-11 {
    width: calc(8.3333% * 11);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  [class*=col-xl-], [class*=col-lg-] {
    width: 100%;
  }
  .col-md-1 {
    width: calc(8.3333% * 1);
  }
  .col-md-2 {
    width: calc(8.3333% * 2);
  }
  .col-md-3 {
    width: calc(8.3333% * 3);
  }
  .col-md-4 {
    width: calc(8.3333% * 4);
  }
  .col-md-5 {
    width: calc(8.3333% * 5);
  }
  .col-md-6 {
    width: calc(8.3333% * 6);
  }
  .col-md-7 {
    width: calc(8.3333% * 7);
  }
  .col-md-8 {
    width: calc(8.3333% * 8);
  }
  .col-md-9 {
    width: calc(8.3333% * 9);
  }
  .col-md-10 {
    width: calc(8.3333% * 10);
  }
  .col-md-11 {
    width: calc(8.3333% * 11);
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  [class*=col-xl-] {
    width: 100%;
  }
  .col-lg-1 {
    width: calc(8.3333% * 1);
  }
  .col-lg-2 {
    width: calc(8.3333% * 2);
  }
  .col-lg-3 {
    width: calc(8.3333% * 3);
  }
  .col-lg-4 {
    width: calc(8.3333% * 4);
  }
  .col-lg-5 {
    width: calc(8.3333% * 5);
  }
  .col-lg-6 {
    width: calc(8.3333% * 6);
  }
  .col-lg-7 {
    width: calc(8.3333% * 7);
  }
  .col-lg-8 {
    width: calc(8.3333% * 8);
  }
  .col-lg-9 {
    width: calc(8.3333% * 9);
  }
  .col-lg-10 {
    width: calc(8.3333% * 10);
  }
  .col-lg-11 {
    width: calc(8.3333% * 11);
  }
}
@media (min-width: 1081px) {
  .col-xl-1 {
    width: calc(8.3333% * 1);
  }
  .col-xl-2 {
    width: calc(8.3333% * 2);
  }
  .col-xl-3 {
    width: calc(8.3333% * 3);
  }
  .col-xl-4 {
    width: calc(8.3333% * 4);
  }
  .col-xl-5 {
    width: calc(8.3333% * 5);
  }
  .col-xl-6 {
    width: calc(8.3333% * 6);
  }
  .col-xl-7 {
    width: calc(8.3333% * 7);
  }
  .col-xl-8 {
    width: calc(8.3333% * 8);
  }
  .col-xl-9 {
    width: calc(8.3333% * 9);
  }
  .col-xl-10 {
    width: calc(8.3333% * 10);
  }
  .col-xl-11 {
    width: calc(8.3333% * 11);
  }
}
.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-66 {
  width: 66.6666%;
}

.w-50 {
  width: 50%;
}

.w-33 {
  width: 33.3333%;
}

.w-25 {
  width: 25%;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.d-inline-block {
  display: inline-block !important;
}

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

.justify-content-center {
  justify-content: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

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

.justify-content-around {
  justify-content: space-around;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.top-center {
  top: 50%;
  transform: translateY(-50%);
}

.left-center {
  left: 50%;
  transform: translateX(-50%);
}

.top-1 {
  top: 1rem;
}

.top-2 {
  top: 2rem;
}

.top-3 {
  top: 3rem;
}

.top-4 {
  top: 4rem;
}

.top-5 {
  top: 5rem;
}

.bottom-1 {
  bottom: 1rem;
}

.bottom-2 {
  bottom: 2rem;
}

.bottom-3 {
  bottom: 3rem;
}

.bottom-4 {
  bottom: 4rem;
}

.bottom-5 {
  bottom: 5rem;
}

.right-1 {
  right: 1rem;
}

.right-2 {
  right: 2rem;
}

.right-3 {
  right: 3rem;
}

.right-4 {
  right: 4rem;
}

.right-5 {
  right: 5rem;
}

.left-1 {
  left: 1rem;
}

.left-2 {
  left: 2rem;
}

.left-3 {
  left: 3rem;
}

.left-4 {
  left: 4rem;
}

.left-5 {
  left: 5rem;
}

.m-0 {
  margin: 0;
}

.m-auto {
  margin: auto;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 3rem;
}

.m-4 {
  margin: 4rem;
}

.m-5 {
  margin: 5rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-auto {
  margin-top: auto;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mr-0 {
  margin-right: 0;
}

.mr-auto {
  margin-right: auto;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-auto {
  margin-bottom: auto;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.ml-0 {
  margin-left: 0;
}

.ml-auto {
  margin-left: auto;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.ml-5 {
  margin-left: 5rem;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-1 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-2 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-3 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-4 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-5 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.p-0 {
  padding: 0;
  padding: auto;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-4 {
  padding: 4rem;
}

.p-5 {
  padding: 5rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pr-4 {
  padding-right: 4rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pl-5 {
  padding-left: 5rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-5 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

ul.bullet li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
ul.bullet li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #000;
  border: 3px solid #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
ul.bullet.bullet-primary li::before {
  background-color: #2e1ae6;
  border-color: #2e1ae6;
}
ul.bullet.bullet-danger li::before {
  background-color: #ca1111;
  border-color: #ca1111;
}
ul.bullet.bullet-success li::before {
  background-color: #0e8121;
  border-color: #0e8121;
}
ul.bullet.bullet-bg-light li::before {
  background-color: #f6f7f8;
}
ul.bullet.bullet-bg-primary li::before {
  background-color: #2e1ae6;
}
ul.bullet.bullet-bg-danger li::before {
  background-color: #ca1111;
}
ul.bullet.bullet-bg-success li::before {
  background-color: #0e8121;
}
ul.bullet.bullet-lg li {
  padding-left: 1.5rem;
}
ul.bullet.bullet-lg li::before {
  width: 10px;
  height: 10px;
}

ul.arrow li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
ul.arrow li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 3px solid #000;
  border-top: 3px solid #000;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}
ul.arrow.arrow-primary li::before {
  border-color: #2e1ae6;
}
ul.arrow.arrow-danger li::before {
  border-color: #ca1111;
}
ul.arrow.arrow-success li::before {
  border-color: #0e8121;
}

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

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

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

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

.tt-lower {
  text-transform: lowercase;
}

.tt-upper {
  text-transform: uppercase;
}

.tt-capitalize {
  text-transform: capitalize;
}

.text-primary {
  color: #2e1ae6;
}

.text-success {
  color: #0e8121;
}

.text-danger {
  color: #ca1111;
}

.text-warning {
  color: #f17807;
}

.text-info {
  color: #4b4c53;
}

.text-muted {
  color: #afb0b8;
}

.text-light {
  color: #f6f7f8;
}

.text-dark {
  color: #302e2e;
}

.text-primary-dark {
  color: #170d73;
}

.text-success-dark {
  color: #074111;
}

.text-warning-dark {
  color: #793c04;
}

.text-danger-dark {
  color: #650909;
}

.text-info-dark {
  color: #26262a;
}

.text-yellow {
  color: #ecf009;
}

.text-bold {
  font-weight: bold;
}

.text-bolder {
  font-weight: bolder;
}

.text-italic {
  font-style: italic;
}

.text-underline {
  text-decoration: underline;
}

.text-small {
  font-size: 75%;
}

.text-large {
  font-size: 125%;
}

.text-decoration-none {
  text-decoration: none;
}

.text-decoration-underline {
  text-decoration: underline;
}

.text-decoration-line-through {
  text-decoration: line-through;
}

.text-decoration-overline {
  text-decoration: overline;
}

.text-decoration-underline-overline {
  text-decoration: underline overline;
}

.f-1 {
  font-size: 1rem;
}

.f-2 {
  font-size: 1.2rem;
}

.f-3 {
  font-size: 1.5rem;
}

.f-4 {
  font-size: 1.8rem;
}

.f-5 {
  font-size: 2.2rem;
}

.bold-1 {
  font-weight: 500;
}

.bold-2 {
  font-weight: 600;
}

.bold-3 {
  font-weight: 700;
}

.bold-4 {
  font-weight: 800;
}

.bold-5 {
  font-weight: 900;
}

.bg-primary {
  background-color: #2e1ae6;
}

.bg-success {
  background-color: #0e8121;
}

.bg-danger {
  background-color: #ca1111;
}

.bg-warning {
  background-color: #f17807;
}

.bg-info {
  background-color: #4b4c53;
}

.bg-muted {
  background-color: #afb0b8;
}

.bg-light {
  background-color: #f6f7f8;
}

.bg-dark {
  background-color: #302e2e;
}

.bg-light-primary {
  background-color: #9d97ce;
}

.bg-light-success {
  background-color: #91c99a;
}

.bg-light-danger {
  background-color: #b88383;
}

.bg-light-warning {
  background-color: #f5bd88;
}

.bg-light-dark {
  background-color: #a19c9c;
}

.form-control {
  width: 100%;
  display: block;
  padding: 0.5rem 0.7rem;
  margin-bottom: 0.4rem;
  border-radius: 0.3rem;
  font-size: 1.1rem;
  outline: none;
}

.datalist {
  width: 100%;
  min-height: 3rem;
  border: 1px solid black;
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
  border-top: none;
  padding: 0 1rem 1rem 1rem;
  overflow: hidden;
  position: relative;
  display: none;
}
.datalist.d-block {
  display: block;
}
.datalist ul {
  width: 100%;
  padding: 0 1rem 1rem 1rem;
  position: absolute;
  top: 0;
  left: 0;
}
.datalist ul li {
  padding: 0.5rem;
  border-radius: 0.3rem;
  cursor: pointer;
}
.datalist ul li:hover, .datalist ul li.highlight, .datalist ul li:focus {
  background-color: #9d97ce;
}

.btn {
  display: inline-block;
  font-weight: 600;
  border: none;
  padding: 0.5rem 1rem;
  background-color: #d4d4da;
  color: #302e2e;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn-lg {
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-sm {
  padding: 0.3rem 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn:hover {
  background-color: #babac4;
}

.btn-primary {
  background-color: #2e1ae6;
  color: #f6f7f8;
}

.btn-primary:hover {
  background-color: #1300a3;
}

.btn-danger {
  background-color: #ca1111;
  color: #f6f7f8;
}

.btn-danger:hover {
  background-color: #7c0000;
}

.btn-success {
  background-color: #0e8121;
  color: #f6f7f8;
}

.btn-success:hover {
  background-color: #006912;
}

.btn-warning {
  background-color: #f17807;
  color: #f6f7f8;
}

.btn-warning:hover {
  background-color: #e77000;
}

.btn-light {
  background-color: #f6f7f8;
  color: #302e2e;
}

.btn-light:hover {
  background-color: #a19c9c;
}

.cursor-pointer {
  cursor: pointer;
}

.border {
  border: 1px solid #000;
}

.border-0 {
  border: none;
}

.border-1 {
  border-width: 3px !important;
}

.border-2 {
  border-width: 5px !important;
}

.border-3 {
  border-width: 7px !important;
}

.border-4 {
  border-width: 9px !important;
}

.border-5 {
  border-width: 11px !important;
}

.border-top {
  border-top: 1px solid #000;
}

.border-bottom {
  border-bottom: 1px solid #000;
}

.border-right {
  border-right: 1px solid #000;
}

.border-left {
  border-left: 1px solid #000;
}

.border-primary {
  border-color: #1300a3;
}

.border-dark {
  border-color: #302e2e;
}

.border-danger {
  border-color: #7c0000;
}

.border-info {
  border-color: #4b4c53;
}

.border-warning {
  border-color: #e77000;
}

.border-success {
  border-color: #006912;
}

.border-muted {
  border-color: #afb0b8;
}

.border-radius-1 {
  border-radius: 0.5rem;
}

.border-radius-2 {
  border-radius: 1rem;
}

.border-radius-3 {
  border-radius: 1.5rem;
}

.border-radius-4 {
  border-radius: 2rem;
}

.border-radius-5 {
  border-radius: 2.5rem;
}

.border-radius-circle {
  border-radius: 50%;
}

.box-shadow {
  box-shadow: 0.5rem 0.5rem 0.8rem rgba(0, 0, 0, 0.4);
}

.resize-vertical {
  resize: vertical;
}

.resize-horizontal {
  resize: horizontal;
}

.resize-none {
  resize: none;
}

.a-disable {
  pointer-events: none;
}

.pagination {
  width: 100%;
  text-align: center;
  margin: 0.5rem 0;
  padding: 0.5rem;
}
.pagination ul li {
  display: inline-block;
  list-style: none;
}
.pagination ul li a {
  text-decoration: none;
  color: #f6f7f8;
  background-color: #2e1ae6;
  padding: 0.2rem 0.5rem;
  margin-right: 0.3rem;
  border-radius: 0.2rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.pagination ul li a:hover, .pagination ul li a:active, .pagination ul li a.active {
  background-color: #9d97ce;
  color: #1300a3;
}

.muted {
  color: #a19c9c;
}

.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  display: none;
}
.modal.d-block {
  display: block;
}
.modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 2.8rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #f6f7f8;
  cursor: pointer;
}
.modal .modal-title {
  width: 100%;
  background-color: #e77000;
  color: #f6f7f8;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
}
.modal .modal-body {
  width: 100%;
  height: calc(100vh - 4.5rem);
  padding: 1rem;
  background-color: #f6f7f8;
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
  overflow-y: auto;
}

@media (max-width: 600px) {
  html {
    font-size: 70%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 80%;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 90%;
  }
}
.setting {
  width: 100%;
  padding: 1rem;
}
.setting-body {
  width: 100%;
  border: 1px solid #302e2e;
  border-radius: 0.5rem;
  overflow: hidden;
}
.setting-body-tab {
  background-color: #302e2e;
}
.setting-body-tab ul li {
  display: inline-block;
  margin-right: -5px;
  padding: 0.6rem 1rem;
  color: #f6f7f8;
  font-weight: 600;
  border-right: 1px solid #9e9da1;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.2s linear;
}
.setting-body-tab ul li:hover, .setting-body-tab ul li.active {
  background-color: #f6f7f8;
  color: #302e2e;
}

#site, #menu, #general {
  padding: 1rem;
}

#site .site-navigation-link li {
  display: inline-block;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border: 1px solid #2e1ae6;
  border-radius: 0.5rem;
  background-color: #9d97ce;
  color: #2e1ae6;
  cursor: pointer;
  transition: 0.2s linear;
}
#site .site-navigation-link li:hover, #site .site-navigation-link li.active {
  background-color: #2e1ae6;
  color: #f6f7f8;
}

#site-permission table {
  width: 100%;
  border-collapse: collapse;
}
#site-permission table thead {
  background-color: #302e2e;
  color: #f6f7f8;
}
#site-permission table thead tr th {
  padding: 0.4rem 0.8rem;
  border-right: 1px solid #9e9da1;
}
#site-permission table thead tr th:last-child {
  border-right: none;
}
#site-permission table tbody tr {
  border-bottom: 1px solid #9e9da1;
}
#site-permission table tbody tr:nth-child(even), #site-permission table tbody tr:hover {
  background-color: #d8d8d9;
}
#site-permission table tbody tr td {
  padding: 0.4rem 0.8rem;
}
#site-permission table tbody tr td .material-icons {
  cursor: pointer;
}

.retailer-dashboard {
  width: 100%;
  padding: 1rem;
  border: 1px solid #9e9da1;
  border-radius: 1rem;
  box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.4);
}
.retailer-dashboard .upper-report-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.retailer-dashboard .upper-report-section .report-circle {
  width: 12rem;
  height: 12rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #302e2e;
  border-radius: 50%;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.8);
}
.retailer-dashboard .upper-report-section .report-circle h4, .retailer-dashboard .upper-report-section .report-circle h5 {
  color: #f6f7f8;
}
.retailer-dashboard .upper-report-section .report-circle.danger {
  background-color: #ca1111;
}
.retailer-dashboard .upper-report-section .report-circle.success {
  background-color: #0e8121;
}
.retailer-dashboard .upper-report-section .report-circle.primary {
  background-color: #2e1ae6;
}
.retailer-dashboard .upper-report-section .report-circle.dark {
  background-color: #302e2e;
}
.retailer-dashboard .middle-report-section {
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.retailer-dashboard .middle-report-section .report-card {
  width: 32%;
  margin: 0.5rem 0.5%;
  padding: 1rem;
  border: 1px solid #9e9da1;
  border-radius: 0.8rem;
  overflow: hidden;
}
.retailer-dashboard .middle-report-section .report-card .title {
  padding: 0 0.5rem;
  font-weight: 700;
  color: #302e2e;
  border-bottom: 3px solid #2e1ae6;
}
.retailer-dashboard .middle-report-section .report-card .title.add {
  padding-right: 50px;
  position: relative;
}
.retailer-dashboard .middle-report-section .report-card .title.add a {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.retailer-dashboard .middle-report-section .report-card .body ul li {
  padding: 0.5rem;
  border-bottom: 1px solid #9e9da1;
  position: relative;
}
.retailer-dashboard .middle-report-section .report-card .body ul li.amount {
  padding-right: 100px;
}
.retailer-dashboard .middle-report-section .report-card .body ul li.amount span {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .retailer-dashboard .middle-report-section .report-card {
    width: 49%;
  }
}
.received-amount {
  padding: 1rem;
}
.received-amount-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.received-amount-body-item {
  width: 100%;
  margin: 0.5rem 0;
  padding: 1rem;
  border: 1px solid #9e9da1;
  border-radius: 0.6rem;
  background-color: #fce4cd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s linear;
}
.received-amount-body-item:hover {
  background-color: #fbd7b5;
}
.received-amount-body-item-details {
  width: 80%;
}
.received-amount-body-item-details p {
  margin-bottom: 1rem;
  position: relative;
}
.received-amount-body-item-details p:last-child {
  margin-bottom: 0;
}
.received-amount-body-item-details p span {
  display: block;
}
.received-amount-body-item-amount {
  width: 20%;
  min-width: 100px;
  text-align: right;
  font-weight: bold;
  color: #0e8121;
}

.r-farmers {
  padding: 1rem;
}
.r-farmers table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #2e1ae6;
}
.r-farmers table thead {
  background-color: #2e1ae6;
}
.r-farmers table thead tr th {
  padding: 0.5rem;
  color: #f6f7f8;
  border-right: 1px solid #f6f7f8;
}
.r-farmers table thead tr th:last-child {
  border-right: none;
}
.r-farmers table tbody tr {
  border-bottom: 1px solid #9e9da1;
}
.r-farmers table tbody tr:nth-child(even) {
  background-color: #fbd7b5;
}
.r-farmers table tbody tr:last-child {
  border-bottom: none;
}
.r-farmers table tbody tr:hover {
  background-color: #fbd7b5;
}
.r-farmers table tbody tr td {
  padding: 0.5rem;
}

.retailer-transactions {
  padding: 1rem;
}
.retailer-transactions table {
  width: 100%;
  border-collapse: collapse;
}
.retailer-transactions table thead {
  border-top: 2px solid #302e2e;
  border-bottom: 2px solid #302e2e;
}
.retailer-transactions table thead tr th {
  padding: 0.6rem 0.5rem;
}
.retailer-transactions table tbody tr {
  border-bottom: 1px solid #9e9da1;
}
.retailer-transactions table tbody tr:nth-child(even) {
  background-color: #f0f0f1;
}
.retailer-transactions table tbody tr:hover {
  background-color: #f0f0f1;
}
.retailer-transactions table tbody tr td {
  padding: 0.5rem;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s;
}

.add-farmer {
  padding: 1rem;
}
.add-farmer form {
  width: 100%;
  min-width: 400px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #2e1ae6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.add-farmer form .form-input {
  width: 25%;
  padding: 0 1rem;
  position: relative;
}
.add-farmer form .form-input input {
  width: 100%;
  margin: 0.8rem 0;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  background: transparent;
  color: #f6f7f8;
  border: 1px solid #f6f7f8;
  outline: none;
  border-radius: 0.5rem;
}
.add-farmer form .form-input input::selection {
  background-color: #ecf009;
  color: #1300a3;
}
.add-farmer form .form-input input:focus ~ span, .add-farmer form .form-input input:valid ~ span, .add-farmer form .form-input input:-webkit-autofill ~ span,
.add-farmer form .form-input input:-webkit-autofill:focus ~ span {
  top: 0;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.2rem 1rem;
  border-radius: 0.3rem;
  background-color: #f6f7f8;
  color: #2e1ae6;
}
.add-farmer form .form-input span {
  display: inline-block;
  position: absolute;
  left: 2rem;
  top: 1.4rem;
  font-size: 1rem;
  color: #c5c6c6;
  transition: all 0.2s linear;
}
.add-farmer form button {
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  background-color: transparent;
  color: #f6f7f8;
  border: 2px solid #f6f7f8;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.3s linear;
}
.add-farmer form button:hover {
  background-color: #f6f7f8;
  color: #2e1ae6;
}

@media (min-width: 650px) {
  .received-amount-body-item-details p span {
    position: absolute;
    top: 50%;
    left: 130px;
    transform: translateY(-50%);
  }
}
@media (max-width: 1024px) {
  .add-farmer form .form-input {
    width: 33%;
  }
}
@media (max-width: 768px) {
  .add-farmer form .form-input {
    width: 50%;
  }
}
@media (max-width: 550px) {
  .add-farmer form .form-input {
    width: 100%;
  }
}
@media print {
  header, .sidebar, .modal, #footer, .print-button {
    display: none;
  }
}
.loan-application {
  width: 100%;
  margin: 2rem 0;
  padding: 2rem 1rem;
  background-color: #1300a3;
  border-radius: 0.5rem;
  box-shadow: 0.3rem 0.3rem 0.4rem rgba(0, 0, 0, 0.6);
}
.loan-application-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.loan-application-section-card {
  width: 32%;
  padding: 1rem;
  border: 1px solid #f6f7f8;
  margin-bottom: 2rem;
}
.loan-application-section-card h3 {
  color: #f6f7f8;
  margin-bottom: 1rem;
  position: relative;
}
.loan-application-section-card h3::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #f6f7f8;
  position: absolute;
  left: 0;
  bottom: -0.3rem;
}
.loan-application-section-card p {
  color: #f6f7f8;
  margin-top: 1rem;
  border-bottom: 1px solid #f6f7f8;
}
.loan-application-section-card p a {
  color: #f6f7f8;
}

.lonee_add_form {
  width: 100%;
  padding: 1rem;
}
.lonee_add_form form fieldset {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.4rem;
}
.lonee_add_form form fieldset legend {
  padding: 0.7rem 1rem;
  background-color: #2e1ae6;
  color: #f6f7f8;
  border-radius: 0.5rem;
  font-weight: bold;
}
.lonee_add_form form fieldset .form-group {
  margin-bottom: 1rem;
}

.co-applicants-list table thead tr {
  background-color: #302e2e;
}
.co-applicants-list table thead tr th {
  padding: 0.7rem 0.5rem;
  color: #f6f7f8;
  border-right: 1px solid #f6f7f8;
}
.co-applicants-list table thead tr th:last-child {
  border-right: none;
}
.co-applicants-list table tbody tr:nth-child(even) {
  background-color: #9e9da1;
}
.co-applicants-list table tbody tr:hover {
  background-color: #9e9da1;
}
.co-applicants-list table tbody tr td {
  padding: 0.5rem;
  border: 1px solid #302e2e;
}

.icons {
  font-family: "Material Icons";
}
.icons.x2x {
  font-size: 1.5rem;
}
.icons.x3x {
  font-size: 2rem;
}
.icons.x4x {
  font-size: 3rem;
}

* {
  font-family: "Open Sans Regular", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0.05rem;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-family: "RobotoCondensed-Bold", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #302e2e;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  color: #222020;
}

blockquote {
  border-left: 0.8rem solid #302e2e;
  background-color: #a19c9c;
  margin: 2rem 0;
  padding: 1rem 2rem;
}
blockquote p {
  font-family: "Open Sans Italic", sans-serif;
  color: #302e2e;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: justify;
}
blockquote p::before {
  content: "“";
  font-size: 1.4rem;
  padding-right: 0.125rem;
}
blockquote p::after {
  content: "”";
  font-size: 1.4rem;
  padding-left: 0.125rem;
}
blockquote span {
  display: block;
  margin: 0.75rem 1rem;
  text-align: right;
  color: #4b4c53;
}
blockquote span::before {
  content: "-- ";
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

img {
  width: 100%;
  height: auto;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

li {
  list-style: none;
}

.content-heading {
  text-align: center;
  margin: 2rem 0 3.5rem 0;
  color: #1300a3;
  position: relative;
}
.content-heading::before {
  content: "";
  min-width: 12rem;
  margin: 0 50%;
  border-bottom: 0.8rem solid #7c0000;
  border-radius: 2rem;
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  transform: translateX(-50%);
}
.content-heading::after {
  content: "";
  width: 4rem;
  height: 4rem;
  background-image: url("./../../../images/icons/starheading.png");
  background-repeat: no-repeat;
  margin: 0 50%;
  position: absolute;
  left: 0;
  bottom: -115%;
  transform: translateX(-50%);
  z-index: 1;
}

#header {
  background-color: #219205;
}
#header a:link, #header a:visited {
  padding: 0.5rem 1rem;
  color: #e2e1eb;
  text-transform: uppercase;
  border-radius: 0.3rem;
  transition: all 0.2s linear;
}
#header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header nav .brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
#header nav .brand .brand-name {
  font-size: 1.1rem;
  font-weight: 700;
}
#header nav .brand img {
  width: 3rem;
  height: auto;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#navbar a.active, #navbar a:hover {
  background-color: #e2e1eb;
  color: #219205;
}
#navbar .profile-link {
  cursor: pointer;
  position: relative;
}
#navbar .profile-link img {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #f6f7f8;
  border-radius: 50%;
}
#navbar .profile-link .header-profile-details {
  width: 200px;
  height: auto;
  background-color: #9d97ce;
  color: #1300a3;
  border: 1px solid #1300a3;
  border-radius: 0.4rem;
  position: absolute;
  right: 0;
  top: 3rem;
  z-index: 9;
  display: none;
}
#navbar .profile-link .header-profile-details img {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
}
#navbar .profile-link .header-profile-details a {
  text-transform: capitalize;
}
#navbar .profile-link .header-profile-details.show {
  display: block;
}

.nav-bar {
  display: none;
  font-size: 1.2rem;
  color: #fff;
}

.expand-navbar #navbar {
  width: 20rem;
  display: block;
  position: fixed;
  right: 0;
  top: 3rem;
  background-color: #219205;
  padding: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  border-bottom-left-radius: 0.4rem;
  z-index: 999;
}

.expand-navbar #navbar li {
  margin-bottom: 2rem;
}

.signup-login {
  background-color: red;
  text-transform: lowercase !important;
}

.slide {
  width: 100%;
  position: relative;
}

.slide-image {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.slide-image img {
  width: 100%;
  height: 25rem;
}

.slide-stuff {
  width: 0.1rem;
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s linear;
}

.slide-text {
  width: 60%;
  margin: auto;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.4rem;
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
}
.slide-text h3, .slide-text p {
  color: #fff;
}

.slide-btn {
  width: 100%;
  position: absolute;
  bottom: 1rem;
  left: 0;
}
.slide-btn button {
  background-color: transparent;
  border: none;
  color: transparent;
  cursor: pointer;
}
.slide-btn button::after {
  content: "Dil";
  width: 1rem;
  border-bottom: 0.2rem solid #fff;
}

.slide-stuff.slide-show {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

#services ul li {
  text-align: left;
  margin: 0.3rem 0.6rem;
  position: relative;
}
#services ul li::before {
  content: "\ebb9";
  font-family: "Material Icons";
  color: #302e2e;
  position: absolute;
  left: 0;
  top: 0.2rem;
  transform: rotate(90deg);
  color: #4b4c53;
  font-size: 1.1rem;
  font-weight: 500;
}
#services ul li a {
  display: inline-block;
  color: #302e2e;
  transition: 0.2s linear;
  margin-left: 2rem;
}
#services ul li a:hover {
  text-decoration: double underline;
}
#services .card {
  border: 0.5px solid #4b4c53;
  border-radius: 0.3rem;
  box-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.5);
  text-align: center;
}
#services .card img {
  width: 7rem;
}
#services .card p {
  text-align: center;
}
#services .card .card-link {
  display: inline-block;
  margin: 1rem;
  padding: 0.4rem 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  color: #f6f7f8;
  transition: 0.2s linear;
}
#services .card .card-link:hover {
  background-color: transparent;
  color: #000000;
}

@keyframes advertize {
  0% {
    left: 1rem;
    transform: translateX(0%);
  }
  12% {
    top: -6rem;
  }
  25% {
    left: calc(100% - 21rem);
    transform: translateX(0%);
  }
  37% {
    top: 6rem;
  }
  50% {
    left: 1rem;
    transform: translateX(0%);
  }
  62% {
    top: -6rem;
  }
  75% {
    left: calc(100% - 21rem);
    transform: translateX(0%);
  }
  87% {
    top: 6rem;
  }
}
.advertize {
  width: 100%;
  margin-top: 1rem;
}
.advertize .advertize-farmer {
  width: 100%;
  height: 20rem;
}
.advertize .advertize-farmer .advertize-farmer-registration {
  width: 100%;
  cursor: pointer;
  position: relative;
}
.advertize .advertize-farmer .advertize-farmer-registration img {
  width: auto;
  height: 20rem;
  display: block;
  border-radius: 1rem;
  position: relative;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.advertize .advertize-farmer .advertize-farmer-registration img.animation {
  animation-name: advertize;
  animation-duration: 5s;
}

.addcontent {
  width: 100%;
  padding: 1rem;
}
.addcontent label {
  display: block;
  margin: 0.5rem 0 0.5rem 0.5rem;
  font-weight: 600;
}
.addcontent input, .addcontent select, .addcontent textarea {
  margin-bottom: 1rem;
}
.addcontent input:focus, .addcontent select:focus, .addcontent textarea:focus {
  background-color: rgb(240, 235, 175);
}
.addcontent textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0.4rem;
  resize: vertical;
}
.addcontent datalist {
  display: block;
  width: 100%;
}
.addcontent datalist option {
  display: block;
  width: 100%;
}
.addcontent .direction {
  border-radius: 0.5rem;
  background-color: #f5bd88;
  border: 1px solid #7c0000;
  box-shadow: 0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
}
.addcontent .direction ul li {
  margin-bottom: 0.6rem;
  padding-left: 1.6rem;
  position: relative;
}
.addcontent .direction ul li::before {
  content: "->";
  font-size: 1.1rem;
  font-weight: 800;
  margin-right: 0.4rem;
  color: #1300a3;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.under-privacy {
  padding: 1rem;
}
.under-privacy h1 {
  font-size: 2rem;
}
.under-privacy h2 {
  font-size: 1.6rem;
}
.under-privacy p {
  margin: 0.5rem 0 1rem 0;
}
.under-privacy ul {
  margin-bottom: 1rem;
}
.under-privacy ul li {
  list-style: disc;
  margin: 0 0 0.5rem 1.5rem;
}

.terms {
  padding: 1rem;
}
.terms p {
  margin: 0.5rem 0 1rem 0;
}
.terms ul {
  margin-bottom: 1rem;
}
.terms ul li {
  list-style-type: disc;
  margin: 0 0 0.5rem 1.5rem;
}

.contact .top {
  margin: 1rem;
  padding: 3rem 0rem;
  background-color: #91c99a;
  color: #006912;
  border: 1px solid #006912;
  border-radius: 0.3rem;
  text-align: center;
}
.contact .top p {
  color: #0e8121;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}
.contact .contact-body {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .contact-body .contact-mail {
  width: 50%;
  padding: 1rem;
}
.contact .contact-body .contact-mail form {
  padding: 1rem;
  border: 1px solid #1300a3;
  border-radius: 0.4rem;
  box-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.3);
}
.contact .contact-body .contact-mail label {
  font-weight: 600;
}
.contact .contact-body .contact-mail input, .contact .contact-body .contact-mail textarea {
  margin-bottom: 1rem;
}
.contact .contact-body .contact-mail input:focus, .contact .contact-body .contact-mail textarea:focus {
  background-color: #f0ebc5;
}
.contact .contact-body .contact-mail textarea {
  resize: none;
}
.contact .contact-body .contact-text {
  width: 50%;
  padding: 1rem;
}
.contact .contact-body .contact-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact .contact-body .contact-text p {
  padding: 1rem;
}
.contact .contact-body .contact-text p strong {
  color: #302e2e;
  padding-bottom: 0.35rem;
}

.profile {
  width: 100%;
  padding: 2rem;
}

.profile-page {
  width: 100%;
  padding: 1rem;
}
.profile-page .profile-page-main-info {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.profile-page .profile-page-main-info .profile-page-name-image {
  width: 28%;
  min-width: 13rem;
  max-width: 35rem;
  margin: 0rem auto;
  border: 1px solid #a19c9c;
  border-bottom-left-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
}
.profile-page .profile-page-main-info .profile-page-name-image .profile-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.profile-page .profile-page-main-info .profile-page-name-image .profile-image label {
  width: 100%;
  padding: 0.5rem 0rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #9d97ce;
  color: #2e1ae6;
  cursor: pointer;
  transition: 0.2s linear;
  position: absolute;
  left: 0;
  bottom: -2.5rem;
}
.profile-page .profile-page-main-info .profile-page-name-image .profile-image label:hover {
  color: #1300a3;
  bottom: 0;
}
.profile-page .profile-page-main-info .profile-page-name-image .profile-image label input {
  display: none;
}
.profile-page .profile-page-main-info .profile-page-name-image .profile-image img {
  width: 100%;
  height: auto;
}
.profile-page .profile-page-main-info .profile-page-name-image .profile-image img:hover + label {
  bottom: 0;
}
.profile-page .profile-page-main-info .profile-page-name-image .profile-info {
  width: 100%;
  padding: 1rem;
}
.profile-page .profile-page-main-info .profile-page-name-image .profile-info h4, .profile-page .profile-page-main-info .profile-page-name-image .profile-info p {
  text-align: center;
}
.profile-page .profile-page-main-info .profile-page-info {
  width: 70%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.8rem;
  box-shadow: 0.3rem 0.3rem 0.4rem rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.profile-page .profile-page-main-info .profile-page-info .column {
  width: 30%;
  padding: 1.5rem 0rem 0.5rem 0rem;
}
.profile-page .profile-page-main-info .profile-page-info .value {
  width: 70%;
  font-weight: bold;
  padding: 1.5rem 0rem 0.5rem 0rem;
  border-bottom: 1px solid #9d97ce;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.profile-page .profile-page-main-info .profile-page-info .value p {
  width: 49%;
  margin-bottom: 0.4rem;
}
.profile-page .profile-page-main-info .profile-page-info .profile-update {
  width: 100%;
  margin: 2rem 0rem 1rem 0;
  text-align: center;
}
.profile-page .profile-page-main-info .profile-page-info h4 {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #2e1ae6;
  color: #f6f7f8;
  border: 1px solid #1300a3;
  border-radius: 0.4rem;
}

.cursor-pointer {
  font-size: bold;
  cursor: pointer;
}

#updateDetails form, #updatePaymentDetails form, #approve form {
  width: 50%;
  min-width: 400px;
  margin: 0 auto;
}
#updateDetails form fieldset, #updatePaymentDetails form fieldset, #approve form fieldset {
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
}
#updateDetails form fieldset legend, #updatePaymentDetails form fieldset legend, #approve form fieldset legend {
  padding: 0.3rem 0.7rem;
  background-color: #e77000;
  color: #f6f7f8;
  border-radius: 0.4rem;
}
#updateDetails form fieldset div, #updatePaymentDetails form fieldset div, #approve form fieldset div {
  margin-bottom: 1rem;
}

.profile-change-password {
  width: 100%;
  padding: 1rem;
}
.profile-change-password form {
  width: 50%;
  min-width: 400px;
  margin: 1rem auto;
}
.profile-change-password form fieldset {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.profile-change-password form fieldset legend {
  padding: 0.4rem 1rem;
  background-color: #e77000;
  color: #f6f7f8;
  border-radius: 0.4rem;
}
.profile-change-password form fieldset label {
  width: 200px;
  margin-bottom: 1rem;
}
.profile-change-password form fieldset input {
  width: calc(100% - 200px);
  padding: 0.3rem 0.6rem;
  margin-bottom: 1rem;
}
.profile-change-password form fieldset input[type=submit] {
  width: fit-content;
  padding: 0.4rem 0.8rem;
  background-color: #0e8121;
  color: #f6f7f8;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
}
.profile-change-password form fieldset input[type=submit]:hover {
  background-color: #006912;
}

.user-update-form {
  width: 100%;
  padding: 1rem;
}
.user-update-form form {
  width: 50%;
  min-width: 400px;
  margin: 1rem auto;
}
.user-update-form form fieldset {
  padding: 1rem;
  border-radius: 0.7rem;
}
.user-update-form form fieldset legend {
  padding: 0.4rem 0.9rem;
  background-color: #e77000;
  color: #f6f7f8;
  border-radius: 0.4rem;
}

.update-documents {
  width: 50%;
  margin: 0 auto;
  padding: 1rem;
}
.update-documents form fieldset {
  padding: 1rem;
  border-radius: 0.5rem;
}
.update-documents form fieldset legend {
  padding: 0.4rem 0.9rem;
  background-color: #e77000;
  color: #f6f7f8;
  border-radius: 0.4rem;
}
.update-documents form fieldset .form-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.update-documents form fieldset .form-group label, .update-documents form fieldset .form-group input {
  display: inline-block;
  margin: 1rem 0rem 0.5rem 0rem;
}
.update-documents form fieldset .form-group label {
  min-width: 200px;
  margin-left: 1rem;
}
.update-documents form fieldset .form-group label.custom-upload-file {
  width: fit-content;
  min-width: max-content;
  padding: 0.3rem 0.6rem;
  background-color: #f17807;
  color: #f6f7f8;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: 0.3s linear;
}
.update-documents form fieldset .form-group label.custom-upload-file:hover {
  background-color: #e77000;
}
.update-documents form fieldset .form-group label.custom-upload-file input {
  display: none;
}
.update-documents form fieldset .form-group input {
  min-width: 200px;
  padding: 0.3rem 0.6rem;
  border-radius: 0.3rem;
  margin-left: 1rem;
}

#updatePaymentDetails form fieldset .payment-mode-radio-button {
  margin-bottom: 1rem;
  border-bottom: 1px solid #a19c9c;
}
#updatePaymentDetails form fieldset .payment-mode-radio-button label {
  display: inline-block;
  margin: 0.3rem 0.5rem;
}
#updatePaymentDetails form fieldset .form-group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#updatePaymentDetails form fieldset .form-group label {
  width: 200px;
}
#updatePaymentDetails form fieldset .form-group input {
  width: calc(100% - 200px);
  padding: 0.3rem 0.6rem;
}

.welcome {
  width: 100%;
  min-height: 80vh;
}

#payment-receipt {
  width: 70%;
  min-height: 80vh;
  margin: 1rem auto;
}
#payment-receipt h2 {
  font-size: 1.3rem;
  line-height: 2.6rem;
}
#payment-receipt .payment-header {
  width: 100%;
}
#payment-receipt .payment-header .payment-brand-name {
  width: 70%;
  float: left;
}
#payment-receipt .payment-header .payment-brand-name img {
  width: 3rem;
  height: auto;
  display: inline-block;
  float: left;
}
#payment-receipt .payment-header .receipt-date {
  width: 30%;
  float: left;
}
#payment-receipt .payment-details {
  width: 100%;
  margin-bottom: 2rem;
  padding: 3rem 0;
  clear: left;
}
#payment-receipt .payment-details p {
  font-size: 1.1rem;
  line-height: 2rem;
  text-indent: 5rem;
}
#payment-receipt .payment-details p span {
  font-weight: bold;
  text-decoration: underline dashed 3px #000;
}
#payment-receipt .rupees {
  width: 50%;
  float: left;
  padding: 0.8rem 1.2rem;
  border: 2px solid #000;
  border-radius: 0.6rem;
}
#payment-receipt .rupees p {
  font-size: 1.2rem;
  font-weight: 600;
}
#payment-receipt .signatory {
  width: 50%;
  float: left;
  padding: 1rem 0;
}
#payment-receipt .signatory p {
  text-align: center;
}

.show_password {
  width: calc(100% - 200px);
  position: relative;
}
.show_password input {
  display: block;
  width: 100% !important;
  padding-right: 2rem !important;
}
.show_password .show-eye {
  font-size: 1.1rem;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  z-index: 999;
  cursor: pointer;
}

.share-details table {
  width: 100%;
  border-collapse: collapse;
}
.share-details table thead {
  background-color: #302e2e;
  color: #f6f7f8;
}
.share-details table thead tr th {
  padding: 0.5rem;
  border-right: 1px solid #a19c9c;
}
.share-details table thead tr th:last-child {
  border-right: none;
}
.share-details table tbody tr td {
  padding: 0.5rem;
  border-bottom: 1px solid #302e2e;
}
.share-details table tbody tr:nth-child(even) {
  background-color: #cfd0d6;
}
.share-details table tbody tr:hover {
  background-color: #cfd0d6;
}
.share-details table tbody tr.total {
  background-color: transparent;
}
.share-details table tbody tr.total td {
  padding: 1rem;
  text-align: center;
  font-weight: bold;
}
.share-details table tbody tr.total:hover {
  background-color: transparent;
}

.message {
  width: 90%;
  border-radius: 0.3rem;
  margin: 0.5rem auto;
}

.message-success {
  border: 1px solid #006912;
}

.message-info {
  border: 1px solid #4b4c53;
}

.message-danger {
  border: 1px solid #7c0000;
}

.message-warning {
  border: 1px solid #e77000;
}

.message-primary {
  border: 1px solid #1300a3;
}

.msg {
  padding: 0.4rem 1rem;
  color: #f6f7f8;
  position: relative;
}
.msg span {
  position: absolute;
  right: 1rem;
  top: 0.2rem;
  font-size: 1.2rem;
  cursor: pointer;
}
.msg span:active {
  transform: scale(0.95, 0.95);
}

.msg-success {
  background-color: #006912;
}

.msg-info {
  background-color: #4b4c53;
}

.msg-danger {
  background-color: #7c0000;
}

.msg-warning {
  background-color: #e77000;
}

.msg-primary {
  background-color: #1300a3;
}

.msg-para {
  padding: 1rem 1rem;
}

.msg-para-success {
  color: #006912;
  background-color: #91c99a;
}

.msg-para-info {
  color: #4b4c53;
  background-color: #f6f7f8;
}

.msg-para-danger {
  color: #7c0000;
  background-color: #b88383;
}

.msg-para-warning {
  color: #e77000;
  background-color: #f5bd88;
}

.msg-para-primary {
  color: #1300a3;
  background-color: #9d97ce;
}

.hide-msg {
  display: none;
}

#notfound {
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#notfound h1 {
  font-size: 10rem;
}

.login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .login-box {
  width: 40%;
  min-width: 400px;
}
.login .login-box .login-area {
  padding: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.3rem;
  box-shadow: 0.3rem 0.3rem 0.4rem rgba(0, 0, 0, 0.4);
}
.login .login-box .login-area .loginas {
  margin: 0.5rem 0 1rem 0;
}
.login .login-box .login-area .loginas h5 {
  margin-bottom: 0.5rem;
}
.login .login-box .login-area .loginas label {
  margin-right: 1.5rem;
}
.login .login-box .login-area .loginas label input {
  margin-right: 0.5rem;
}

.dashboard {
  width: 100%;
  padding: 1rem;
}
.dashboard .dashboard-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.dashboard .dashboard-top .dashboard-card {
  width: 32.75%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.4rem;
  box-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.3);
}

#about {
  width: 100%;
  margin: 3rem 0;
  position: relative;
}
#about .about-content {
  display: flex;
  padding: 1rem 4rem;
}
#about .about-content img {
  width: 50%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0.5rem 0.5rem 0.8rem rgba(0, 0, 0, 0.4);
}
#about .about-content p {
  margin: 1rem 0 1rem 2rem;
  line-height: 1.8rem;
}
#about .about-content p::first-letter {
  font-size: 1.8rem;
  font-weight: 600;
}

#footer .row a {
  display: inline-block;
  color: #dbf307;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
}
#footer .row a:hover, #footer #footer .row a:active {
  text-decoration: double underline #f3a807;
}
#footer .row p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #dbf307;
  text-align: left;
}

#register form, .register form {
  display: block;
  width: 100%;
}
#register form fieldset, .register form fieldset {
  width: 47%;
  padding: 1rem;
  margin-bottom: 1.3rem;
  border-radius: 0.6rem;
}
#register form fieldset legend, .register form fieldset legend {
  padding: 0.3rem 1rem;
  background-color: #f17807;
  color: #f6f7f8;
  border-radius: 0.3rem;
  font-size: 1.1rem;
  font-weight: 500;
}
#register form fieldset input, #register form fieldset select, .register form fieldset input, .register form fieldset select {
  margin-bottom: 1rem;
}
#register form fieldset input:focus, #register form fieldset select:focus, .register form fieldset input:focus, .register form fieldset select:focus {
  background-color: #f5ea85;
}
#register form label, .register form label {
  display: block;
  margin-bottom: 0.4rem;
}
#register form .dob-gender, .register form .dob-gender {
  display: flex;
  justify-content: space-between;
}
#register form .dob-gender div, .register form .dob-gender div {
  width: 46%;
  display: block;
}

.content {
  padding: 1rem;
  display: flex;
}
.content .main-content {
  width: 75%;
  padding-right: 1rem;
  position: relative;
}
.content .main-content h1 {
  margin-bottom: 1rem;
  text-align: center;
}
.content .main-content p {
  margin-bottom: 0.5rem;
}
.content .main-content img {
  max-width: 50%;
  height: auto;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  border: 0.3rem solid #4b4c53;
  border-radius: 0.4rem;
  float: right;
}
.content .main-content ul li {
  list-style-type: disc;
  margin: 0.5rem 0 0.5rem 1.5rem;
  text-align: justify;
}
.content .main-content .all-content-div {
  border: 1px solid #302e2e;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
}
.content .main-content .all-content-div h2 {
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
  background-color: #2e1ae6;
  color: #f6f7f8;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  margin-bottom: 0.5rem;
}
.content .main-content .all-content-div .content-body {
  padding: 0.5rem 1rem;
}
.content .content-sidebar {
  width: 25%;
  min-height: 70vh;
  padding: 1rem;
  background-color: #8cf8f8;
  border: 1px solid #1300a3;
  border-radius: 0.4rem;
  color: #10006d;
}
.content .content-sidebar .related-content {
  margin-bottom: 1rem;
}
.content .content-sidebar .related-content ul li {
  margin-left: 0.5rem;
  margin-top: 0.35rem;
  list-style-type: disc;
}
.content .content-sidebar .related-content ul li a {
  color: #10006d;
  transition: 0.2s linear;
}
.content .content-sidebar .related-content ul li a:hover {
  text-decoration: double underline rgb(240, 218, 23) 0.05rem;
}

.captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.captcha label {
  width: 100%;
}
.captcha input {
  width: 43%;
}
.captcha img {
  display: block;
  width: 43%;
  height: 3rem;
  border: 1px solid black;
  border-radius: 0.2rem;
}
.captcha .material-icons {
  font-size: 1.8rem;
  color: #0e8121;
  cursor: pointer;
}
.captcha .material-icons:active {
  transform: scale(0.95, 0.95);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.track {
  padding: 1rem;
}
.track table {
  width: 100%;
  border-collapse: collapse;
}
.track table tr:nth-child(odd) {
  background-color: #ebebee;
  cursor: pointer;
}
.track table tr th, .track table tr td {
  padding: 0.5rem;
  border: 1px solid #4b4c53;
}
.track table tr th {
  background-color: #10006d;
  color: #f6f7f8;
  font-weight: 600;
  text-align: center;
}
.track table tr .tr-sl {
  width: 1%;
  min-width: 2rem;
}
.track table tr .tr-ip {
  width: 2%;
  min-width: 5rem;
}
.track table tr .tr-city {
  width: 3%;
  min-width: 6rem;
}
.track table tr .tr-region {
  width: 3%;
  min-width: 6rem;
}
.track table tr .tr-country {
  width: 5%;
}
.track table tr .tr-postal {
  width: 5%;
}
.track table tr .tr-uid {
  width: 1%;
  min-width: 2rem;
}
.track table .user-information-hide {
  display: none;
}

#captcha {
  margin-bottom: 0 !important;
}

#activate {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  box-shadow: 0.5rem 0.5rem 0.8rem rgba(0, 0, 0, 0.4), -0.2rem -0.2rem 0.4rem rgba(77, 76, 76, 0.4);
}

.with-sidebar {
  width: 100%;
  display: flex;
}
.with-sidebar .sidebar {
  width: 3.5rem;
  min-height: 100vh;
  padding: 0.5rem;
  background-color: #8ac794;
}
.with-sidebar .sidebar li a .hide-label {
  display: none;
}
.with-sidebar .sidebar li a::before {
  content: "a";
  color: transparent;
}
.with-sidebar .sidebar li a:link, .with-sidebar .sidebar li a:visited {
  display: block;
  padding: 8px 14px;
  background-color: #4b4c53;
  color: #f6f7f8;
  border-radius: 0.4rem;
  margin-bottom: 1px;
  position: relative;
  transition: 0.2s linear;
}
.with-sidebar .sidebar li a:hover, .with-sidebar .sidebar li a:active {
  background-color: #554545;
  padding-left: 18px;
}
.with-sidebar .sidebar li a span.material-icons {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  transform: traslateX(-50%);
  z-index: 1;
}
.with-sidebar .main-content {
  flex-grow: 1;
}

.sidebar-expand .sidebar {
  width: 20rem;
}
.sidebar-expand .sidebar li a::before {
  content: "";
}
.sidebar-expand .sidebar li a .hide-label {
  display: block;
}

.bar-sidebar {
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.material-icons.rotate {
  transform: rotate(180deg);
}

.tool-tip-show {
  display: none;
  width: -100%;
  padding: 0.4rem 0.6rem;
  background-color: #000000;
  color: #fff;
  border: 1px solid #0e8121;
  border-radius: 0.3rem;
  font-size: 0.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 150%;
  z-index: 999;
}
.tool-tip-show::before {
  content: "";
  color: transparent;
  border: 0.6rem solid transparent;
  font-size: 0.1px;
  border-right-color: #000000;
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar li a span.material-icons:hover .tool-tip-show {
  display: block;
}

.payment-page {
  margin: 1rem 3rem;
}

.payment-page-inner {
  width: 50%;
  min-width: 30rem;
  margin: 0 auto;
  padding: 1rem;
  background-color: #4b4c53;
}

.error-msg {
  padding: 1rem 1rem;
  line-height: 1.5rem;
  color: #7c0000;
}

.farmers_list {
  padding: 1rem 0.5rem;
}
.farmers_list table {
  width: 100%;
  border-collapse: collapse;
}
.farmers_list table td, .farmers_list table th {
  border: 1px solid #b9babe;
  padding: 0.5rem;
}
.farmers_list table thead tr {
  background-color: #302e2e;
}
.farmers_list table thead th {
  text-align: center;
  color: #f6f7f8;
}
.farmers_list table tbody tr:nth-child(even) {
  background-color: #e2e1eb;
}
.farmers_list table tbody tr:hover {
  background-color: #e2e1eb;
}
.farmers_list .farmer-bulk-action {
  margin: 1rem 0rem;
}
.farmers_list .farmer-bulk-action select {
  width: 200px;
  padding: 0.4rem 0.8rem;
}

.personal-record p {
  position: relative;
  margin-bottom: 0.5rem;
}
.personal-record p img {
  width: auto;
  height: 200px;
  border: 0.3rem solid #4b4c53;
  border-radius: 0.3rem;
}
.personal-record p span {
  position: absolute;
  top: 50%;
  left: 20rem;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: 500;
  color: #2e1ae6;
}
.personal-record p.documents a {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  transition: 0.2s linear;
}
.personal-record p.documents a:hover {
  border-color: rgba(0, 0, 0, 0.3);
}

.signup {
  width: 100%;
}
.signup form {
  width: 40%;
  min-width: 400px;
  margin: 2rem auto;
}
.signup form fieldset {
  width: 100%;
  padding: 1rem;
  background-color: #2e1ae6;
  border-radius: 0.5rem;
  box-shadow: 0.4rem 0.4rem 0.6rem rgba(0, 0, 0, 0.6);
}
.signup form fieldset legend {
  padding: 0.7rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: #9d97ce;
  color: #1300a3;
  border-radius: 0.3rem;
}
.signup form fieldset label {
  display: block;
  margin: 1rem 0.4rem 0.4rem 1rem;
  color: #ecf009;
  font-size: 1rem;
  font-weight: 600;
}
.signup form fieldset input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #d8d6f5;
  color: #2e1ae6;
  border: none;
  outline: none;
  border-radius: 0.4rem;
  box-shadow: inset 0.2rem 0.2rem 0.3rem #2e1ae6, inset -0.2rem -0.2rem 0.3rem #2e1ae6;
}
.signup form fieldset input:focus {
  background-color: #f6f7f8;
}
.signup form fieldset .captcha {
  width: 100%;
}
.signup form fieldset .captcha .form-group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.signup form fieldset .captcha .form-group input {
  width: 50%;
}
.signup form fieldset .captcha .form-group .captcha-image {
  width: 30%;
}
.signup form fieldset .captcha .form-group .captcha-image img {
  width: 100%;
  height: auto;
}
.signup form fieldset .captcha .form-group .refresh {
  width: 10%;
  text-align: center;
}
.signup form fieldset .captcha .form-group .refresh .fas {
  color: #ecf009;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bolder;
  transition: all 0.2s linear;
}
.signup form fieldset .captcha .form-group .refresh .fas:hover {
  transform: scale(1.1, 1.1);
}
.signup form fieldset .error-msg {
  padding: 0.2rem 0.4rem 0.4rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #f73030;
}
.signup form fieldset button {
  display: block;
  margin: 2rem auto;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: #9d97ce;
  color: #2e1ae6;
  border-radius: 0.6rem;
  transition: 0.3s linear;
}
.signup form fieldset button:hover {
  background-color: #f6f7f8;
}

.showUsersPhoto {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showUsersPhoto img {
  height: 80vh;
  width: auto;
  display: block;
  border: 0.5rem solid #fff;
  border-radius: 0.6rem;
}
.showUsersPhoto .close {
  padding: 0.3rem 0.4rem;
  font-size: 1.4rem;
  font-weight: bold;
  position: absolute;
  right: 2rem;
  top: 2rem;
  color: #f6f7f8;
  background-color: #ca1111;
  border-radius: 0.4rem;
  cursor: pointer;
}
.showUsersPhoto .change-user-photo {
  position: absolute;
  top: 90vh;
  left: 50%;
  transform: translateX(-50%);
}
.showUsersPhoto .change-user-photo form label {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.showUsersPhoto .change-user-photo form label input {
  display: none;
}

@media (max-width: 600px) {
  html {
    font-size: 55%;
  }
  .payment-page {
    margin: 1rem;
  }
}
@media (max-width: 768px) {
  #register form fieldset {
    width: 100%;
  }
  .profile-page .profile-page-main-info .profile-page-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-page .profile-page-main-info .profile-page-info .column {
    width: 100%;
    padding-bottom: 0.5rem;
  }
  .profile-page .profile-page-main-info .profile-page-info .value {
    width: 100%;
    padding-left: 2rem;
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 85%;
  }
  #navbar {
    display: none;
  }
  .nav-bar {
    display: block;
    cursor: pointer;
  }
  .about-content {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem;
  }
  .about-content img {
    width: 100%;
  }
  .about-content p {
    padding-left: 0;
    padding-top: 2rem;
    margin: 0;
  }
  #services .row > div {
    width: 100%;
  }
  #footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #footer .row > div {
    width: 50%;
    margin-bottom: 1rem;
  }
  .profile-page .profile-page-main-info {
    flex-direction: column;
  }
  .profile-page .profile-page-main-info .profile-page-name-image {
    width: 100%;
  }
  .profile-page .profile-page-main-info .profile-page-info {
    width: 100%;
  }
}
@media (max-width: 1038px) {
  .container {
    padding: 0.5rem 1rem;
  }
  .update-documents form {
    width: 50%;
    min-width: 400px;
    margin: 1rem auto;
  }
  .update-documents form fieldset .form-group {
    border: 1px solid #a19c9c;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .update-documents form fieldset .form-group label, .update-documents form fieldset .form-group input {
    display: block;
  }
  .update-documents form fieldset .form-group label {
    width: 100%;
    margin-left: 0rem;
  }
  .update-documents form fieldset .form-group input {
    width: 100%;
    margin-left: 0rem;
  }
}/*# sourceMappingURL=main.css.map */


