@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;1,300&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  color: #605e5e;
}

.btn:disabled {
  border: solid 3px black;
  opacity: 1;
}

.preloader {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.preloader .dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #004489;
  position: absolute;
  left: 30%;
  -webkit-animation: easeInAndOut 2.5s ease infinite;
  animation: easeInAndOut 2.5s ease infinite;
}

.preloader .dot:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  opacity: 0;
}

.preloader .dot:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  opacity: 0.8;
}

.preloader .dot:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  opacity: 0.5;
}

.preloader .dot:nth-child(4) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  opacity: 0.2;
}

@-webkit-keyframes easeInAndOut {
  0% {
    left: 30%;
    opacity: 0;
  }
  48% {
    left: 49%;
    opacity: 1;
  }
  50% {
    left: 51%;
    opacity: 1;
  }
  100% {
    left: 70%;
    opacity: 0;
  }
}

@keyframes easeInAndOut {
  0% {
    left: 30%;
    opacity: 0;
  }
  48% {
    left: 49%;
    opacity: 1;
  }
  50% {
    left: 51%;
    opacity: 1;
  }
  100% {
    left: 70%;
    opacity: 0;
  }
}

.line-loader {
  width: 100%;
  height: 10px;
  background: #fff;
  animation: background-color 0.3s ease;
}

.line-loader.show {
  background: repeating-linear-gradient(
    to right,
    #fff 0%,
    #7f47c7 30%,
    #b16bb3 70%,
    #fff 100%
  );
  background-size: 200% auto;
  background-position: 0 100%;
  animation: gradient 3s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@keyframes gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* navbar */

.navbar {
  width: 100%;
  min-height: 35px;
  position: relative;
}

.navbar .navbar-brand {
  font-weight: 600;
  font-size: 1.2rem;
  position: absolute;
  left: 20px;
  bottom: 50%;
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .navbar .navbar-brand {
    top: 10px;
  }
}

.navbar .navbar-nav .nav-link {
  color: #605e5e;
  font-weight: 500;
}

.side-drawer-toggler {
  background: rgba(256, 256, 256, 0.7);
  border-radius: 12px;
  border: none;
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 999;
}

.drawer {
  background-color: white;
  width: 250px;
  position: fixed;
  z-index: 998;
  top: 0;
  bottom: 0;
  right: -280px; /* starting position */
  width: 250px;
  background: white;
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-out; /* animation */
  padding: 100px 20px 50px 20px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 997;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
}

.drawer a {
  margin-bottom: 10px;
  font-weight: 500;
  color: gray;
}

.drawer .sign-out-btn {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 100px;
  text-align: center;
}

.drawer .sign-out-btn .btn {
  width: 60%;
}

.drawer .sign-out-btn .btn:hover {
  border: solid 3px red;
  color: red;
}

.drawer.open {
  transform: translateX(250px); /* final position */
}

.trans-item-tile {
  padding: 0;
  border: 1px solid #aaaaaa;
  width: 100%;
  margin-bottom: 18px;
}

.trans-item-tile .head {
  width: 100%;
  font-size: small;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 6px;
}
.trans-item-tile .head .date {
}
.trans-item-tile .head .status {
}

.trans-item-tile.green .head .status,
.trans-item-tile.green .body .amount {
  color: #28a820;
}

.trans-item-tile.red .head .status,
.trans-item-tile.red .body .amount {
  color: #ef6060;
}
.trans-item-tile.yellow .head .status,
.trans-item-tile.yellow .body .amount {
  color: #e0b400;
}

.trans-item-tile.blue .head .status,
.trans-item-tile.blue .body .amount {
  color: #3a8cfe;
}

.trans-item-tile .body {
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.trans-item-tile .body .amount {
  font-weight: 600;
}

.trans-item-tile .body .txn-id {
  font-size: 0.8rem;
}

.trans-item-tile .leg {
  font-size: 0.9rem;
  padding: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trans-item-tile .leg .title {
  font-size: 0.8rem;
}

.invoice-btn {
  all: unset;
  cursor: pointer;
}
.invoice-btn i {
  margin-right: 3px;
}

.header {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.header .brand {
  font-weight: bold;
  font-size: 1.3rem;
}

.header .menu-btn {
  background-color: #6166df;
  color: white;
  padding: 1px 6px;
  border-radius: 15px;
  border: none;
}

.onboard {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #737272;
}

.onboard img {
  height: 50vh;
  object-fit: cover;
  border-radius: 10px;
}

.onboard .inner {
  width: 80%;
}
.onboard .inner .btn {
  border-color: #737272;
  margin-top: 25px;
}

.home-btn {
  position: absolute;
  left: 10px;
  top: 10px;
}
.home-btn i {
  color: black;
}

.text-gray {
  color: gray;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.wrapper nav {
}

.wrapper .wrapper-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
.wrapper .wrapper-main .inner-limit {
  width: 400px;
  transition: width 0.3s ease;
}

.wrapper .wrapper-main .message {
  text-align: center;
  width: 100%;
  transition: width 0.3s ease;
  border: 1px solid #898af2;
  margin-bottom: 20px;
  padding: 5px;
  border-radius: 8px;
  font-size: small;
}
.wrapper .wrapper-main .message.error {
  border: 1px solid red;
}

.wrapper .wrapper-main .message.notification {
  border-radius: 0;
  width: 100%;
  border: 1px solid #000000;
  text-align: start;
  font-weight: 500;
}
.wrapper .wrapper-main .message.notification a {
  color: unset;
}

.wrapper .wrapper-footer {
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  margin: 20px 0 10px 0;
}

.wrapper .wrapper-footer.outline {
  border: 1px solid #d5e0d5;
}

.wrapper .wrapper-footer a,
.wrapper .wrapper-footer .copy {
  all: unset;
  cursor: pointer;
  margin: 0 10px;
}

.wrapper .wrapper-footer .links {
  display: flex;
}

.wrapper .wrapper-footer .brand {
}

@media (max-width: 576px) {
  .wrapper .navbar {
    justify-content: center;
  }
  .wrapper .wrapper-footer {
    flex-direction: column;
    justify-content: center;
  }
  .wrapper .wrapper-footer .links {
    width: 100%;
    flex-direction: column;
    justify-content: start;
    margin-bottom: 15px;
  }
  .wrapper .wrapper-footer .links a {
    margin: 0;
  }
}

.login-wrapper {
  border: 1px solid #d5e0d5;
  border-radius: 16px;
  width: 40%;
  transition: width 0.3s ease;
  max-width: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 5%;
}

.login-wrapper h3 {
  margin-bottom: 30px;
}
.login-wrapper form {
  width: 100%;
}

.login-wrapper .input-group {
  all: unset;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}

.login-wrapper .input-group .input-group-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-wrapper .input-group input {
  width: 100%;
  padding: 6px 5px 7px 48px;
  border: 2px solid #e4ebe4;
  transition: border-color 0.3s ease;
  border-radius: 8px !important;
}

.login-wrapper .input-group input:focus {
  border: 2px solid #9aaa97 !important;
  outline: none;
}

.login-wrapper .line-link {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.login-wrapper .line-link::before {
  right: 10px;
  margin-left: -50%;
  width: 50%;
  background-color: #878787;
  content: "";
  display: inline-block;
  height: 1.5px;
  position: relative;
  vertical-align: middle;
}

.login-wrapper .line-link::after {
  left: 10px;
  margin-right: -50%;
  background-color: #878787;
  content: "";
  display: inline-block;
  height: 1.5px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}
.login-wrapper .line-link a {
  all: unset;
  color: #878787;
  cursor: pointer;
  transition: color 0.3s ease;
}
.login-wrapper .line-link a:hover {
  color: #14a800;
}
.login-wrapper button[type="submit"] {
  background-color: #108a00;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 10rem;
}

.login-wrapper button[type="submit"]:hover {
  background-color: #14a800;
}

.login-wrapper button[type="submit"]:disabled {
  background-color: #bcbcbc;
  border: none;
  outline: none;
}

.login-wrapper .google-btn {
  background-color: #4285f4;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 30px;
  border-radius: 10rem;
  position: relative;
  min-height: 30px;
}
.login-wrapper .google-btn:hover {
  background-color: #5295ff;
}
.login-wrapper .google-btn:disabled {
  background-color: #bcbcbc;
  border: none;
  outline: none;
}

.login-wrapper .google-btn .logo-wrapper {
  top: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background-color: #fff;
  min-width: 30px;
  aspect-ratio: 1;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-wrapper .google-btn img {
  height: 25px;
}

@media (max-width: 1200px) {
  .login-wrapper {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .login-wrapper {
    width: 70%;
  }
}

@media (max-width: 576px) {
  .login-wrapper {
    width: 100%;
    padding: 0;
    border: none;
  }

  .wrapper .wrapper-main .inner-limit {
    width: 100%;
  }
}

.wrapper-wide {
  width: 90%;
  margin: 50px auto 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 992px) {
  .wrapper-wide {
    width: 90%;
    margin: 3% auto 0 auto;
  }
}

@media (min-width: 1200px) {
  .wrapper-wide {
    width: 80%;
  }
}

.welcome {
  width: 100%;
}

.welcome .greet {
  background-color: #f3f3f3;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 20px;
  width: 100%;
  transition: height 0.3s ease;
}

.welcome .welcome-timeline {
  width: 100%;
  background-color: #f3f3f3;
  padding: 15px;
  border-radius: 3px;
  margin-bottom: 20px;
  transition: height 0.3s ease;
}

.welcome .welcome-timeline ul {
  list-style: none;
  padding: 0 0 0 25px;
  transition: padding 0.3s ease;
  margin: 0;
}

@media (max-width: 576px) {
  .welcome .welcome-timeline ul {
    padding: 0;
  }
}

.welcome .welcome-timeline ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: start;
  position: relative;
}
.welcome .welcome-timeline ul li:not(:last-child)::before {
  content: "";
  width: 1px;
  background-color: #a8a8a8;
  height: 100%;
  position: absolute;
  z-index: 3;
  left: 11px;
  top: 22px;
}

.welcome .welcome-timeline ul li .icon {
  min-width: 22px;
  min-height: 22px;
  border: 2px solid #a8a8a8;
  background-color: #f3f3f3;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  margin-top: 5px;
  position: relative;
  z-index: 4;
}
.welcome .welcome-timeline ul li.done .icon {
  border: 2px solid #28a820;
  color: #28a820;
}
.welcome .welcome-timeline ul li.done:not(:last-child)::before {
  background-color: #28a820;
}

.welcome .welcome-timeline ul li.delay .icon {
  border: 2px solid #ea990d;
  color: #ea990d;
}
.welcome .welcome-timeline ul li.delay:not(:last-child)::before {
  background-color: #ea990d;
}

.welcome .welcome-timeline ul li .content {
  font-size: 0.9rem;
}

.welcome .welcome-timeline ul li .content span {
  font-size: small;
}

.home {
  color: #605e5e;
  text-align: center;
}

.home .header {
  width: 100%;
  text-align: center;
}

.home .header .row {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home .cards {
  margin-top: 40px;
}

.home .cards .col-md-4 {
  display: flex;
  align-items: stretch;
}

.home .card {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px auto;
  border: none;
  border-radius: 5px;
}

.home .card img {
  aspect-ratio: 3/1;
  object-fit: cover;
}

.home .card .card-body {
  text-align: center;
  background-color: #f3f3f3;
  border-radius: 0 0 3px 3px;
}
.home .card .card-body .btn {
  margin-top: 14px;
  padding: 2px 0;
  width: 60%;
  background-color: #f3f3f3;
  font-size: 0.9rem;
  border-radius: 5px;
  font-weight: 500;
  color: #605e5e;
  border: 1px solid #000000;
}

.home .card .card-body .btn:hover {
  border: solid 2px black;
  box-shadow: none;
  background-color: white;
}

.home .live-stream-btn {
  width: 50%;
  margin-top: 40px;
  padding: 10px 10px 6px 10px;
  font-weight: 500;
  color: #605e5e;
  border-bottom: solid 5px #4b56d2;
}

@media (max-width: 576px) {
  .home .header .row {
    justify-content: space-between !important;
  }

  .home .live-stream-btn {
    width: 80%;
  }
}

.home .header .col-6 {
  width: fit-content;
}

.home .header img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid gray;
}

.home .header h2 {
  font-weight: 600;
  color: #605e5e;
}

.home .header span {
  color: #605e5e;
  text-decoration: underline;
  font-weight: 500;
}

.account {
  width: 100%;
}

.account .header {
  display: flex;
  justify-content: center;
}

.account .header .row {
  align-items: center;
  justify-content: center;
}

.account .header .row .col-6 {
  width: fit-content;
}

.account .header h2 {
  font-weight: 600;
}

.account .header .avatar {
  position: relative;
}

.account .header .edit-avatar {
  position: absolute;
  right: 0;
  bottom: 10px;
  background: rgba(256, 256, 256, 0.8);
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  color: #605e5e;
}

.account .header .avatar-save-btn {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  background-color: #4b56d2;
  width: 100%;
  color: white;
  font-size: small;
  padding: 2px 5px;
}

.account .header .img-spinner-group {
  position: relative;
}

.account .header .avatar-img {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid gray;
}

.account .header .img-spinner-group .spinner-border {
  height: 106px;
  width: 106px;
  position: absolute;
  top: -3px;
  right: 3px;
  left: -3px;
  bottom: 3px;

  color: #4b56d2;
}

.account .content {
  color: #605e5e;
  margin-top: 50px;
}

.account .content .row .col-lg-3 {
  position: relative;
  margin-bottom: 0;
}

.account .content h6 {
  font-weight: 600;
}

@media (min-width: 576px) {
  .account .content .row .col-lg-3 {
    margin-bottom: 30px;
  }
  .account .content hr {
    display: none;
  }
}

.account .content span {
  font-weight: 500;
}

.account .content button {
  font-weight: 500;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  color: #605e5e;
  display: block;
}

@media (max-width: 576px) {
  .account .content button {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #95969c;
    color: white;
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 5px;
    font-size: smaller;
    min-width: 55px;
    margin-top: 4px;
  }
}

.account .bank-details {
  position: relative;
  margin-top: 50px;
}

.account .bank-details .bank-header {
  display: inline;
}
.account .bank-details button {
  display: inline;
  margin-left: 10px;
}

.purchase-history .header {
  /* border: 1px solid #28a820; */
  width: 100%;
  /* padding: 10px 15px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.purchase-history .purchases .purchase-item {
  margin-bottom: 20px;
  padding: 5px;
  border: 1px solid #28a820;
}

.purchase-history .purchases .purchase-item .purchase-header {
  display: flex;
  justify-content: space-between;
}
.purchase-history .purchases .purchase-item .purchase-header .item {
  font-weight: bold;
}
.purchase-history .purchases .purchase-item .purchase-header .date {
  font-size: small;
}

.purchase-history .purchases .purchase-item hr {
  margin: 4px 0 8px 0;
}

.purchase-history .purchases .purchase-item .squares {
  margin-top: 10px;
  display: flex;
  justify-content: space-evenly;
}

.purchase-history .purchases .purchase-item .squares .item {
  width: 100%;
  text-align: center;
  position: relative;
}

.purchase-history
  .purchases
  .purchase-item
  .squares
  .item:not(:first-child)
  ::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 70%;
  border-right: 1px solid;
  opacity: 0.25;
  transform: translateY(-50%);
}

.purchase-history .purchases .purchase-item .squares .item .title {
  font-size: small;
  font-weight: bold;
}

.purchase-history .purchases .purchase-item .squares .item .value {
}

.purchase-history .purchases .purchase-item .leg {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.purchase-history .purchases .purchase-item .leg a {
  all: unset;
  font-size: smaller;
}
.purchase-history .purchases .purchase-item .leg a i {
  margin-right: 3px;
}

.purchase-history .purchases .purchase-item .leg .emi-info {
  font-size: smaller;
}
#downloadInvoiceModal .modal-content {
  border-radius: 0;
}
#downloadInvoiceModal .modal-body {
  padding: 0 0 10px 0;
}
#downloadInvoiceModal .modal-body .line-loader {
}
#downloadInvoiceModal .modal-body .options {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}
#downloadInvoiceModal .modal-body .options .btn {
  height: 50px;
  width: 70%;
  margin: 6px;
  border: 1px solid #aaaaaa;
  transition: all 0.5s ease;
  border-radius: 0;
}
#downloadInvoiceModal .modal-body .options .btn i {
  margin-right: 5px;
}
#downloadInvoiceModal .modal-body .options .btn:hover {
  color: #28a820;
  border: 1px solid #28a820;
}

#UpdateBankDetails input[type="number"]::-webkit-inner-spin-button,
#UpdateBankDetails input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.user-card .user-details {
  text-align: start;
}

.user-card .user-details h2 {
  color: #737272;
  font-weight: 600;
}

.user-card img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 100px;
}

.stream-btn {
  color: white;
  background-color: #000;
}

.stream-btn img {
  height: 1.4rem;
  margin-right: 10px;
  display: inline;
  animation: blink 1s linear infinite;
}

.panel {
  margin: 40px 0;
  transition: width 2s, height 2s, transform 2s;
}

.panel .panel-toggle {
  width: 100%;
  padding: 0;
}
.panel .panel-toggle button {
  background-color: #fff;
  border: 2px solid #ececec;
  color: #363030 !important;
  width: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.panel .panel-toggle button i {
  margin-left: 5px;
  color: #363030 !important;
}
.panel .panel-toggle button:first-child {
  border-right: 1px solid #28a820;
}
.panel .panel-toggle button:last-child {
  border-left: 1px solid #28a820;
}
.panel .panel-toggle button.active {
  border-color: #28a820;
}

.panel .panel-item {
  margin-top: 20px;
  display: none;
  transition: width 2s, height 2s, transform 2s;
}
.panel .panel-item.lst {
  display: block;
}

.progress {
  border-radius: 2px;
  background: linear-gradient(270deg, #7f47c7 25%, #b16bb3);
  position: relative;
  height: 1.2rem;
  justify-content: end;
}

.progress .progress-bar {
  background-color: #291f33;
}

.progress .progress-message {
  font-size: 0.6rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: #fff;
  padding: 0;
  margin: 2px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#my-farm-p {
  width: 100%;
}

#my-farm-p #selectFarmStation {
  margin-bottom: 15px;
  border: 1px solid black;
  outline: none;
  min-width: 110px;
}

#my-farm-p #selectFarmStation:focus {
  outline: none;
}

#my-farm-p .crop-details {
}

#my-farm-p .crop-details .title {
  font-weight: 600;
}

#my-farm-p .crop-details .inner {
  width: 100%;
  display: flex;
  border: 2px solid #ececec;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

#my-farm-p .crop-details .inner .data-item {
}

#my-farm-p .crop-details .inner .data-item .data-title {
  font-size: 0.7rem;
}

#my-farm-p .crop-details .inner .data-item .data {
  margin: 0;
}

#my-farm-p .next-harvest {
  margin-top: 3px;
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 0.7rem;
}

#my-farm-p .climate-details {
}

#my-farm-p .climate-details .title {
  font-weight: 600;
  margin: 10px 0;
  display: block;
}

#my-farm-p .climate-details .data-item {
  border: 2px solid #ececec;
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  margin-bottom: 10px;
}

#my-farm-p .climate-details .data-title {
}

#my-farm-p .climate-details .value {
}

.returns .returns-item {
  /* border: 2px solid green; */
  border-bottom: 8px solid rgb(71, 210, 71);
}
.returns .returns-item {
  padding: 5px;
  margin-bottom: 15px;
}

.returns .returns-item .date span {
  display: block;
  font-weight: bold;
}
.returns .returns-item .date .day {
  font-size: 2rem;
}
.returns .returns-item .date .month {
  padding-top: 0;
  margin-top: 0;
}

/* .returns .returns-item .status {
  background-color: rgb(71, 210, 71, 0.7);
  padding: 2px 4px;
  border-radius: 6px;
} */

.returns .returns-item .x-small {
  font-size: 0.8rem;
}

.returns .returns-item table {
  margin: 0;
}

.returns table td,
.returns table th {
  padding: 0;
}

.wallet {
}

.wallet .head-box {
  background-color: #000;
  color: white;
  padding: 10px;
  border-radius: 15px;
  position: relative;
}

.wallet .head-box .head {
  width: 100%;
  text-align: start;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wallet .head-box .head .btn {
  font-size: small;
  padding: 4px 6px;
}

.wallet .head-box .avl-balance .title {
  display: block;
  font-size: 0.9rem;
}

.wallet .head-box .avl-balance .amount {
  font-size: 2rem;
  margin-top: -8px;
  display: block;
}

.wallet .transactions {
  margin-top: 20px;
}

.wallet .transactions .tran-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.wallet .transactions .tran-item.credit::before {
  content: "";
  font-size: small;
  position: absolute;
  left: 0;
  right: 0;
  padding-top: 30px;
  background-color: #41ed4f;
  bottom: -3px;
  border-radius: 0 0 10px 10px;
  z-index: -1;
}
.wallet .transactions .tran-item.debit::before {
  content: "";
  font-size: small;
  position: absolute;
  left: 0;
  right: 0;
  padding-top: 30px;
  background-color: #d93e2f;
  bottom: -3px;
  border-radius: 0 0 10px 10px;
  z-index: -1;
}

.wallet .transactions .tran-item .status {
  position: absolute;
  top: 3px;
  right: 5px;
  font-weight: 400;
}

.wallet .transactions .tran-item .status.pending {
  background-color: #95969c;
  position: absolute;
  top: 3px;
  right: 5px;
  font-weight: 400;
}

.wallet .transactions .tran-item .status.processing {
  background-color: #354dd2;
  position: absolute;
  top: 3px;
  right: 5px;
  font-weight: 400;
}
.wallet .transactions .tran-item .status.rejected {
  background-color: #c12d2d;
  position: absolute;
  top: 3px;
  right: 5px;
  font-weight: 400;
}

.wallet .transactions .tran-item .status.credited,
.wallet .transactions .tran-item .status.paid {
  background-color: #1dcd52;
  position: absolute;
  top: 3px;
  right: 5px;
  font-weight: 400;
}

.wallet .transactions .tran-item .icon {
  font-size: 1.8rem;
  margin-right: 10px;
}

.wallet .transactions .tran-item.credit .icon {
  color: #41ed4f;
  transform: rotate(0.375turn);
}
.wallet .transactions .tran-item.debit .icon {
  color: #d93e2f;
  transform: rotate(-0.125turn);
}

.wallet .transactions .tran-item .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wallet .transactions .tran-item .content .details {
  text-align: start;
}

.wallet .transactions .tran-item .content .details .title {
  font-weight: bold;
  color: #363636;
}

.wallet .transactions .tran-item .content .details .date {
  font-size: small;
  display: block;
}

.wallet .transactions .tran-item .content .details .id {
  font-size: smaller;
  display: block;
}
.wallet .transactions .tran-item .content .details .id .copy-btn {
  color: #262626;
}

.wallet .transactions .tran-item .content .amount {
  font-weight: bold;
  color: #363636;
}

#withdrawModal .modal-body {
  text-align: center;
}
#withdrawModal .modal-body .avl-amt {
  width: 100%;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  padding: 5px;
}
#withdrawModal .modal-body .avl-amt .title {
  display: block;
  font-size: small;
}
#withdrawModal .modal-body .avl-amt .amount {
  display: block;
  font-size: 1.8rem;
  margin-top: -5px;
}
#withdrawModal .modal-body label.error {
  display: block;
  color: #d71b1b;
}
#withdrawModal .modal-footer button[type="submit"] {
  background-color: #000;
  color: #fff;
}

.documents .card img {
  width: 80px;
  object-fit: contain;
  margin-top: 10px;
}

.stream {
  text-align: center;
  padding: 30px 0 50px 0;
}

.stream iframe {
  margin-top: 5%;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 3px;
}

.stream .cam-unit .label .cam-name {
  display: inline-block;
}

.stream .cam-unit .label .live {
  color: white;
  margin: 0 5px;
  background-color: red;
  padding: 0 3px;
  border-radius: 5px;
  animation: blink 1s linear infinite;
  font-size: small;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.footer {
  text-align: center;
  margin-top: 50px;
  bottom: 0;
}

.footer .row {
  justify-content: center;
}

.footer .row .col-sm-3,
.footer .row .col-md-3 {
  width: fit-content;
}

.footer a {
  color: #605e5e;
  font-size: small;
  font-weight: 600;
  text-decoration: none;
}

.footer a:hover {
  color: #6166df;
}

@media (min-width: 769px) {
  .footer {
    position: absolute;
    bottom: 20px;
  }
}
