@import url(https://fonts.googleapis.com/css?family=Montserrat:500);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600");

/* VARS */
/* :root {
  --open-sans: "Open Sans", "Helvetica", sans-serif;

  --darkNavy: #213140;
  --teal1: #66b3fb;
  --teal2: #4b9dea;
  --charcoal: #555555;
  --gold: #b6985a;

  --activeShadow: 0 0 10px rgba(--teal1, 0.5);
} */

/* MIXINS */
@mixin focusOutline {
  outline: dotted 1px #ccc;
  outline-offset: 0.45rem;
}
@mixin hideInput {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
@mixin breakpoint($point) {
  @if $point == 1100 {
    @media (max-width: 1100px) {
      @content;
    }
  } @else if $point == 800 {
    @media (max-width: 800px) {
      @content;
    }
  }
}
/*
body, html {
	margin: 0; padding: 1rem; box-sizing: border-box;
	width: 100%; height: 100%;
	font-size: 16px; font-family: $open-sans; 
	-webkit-font-smoothing: antialiased;
  background-color: #24252A;
}

*/
[data-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;
  z-index: 99999;
}

[data-title]:after {
  content: attr(data-title);
  position: absolute;
  bottom: -1.6em;
  font-size: 15px;
  font-weight: 700;
  top: 1em;
  left: -2%;
  /* right: 1%; */
  height: 150px;
  width: 180px;
  overflow: auto;
  padding: 4px 8px 4px 8px;
  color: #fff;
  /* white-space: nowrap; */
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 0px 4px #666;
  -webkit-box-shadow: 0px 0px 4px #666;
  box-shadow: 0px 0px 4px #666;
  background: #0088a9;

  opacity: 0;
  z-index: 99999;
  visibility: hidden;
}

[data-title] {
  position: relative;
}

[data-title]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

[data-title]::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

[data-title]::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
}

li,
a,
button,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #edf0f1;
  text-decoration: none;
}

h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.5em;
  margin-bottom: 30px;
  font-weight: bolder;
  margin-left: 20px;
  margin-top: 30px;
}
h3 {
  font-size: 1.17em;
}
h4 {
  font-size: 1em;
}
h5 {
  font-size: 0.83em;
}
h6 {
  font-size: 0.67em;
}

span {
  width: 10px;
}


.card {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.01);
  transition: 0.3s;
  /* width: 40%; */
  display: block;
  background: #fcfcfc;
  flex-direction: unset;
  border: 1px solid #f0f0f0;
}
.card_background {
  width: 100%;
  /* height: auto; */
  margin-top: 0.5rem;
  /* background-color: #F8F8F8; */
  display: flex;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  padding: 5px;
  align-items: center;
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px #0000001a;
  color: #5c5c5c;
  font-weight: bolder;
}
.displayFlex {
  display: flex;
  width: 100%;
  margin-top: 1rem;
}

/* Pop up Container for showing farmer details table */
.popup-container {
  display: none;
  position: fixed;
  top: 20%;
  left: 2%;
  width: 96%;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  overflow: auto;
  padding: 20px;
  max-height: 80%;
}
/* Pop up Container for showing farmer details table */
.popup-container2 {
  display: none;
  position: fixed;
  top: 15%;
  left: 10%;
  width: 80%;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  overflow: auto;
  padding: 20px;
  max-height: 80%;
}

.popup-content {
  text-align: center;
  display: flex;
  justify-content: center;
}

.close-button,
.close-button-renew {
  float: right;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  position: fixed;
}

.close-button {
  left: 96%;

  top: 22%;
}
.close-button-renew {
  left: 88%;

  top: 16%;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1490;
}

/* Fullscreen div appears when loading */
#fullscreenDiv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #cee1d5 0%, #cee1d5 100%);
  display: none; /* Initially hidden */
  color: #fff;
  text-align: center;
  font-size: 24px;
  padding: 20px;
  z-index: 2000;
}

/* Pop up Container for showing farmer details table */

#top_header {
  height: 10%;
  justify-content: space-between;
  align-items: center;
  /* padding: 10px 1%; */
  background-color: #f8f8f8;
  /* background-color: #11202b; */
  display: none;
  border-bottom: 0.1rem solid #c0c0c0;
}

#video_tutorials_li a {
  color: #000;
}

#profileDivButton,
#video_tutorials_li {
  border: solid gray 0.05rem;
  border-radius: 2rem;
  /* padding: 1rem .5rem; */
  width: 15%;
  height: 6vh;
  justify-content: center;
  text-align: center;
  align-content: center;
}

#profileDivButton,
#myProfileDivButton {
  color: #000;
}
#myProfileDivButton {
  padding: 1rem 0.5rem;
  background-color: rgb(255, 255, 255);
  border: solid gray 0.05rem;
  border-radius: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease 0s;
  font-size: 0.8rem;
  color: #000000;
  width: 15%;
  height: 6vh;
}

.heading_subscriptioninfo,
.heading_personalinfo {
  font-size: 16px;
  font-weight: 600;
}

.heading_subscriptioninfo {
  display: flex;
  justify-content: space-between;
}

.SubscriptionInfo {
  background-color: #f6f8f8;
}

#mapcontrolsFarmerData1 .textinputgroupfieldaddress2 div {
  background-color: none;
}
#farmer_subplan_input {
  border: 1px solid #da251c;
  color: #da251c;
  margin: 0px;
  width: 200px;
  height: auto;
  padding: 5px;
  align-content: center;
  text-align: center;
  margin-left: 5px;
}

.SubscriptionInfo,
.PersonalInfo {
  border: 1px solid #e4e5e5;
  width: 100%;
  padding: 10px;
  margin: 5px;
  border-radius: 15px;
}

#farmer_image {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

#attach_farmer_image {
  margin-top: 50px;
  margin-left: -20px;
  position: relative;
  z-index: 10000;
}

#myProfileDivButton .fa-caret-down {
  color: black !important;
}

#profileDivButton .profileIcon {
  color: black !important;
}
#profileDivButton,
#video_tutorials_li {
  border: solid gray 0.05rem;
  border-radius: 2rem;
  /* padding: 1rem .5rem; */
}

#add_polygon_within_field .fa-map-location-dot {
  color: #000 !important;
}
.logo {
  cursor: pointer;
}

#app_logo {
  /* height: 60px; */
  width: 85%;
}

.nav__links {
  list-style: none;
}

.nav__links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav__links li a {
  transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
  color: #0088a9;
}

#reset_password:hover,
#resend-button:hover {
  color: #0088a9;
}

#reset_password,
#resend-button {
  font-size: 1.5vh;
  margin-top: 0.3rem;
  color: rgb(0, 0, 0);
  text-decoration: underline;
  font-weight: 900;
  cursor: pointer;
  color: #2a1e17;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px;
  /* margin: .5rem 0 0 2rem; */
}
#resend-button {
  font-size: 15px;
}
#emailsigindiv {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: flex-start;
  /* height: 40%; */
  width: 70%;
}
#smartphone_app_buttons_login {
  width: 70%;
}

#offer_div {
  display: flex;
}

.helpinfobottom {
  visibility: hidden;
  width: auto;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
  font-size: 12px;

  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.helpinfobottom::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

.helpinfobottom::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

.helpinfobottom::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

/* CSS for Settings Div */

.containerSettings {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background-color: #ffaf7d;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.buttonSettings {
  display: inline-block;
  padding: 3px 20px;
  margin: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.paymentButtonsStyle {
  display: flex;
  align-items: center;
}
#renewButton {
  background-color: #28a745;
}

#subscriptionRemaining {
  font-size: 20px;
  margin-bottom: 20px;
}

.popupCal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1599;
}

.calendarCal {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.close-btn {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
/* CSS for Settings Div */

/* CSS for Weather Section for the tabs */
.tabs-container {
  /* background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  /* height: 100%; */
  height: 145vh;
}

.tab-buttons {
  display: flex;
}

.tab-button {
  flex: 1;
  text-align: center;
  padding: 1vh;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
  color: #858585;
  font-size: 3vh;
  /* background-color: #f0f0f0; */
}

.tab-button:hover {
  /* background-color: #ddd; */
  color: black;
  font-weight: bold;
}

.tab-contentWeather {
  padding: 20px;
  display: none;
  text-align: center;
}
.tab-content-container {
  /* height: 110vh;  */
  /* height: 156vh; */
  /* height: 80%; */
  height: 142vh;
  overflow-y: auto;
}
.active-tabWeather {
  /* background-color: #ddd; */
  /* color: #333; */
  color: black;
  display: block;
  animation: fadeIn 0.5s ease;
  border-bottom: 2px solid #037f85;
}

/* Style for Crop Calendar  popup */

/* Style for the popup */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: #fff; */
  padding: 20px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); */
  z-index: 1600;
  width: auto;
  /* height: 95%; */
  transition: width 0.3s ease-in-out;

  /* Adjusted max-width for better fit */
}

#closePopup,
#MyprofileclosePopup,#SubscriptionpageclosePopup {
  position: relative;
  /* top: 20px; */
  background-color: #9e9e9e;
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 25px;
  padding: 10px;
}

#SubscriptionpageclosePopup{
  margin-top: 0px;
}
#closePopupButton {
  background-color: #9e9e9e;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  margin-left: -1%;
}

.showFarmerTable td:nth-child(8):contains("Active") {
  color: red;
}

#showFarmsContainerDiv {
  background-color: #f5f5f5;
  border-radius: 20px;
}

#FarmersInfo,
#FieldInfo {
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: 100%;
}

.dataInfo {
  display: flex;
}

/* Style for the selected crops container */
#selectedCrops {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}

/* Style for each selected crop item */
.selectedCrop {
  margin: 5px;
  padding: 5px 30px 5px 10px;
  /* Added left padding for cross icon */
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

/* Style for the "Show Calendar" button */
#showCalendar {
  background-color: #007acc;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  margin-top: 10px;
  /* Added margin for separation */
}

/* Style for hover effect on selected crop item */
.selectedCrop:hover {
  background-color: #e0e0e0;
}

/* Style for the cross icon */
.crossIcon {
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
}
.closeIcon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Style for the table */
table#cropTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

/* Style for the table header */
table#cropTable th {
  background-color: #008b8b;
  color: #fff;
  padding: 10px;
  text-align: center;
}

/* Style for odd rows */
table#cropTable tr:nth-child(odd) {
  background-color: #fff;
  color: #000;
  text-align: center;
}

/* Style for even rows */
table#cropTable tr:nth-child(even) {
  background-color: #252525;
  color: #fff;
  text-align: center;
}

/* Hover effect for table rows */
table#cropTable tr:hover {
  background-color: #e0e0e0;
  color: #000;
}
/* Style for Crop Calendar  popup */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* CSS for Weather Section for the tabs */

/* CSS for Report Page Language adding buttons */
.language-button {
  background-color: white;
  /* Light Green */
  color: #000;
  /* Black Text */
  padding: 0.1rem 1rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  border-radius: 5px;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .language-button:hover {
  background-color: rgb(223, 223, 223);
  
} */

.headerText {
  padding-bottom: 10px;
}

.remove-language {
  cursor: pointer;
  /* color: black; */
  border: none;
  background: none;
  /* font-size: 1.5rem; */
  margin-left: 10px;
}

#selectedLanguagesList {
  display: flex;
  flex-wrap: wrap;
}

#submit_report_langauge {
  font-size: 12px;
  padding: 10px;
}
.language-selection-container {
  align-items: center;
  padding-bottom: 15px;
}
.language-button {
  color: white;
  margin: 5px !important;
}

/* CSS for Report Page Language adding buttons */
/* Admin Dashboard show added farmer table */

.showFarmerTable {
  /* border: 1px solid black; */
  border: 1px solid #e4e5e5;
  border-radius: 20px;
  padding: 3px;
  margin-top: 20px;
  /* border-collapse: collapse; */
  cursor: pointer;
  /* width: 98%; */
  width: 100%;
  border-collapse: separate;
}

.showFarmerInAdminParentDivClass {
  width: 100%;
}
.showFarmerInAdminParentDivClass {
  overflow-x: auto;
  scrollbar-color: red green; /* Change scrollbar colors */
}

/* Webkit (Chrome, Safari) */
.showFarmerInAdminParentDivClass::-webkit-scrollbar {
  width: 12px; /* Set width for the scrollbar */
}

.showFarmerInAdminParentDivClass::-webkit-scrollbar-thumb {
  background-color: red; /* Set thumb color */
  border-radius: 10px; /* Round the thumb */
}

.showFarmerInAdminParentDivClass::-webkit-scrollbar-track {
  background-color: green; /* Set track color */
}

/* .showFarmerTable tr:nth-child(even) {
  background-color: #c5eb64;
}
.showFarmerTable tr:nth-child(odd) {
  background-color: white;
  color: black;
}

.showFarmerTable tr:hover {
  background-color: black;
  color: whitesmoke;
} */

.showFarmerTable tr {
  color: #5c5c5c;
}

.showFarmerTable th {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #2b8a1a;
  color: white;
  background-color: #f5f5f5;
  color: #11202b;
}
.showFarmerTable th,
td {
  /* border: 1px solid black; */
  /* padding: 3px; */
  border: 0px !important;
  padding: 10px;
  font-size: 14px;
  color: black;
}

#showFarmerDataTableTbody {
  background-color: #f6f8f8;
}

.muted-text {
  font-size: 10px;
  color: #5c5c5c;
  margin-top: -15px;
  margin-left: 50px;
}

.helpinfotop {
  visibility: hidden;
  width: auto;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1000;
  bottom: 100%;
  left: 50%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
  font-size: 12px;

  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.inputTextWidth {
  width: 100%;
}

#field_id_value {
  font-size: 1.2rem;
  /* padding: 10px 10px 10px 5px; */
  padding: 5px;
  display: block;
  width: 95%;
  /* border: none; */
  border-radius: 10px;
  /* border-bottom: 1px solid #757575; */
  background-color: white;
  margin-top: 5px;
  background-color: #c4c4c4;
  /* color: #C4C4C4 */
}

#field_name_input,
#farmer_name_input,
#farmer_phone_number_input {
  /* color: #C4C4C4 */
}
#login_buttons_div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#login_buttons_div::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#login_buttons_div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

.helpinfotop::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

.helpinfotop::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

.helpinfotop::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

.helpinfoleft {
  min-width: 200px;
  max-height: 250px;
  overflow: auto;
  visibility: hidden;
  width: auto;
  background-color: black;
  color: #fff;
  text-align: center;
  text-justify: inter-word;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1000;
  top: -5px;
  right: 105%;
  font-size: 12px;

  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.helpinfoleft::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

.helpinfoleft::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

.helpinfoleft::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

.helpinforight {
  visibility: hidden;
  width: auto;
  min-width: 200px;
  max-height: 250px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1000;
  top: -5px;
  left: 105%;
  font-size: 12px;
  overflow: auto;
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.helpinforight::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

.helpinforight::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

.helpinforight::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

.prominent_button {
  padding: 6px 5px;
  background-color: #ff6500;
  border: none;
  height: auto;
  width: 96%;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border-color: white;
  border-style: solid;
  border-width: 2px;
  font-size: 12px;
  text-align: center;
}

.prominent_button:hover {
  transition: all 0.3s ease 0s;
  background-color: #480048;
}
.fields_button {
  padding: 1rem 0.5rem;
  background-color: rgb(16 32 43); /* UI Changes  */
  border: solid gray 0.05rem;
  height: auto;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease 0s;
  /* border-color: white; /* UI Changes  */
  /* border-style: solid;    */ /* UI Changes  */
  /* border-width: 2px; */ /* UI Changes  */
  font-size: 12px;
  text-align: center;
  color: #000000;
}
.fields_button_jeevn,
.fields_button_add_new {
  padding: 0.5rem;
  background-color: rgb(255, 255, 255); /* UI Changes  */
  border: solid gray 0.05rem;
  height: auto;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease 0s;
  font-size: 12px;
  text-align: center;
  color: #000000;
}

/* UI Changes  */
/* #add_new_field_button {
  color: #000000;
  margin-right: 0.3rem;
  font-size: 0.9rem;
} */

/* #sidebarUl li:hover {
  background-color: white; 
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  color: #037F85 !important;
}

#sidebarUl li.hovered-top {
  border-bottom-right-radius: 24px;
}

#sidebarUl li.hovered-bottom {
  border-top-right-radius: 24px;
} */

/* .fields_button:hover {
  transition: all 0.3s ease 0s;
  background-color: lightgreen;
} */

.fa-solid {
  margin-right: 3px;
}

#demo_fields_button {
  padding: 6px 5px;
}

#searchByLandIDInput {
  background-size: 20px;
  background-position: 10px 10px;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 12px;
  padding: 12px 20px 12px 30px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#join_affiliate_button {
  padding: 3px 5px;
}

.hover_shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}

#login_tutorial_button {
  background-color: rgba(0, 136, 169, 1);
  border: none;
  height: 50px;
  display: none;
  width: 250px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border-color: white;
  border-style: solid;
  border-width: 2px;
  font-size: 20px;
  margin-top: auto;
  margin-bottom: auto;
}

#login_tutorial_button:hover {
  transition: all 0.3s ease 0s;
  background-color: #480048;
}

#save_poly_name_button:hover {
  transition: all 0.3s ease 0s;
  background-color: #480048;
}
.buttontype1 {
  padding: 9px 25px;
  background-color: rgba(0, 136, 169, 1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border-color: white;
  border-style: solid;
  border-width: 2px;
}
.gm-style-mtc {
  margin-right: 2px;
}
/* #removeLastPointButton,#removeAllPointsButton,#upload_kmz_kml_button{
  background-color: white;
  color: #000000;
} */

.removalButtons {
  margin-top: 2rem;
}
.removalButtons button {
  background-color: rgb(255 82 82);
  color: white;
  display: flex;
  width: 80%;
  padding: 0.5rem;
  border-radius: 1rem;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 1.5vh;
}

#removeLastPointButton {
  margin-bottom: 5px;
}

/* #upload_kmz_kml_button{
  margin-bottom: 50%;
} */

.fa-globe:before {
  color: #1cd1a1;
}
.fa-solid.fa-globe {
  margin-top: 5px;
}

#help-icon {
  display: inline-block;
  width: 100%;
  height: 3vh;
  font-size: 2.5vh;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border-color: #1f1f1f;
  border-radius: 50%;
  text-align: center;
  line-height: 1vh;
  font-weight: 900;

  /* margin-left: 5px; */
  /* margin-left: 3px;
        margin-right: 5px;
        margin-top: 5px; */
  align-content: center;
}

#add_new_field_buttons {
  /* background-color: white; */
  margin-top: 50%;
}
.sample_button2 {
  padding: 3px 5px;
  background-color: #c5eb64;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  color: black;
}
.buttontype2 {
  padding: 4px 7px;
  background-color: rgba(0, 136, 169, 1);
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border-color: white;
  border-style: solid;
  border-width: 1px;
}

.buttontype3 {
  padding: 6px 10px;
  background-color: rgba(0, 136, 169, 1);
  border: none;
  border-radius: 5px;
  margin: 5px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border-color: white;
  border-style: solid;
  border-width: 1px;
}

.delete_single_field_chat_button_class {
  width: 20px;
  height: 20px;
  /* display: none; */
  cursor: pointer;
}

#delete_single_comment_button {
  width: 15px;
  height: 15px;
  cursor: pointer;
}

#delete_single_comment_button_separate_div {
  width: 15px;
  height: 15px;
  cursor: pointer;
}
button:hover {
  background-color: rgba(0, 136, 169, 0.8);
}

#renew_field_button {
  margin-bottom: 10px;
}

#current_colormap_div {
  position: fixed;
  right: 120px;
  bottom: 155px;
  z-index: 100;
  display: none;
}

#current_colormap_img {
  height: 200px;
  opacity: 0.9;
  border-radius: 10px;

  display: none;
  transform: rotate(-90deg);
}

#top_map_options {
  width: 82.5%;
  position: absolute;
  top: 10%;
  left: 16%;
  z-index: 100;
  display: none;
  justify-content: space-between;
  align-items: center;
}

#map_crop_btn {
  border-radius: 1rem 0 0 1rem;
  padding: 0.5rem 0.8rem;
  border: none;
}
#map_irri_btn {
  border-radius: 0rem 1rem 1rem 0rem;
  padding: 0.5rem 0.8rem;
  border: none;
}

#owner_details_div {
  display: none;
}
#owner_details_div img {
  width: 20px;
  height: 20px;
  border-radius: 8px;
}
#overlay_image_info_div {
  width: 40%;
  height: 2rem;
  justify-content: space-between;
  display: flex;
  background-color: #134e5e;
  opacity: 0.8;
  padding: 0.5rem 0.8rem;
  border-radius: 1rem;
  align-items: center;
  font-size: 0.7rem;
  margin-left: 0.5rem;
}

#overlay_image_info_div h4 {
  color: white;
  font-size: 0.7rem;
}

.btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 23%;
}
.btn-group2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 42%;
}

#field_dir_btn {
  font-size: 0.7rem;
  border-color: transparent;
  /* margin-top: 10px;  */
  padding: 0.5rem 0.8rem;
  border-radius: 1rem;
  background-color: #134d5d;
}
#mapped_polygons_info_div {
  width: auto;
  height: 40px;
  /*margin-top: 30px;
   
   margin-bottom: -100px;*/
  display: flex;
  /*transform: translate(-50%, -50%);*/
  background-color: #134e5e;
  opacity: 0.8;
  padding: 5px;
  border-radius: 10px;
}

#mapped_polygons_info_div h4 {
  color: white;
  font-size: 9px;
}

/* #deletefielddiv {
  margin-left: 5px;
  width: 10rem;
} */
#deletefielddiv button {
  border-radius: 2rem;
  font-size: 0.7rem;
  padding: 0.5rem;
  width: 100%;
  /* width: auto;
  margin-top: auto; */
  background-color: #ff6500;
  /* border-color: white; */
  /* border-style: solid;
  border-width: 1px; */
}

#change_crop_code_button {
  border-radius: 2rem;
  font-size: 0.7rem;
  padding: 0.5rem;
  width: 100%;
  background-color: rgba(0, 136, 169, 1);
}
/* #changeCropCodeDiv {
  width: 12rem;
} */

#deletefielddiv button:hover {
  background-color: darkred;
  transition: all 0.3s ease 0s;
}

.buttontype4 {
  padding: 2px 10px;
  background-color: rgba(0, 136, 169, 1);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  font-size: 12px;
  min-height: 30px;
  height: auto;
  align-items: center;
  margin: 10px;
}

#downloadFarmAsKML {
  background: none;
  padding: 0px;
}

/* #pausemonitoringdiv {
  margin-left: 5px;
} */

#pausemonitoringdiv button {
  background-color: teal;
  /* border-color: white;
  border-style: solid; */
  /* border-width: 1px; */
  width: 100%;

  font-size: 0.7rem;
  border-radius: 1rem;
}

#pausemonitoringdiv button:hover {
  background-color: darkgreen;
  transition: all 0.3s ease 0s;
}

.map_button_img_class {
  width: 12px;
  height: 12px;
}

#main_interface_div {
  display: none;
  height: 90%;
  width: 100%;
  position: fixed;
}

/* UI Changed */
#map_div_second_element {
  width: 85%;
  height: 100%;
  left: 15%;
  background-color: white;
  position: fixed !important;
}

/* #checkout-container{
  width: 82%;
} */

#login_div {
  width: 100%;
  height: 100%;
  position: fixed;
  background-size: cover;
  background: linear-gradient(90deg, #cee1d5 0%, #cee1d5 100%);
  background-image: url(MediaAssets2/login_\ page_bg.jpg);
  /* background-image: url(Images/C.png); */
  z-index: 1000;
  /* left: 40%;
   top: 30%;*/
  background-color: white;
}

#login_div_flex {
  top: 10%;
  /* top:13% ; */
  left: 5%;
  width: 100%;
  position: fixed;
  height: min-content;
  display: flex;
  flex-direction: column;
  /* transform: translateX(-148px); */
}
.loginDivMainContent {
  display: flex;
  justify-content: space-around;
  width: 95%;
}

.translate {
  position: fixed;
  top: 2%;
  right: 2%;
}

#app_info_div {
  width: 68%;
  /* height: 90vh; */
  height: 85vh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin-top: 7rem; */
  /* background-size: 100%;
    /* transform: translateY(20px);*/
}

.appInfoDivFirstH1 {
  width: 80%;
  font-size: 4vh;
  color: #037f85;
  text-align: center;
  /* font-size: 2.25rem; */
  font-style: normal;
  font-weight: 600;
  line-height: 2.75rem; /* 122.222% */
  letter-spacing: -0.04rem;
  font-family: "Montserrat", sans-serif;
  /* font-size: 36px; */
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.6399999856948853px;
  text-align: center;
}

.app_info_class {
  display: flex;

  margin: 10px;
}

.app_info_class p {
  font-size: 20px;
  color: white;
}

.app_info_class img {
  width: 40px;
  height: 40px;
}

.loginIcons {
  height: 4vh;
  margin: 0.5vh;
}
.loginIcons2 {
  /* width: 100%; */
  height: 5vh;
}
.loginButton {
  margin-bottom: 0.5vh;
  margin-top: 0.5vh;
  /* margin: 2rem 0 0 6rem; */
  width: 100%;
  border-radius: 0.5125rem;
  background: #037f85;
  border-radius: none;
  /* height: 6.125vh; */
  font-size: 2vh;
  padding: 10px;
}

#login_buttons_div {
  width: 33%;
  /* height: 90vh; */
  flex-shrink: 0;
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  transform: translateY(-1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  /* width: 30%;
  height: 700px;
  /* height: 0px; */
  /* padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  box-shadow: 20px;
  overflow: auto;
   */
}

.line-with-text {
  display: flex;
  align-items: center;
  text-align: center;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.line-with-text::before,
.line-with-text::after {
  content: "";
  flex: 1;
  /* border-bottom: 1px solid #000; */
  border: 0.1px solid #979797;
}

.line-with-text::before {
  margin-right: 0.5em;
}

.line-with-text::after {
  margin-left: 0.5em;
}

/* #appInfoLinksDiv{
  align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 1vh;
} */
.privacyagreementDiv {
  display: flex;
  justify-content: center;
  text-align: center;
  /* position: fixed; */
  bottom: 10px;
}

.privacyagreementDivInternal {
  color: grey;
  font-size: 1.5vh;
  padding: 0.5rem 1rem;
}

.privacyagreementDivInternal a {
  text-decoration: underline;
  color: gray;
  font-size: 1.5vh;
}

.privacyagreementDivInternal_myprofile a {
  font-size: 16px;
  color: gray;
}

.privacyagreementDivInternal_myprofile {
  display: flex;
  align-items: center;
}
.privacyagreementDiv_myprofile {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  justify-content: center;
}
.closepopupmain {
  display: flex;
  align-items: flex-end;
  position: relative;
}
.bulletpoint {
  font-size: 30px;
  border-radius: 50%;
  background-color: gray;
  width: 10px;
  height: 10px;
  margin: 8px;
}

.appInfoLinksDivMain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* width: 100%; */
}

#farmAvailableOn,
.socialIconsH4LoginPage {
  color: rgb(0, 0, 0);
  margin: 0.5vh;
  display: flex;
  justify-content: center;
  font-weight: 900;
  font-size: 2vh;
}
#appInfoLinksDiv {
  display: flex;
  flex-direction: column;

  /* margin-top: 1vh; */
  width: 40%;
  /* border-right: dashed; */
  /* border-right: 1px dashed gray; */
  border-right: 1px solid #858585;
  padding-right: 20px;
}

#login_page_social_icons {
  width: 70%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.logo-images {
  display: flex;
  justify-content: center;
}

#open-report {
  background: #4285f4;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 2vh;
  padding-right: 25px;
  padding-left: 25px;
  border: 0px;
  display: flex;
}

.social_icons_loginpage {
  /* width:100%; */
  height: 5vh;
}

.sateliteImageDiv {
  display: none;
  height: 24%;
  flex-shrink: 0;
  position: absolute;
  left: 30%;
  z-index: 1;
}
.satelliteImageClass {
  height: 70%;
}

#app_logo_login {
  /* width: 55%; */
  height: 12.375vh;
  flex-shrink: 0;
  /* margin: 0.5rem 0 0 6rem; */
}
.LoginPageEmail,
.LoginPagePass,
.LoginPagePhoneNumber,
.LoginPageCountryCode,
.LoginPageCode {
  font-size: 2vh;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  /* margin: 2rem 0 0 6rem; */
  color: black;
}

.LoginPagePhoneNumber,
.LoginPageCountryCode,
.LoginPageCode {
  margin-top: 0.5rem;
}
#email_id_signin_input {
  width: 100%;
  height: 6.125vh;
  flex-shrink: 0;
  border-radius: 0.3125rem;
  background: #fff;
  /* margin: 0.2rem 0 0 6rem; */
  border: none;
  padding: 0 2rem;
  background: #f1f1f1;
}
#password_signin_input {
  width: 90%;
  height: 6.125vh;
  flex-shrink: 0;
  border-radius: 0.3125rem 0 0 0.3125rem;
  background: #fff;
  /* margin: 0.2rem 0 0 6rem; */
  border: none;
  padding: 0 2rem;
  background: #f1f1f1;
}

#pw_signin_hide_i {
  background: #f1f1f1;
}

#phone_number {
  width: 50%;
  /* height: 4vh; */
  height: 6.125vh;
  flex-shrink: 0;
  /* border-radius: 0.3125rem; */
  background: #fff;
  /* margin: 0.2rem 0 0 6rem; */
  border: none;
  padding: 0 2rem;
  background: #f1f1f1;
}

.loginDivLogo {
  display: flex;
  flex-direction: column;
}
#country_code {
  width: 50%;
  /* height: 4vh; */
  height: 6.125vh;
  flex-shrink: 0;
  /* border-radius: 0.6vh; */
  background: #f1f1f1;
  display: flex;
  align-items: center;
  /* margin: 0.2rem 0 0 6rem; */
}

#country-code-select + .select2-container--default .select2-selection--single {
  border: 0px !important;
  background: #f1f1f1 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

#country-code-select + .select2-container .select2-selection--single {
  background: #f1f1f1 !important;
}

#code {
  width: 100%;
  /* height: 4vh; */
  height: 6.125vh;
  flex-shrink: 0;
  border-radius: 0.3125rem;
  background: #fff;
  /* margin: 0.2rem 0 0 6rem; */
  border: none;
  padding: 0 2rem;
  background: #f1f1f1;
}
#email_id_signin_input::placeholder,
#password_signin_input::placeholder {
  font-size: 2vh;
  color: #bcbec0;
  font-style: normal;
  font-weight: 400;
  line-height: 1vh;
}

.signin_buttons {
  height: 50px;
  width: 250px;
  margin: 5px;
  border-radius: 10px;
  cursor: pointer;
}

#otpSignInButton {
  /* height: 50px;
  width: 250px;
  margin: 5px;
  padding: 9px 25px; */
  /* background-color: rgba(0, 136, 169, 1); */
  /* border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s; */
}

/* #EmailPasswrdButton {
  background-color: rgba(0, 136, 169, 1);
  width: 100%;
  height: 5vh;
} */

#countdown {
  text-align: center;
  /* color: gray; */
  /* font-weight: 900; */
  color: rgb(0, 0, 0);
  font-family: "Times New Roman", Times, serif;
  padding: 10px;
}
#get_otp,
#submit_otp_button {
  width: 100%;
  /* margin-left: 9rem; */
  height: 5vh;
}

#get_otp:disabled {
  background-color: gray;
  /* color: #666666; */
  cursor: not-allowed;
}
#farmLoginButton {
  /* margin: 1rem 0 0 6rem; */
  font-size: 5.375vh;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#mobile_app_icons {
  /* bottom: 70px;
   position: fixed; */
  width: auto;
  /* // margin-left:auto;
  // margin-right: auto; */
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 20px;
  border-radius: 10px;
  cursor: pointer;

  /* // right: 10%; */
}

a {
  cursor: pointer;
}

#video_tutorials_li,
#log_out_button {
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #037f85;
  color: #037f85;
  width: 150px;
  text-align: center;
  margin: 5px;
}
.mobile_app_icons_sidebar {
  width: 90%;
}

#show_jeevn_button {
  padding: 6px 5px;
  /* background-color: darkgreen; */
  /* background-color: #D8BFD8; */
  border: none;
  height: auto;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  /* border-color: white;
    border-style: solid;
    border-width: 2px; */
  font-size: 16px;
  text-align: center;
  margin-left: 5px;
  width: 100%;
}

.mobile_app_icons_class {
  width: 200px;
  margin-left: 20px;
  margin-right: 20px;
  cursor: pointer;
  /* //margin: 5px; */
}

.social_icons_flex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  /* //justify-content: space-between; */
}

/* .social_icons_flex a{
    width: 50px;
    height: 50px;
    cursor: pointer;
  }

  .social_icons_flex img{
    width: 50px;
    height: 50px;
    cursor: pointer;
  }*/

.social_icons_sidebar {
  /* width: 100%; */
  height: 3vh;
  cursor: pointer;
}
.margindesign {
  margin: 20px;
}
/* .social_icons_login {
  margin-top: 50px;
  display: flex;
} */
#send_invitation_button {
  position: relative;
  margin-top: 10px;
  width: 100%;
}

#invite_member_top_div {
  color: white;
  background-color: #480048;
  border-radius: 5px;
  padding: 5px;
}

#invite_member_top_div p {
  font-size: 12px;
}
#invitation_info {
  margin-top: 40px;
  bottom: 10px;
  height: min-content;
  text-align: justify;
  font-size: 14px;
}

/*#field_noti_img {
  position: relative;
  height: 20px;
  width: 20px;
  margin-left: 10px;
  margin-top: 10px;
}

#field_noti_button_div{
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #134E5E;
}

#noti_count {
  position: relative;
  color: white;
  font-size: 14px;
  float: right;
  font-weight: bold;
  margin-top: -10px;
}

#all_notifications_div{
  display: none;
  width: 800px;
  height: 600px;
  overflow: auto;
}

#all_notifications_top_header{
  display: flex;
  justify-content: space-between;
 
}

#single_notification_div {
  display: flex;
}

.single_notification_class{
  background-color: #134E5E;
  border-radius: 10px;
  margin: 2px;
  padding: 5px;
  color: white;
}
.single_notification_class img{
  width: 50px;
  height: 50px;
  border-radius: 5px;
}*/
#secret_keys {
  padding: 5px;
  background-color: #134e5e;
  border-radius: 10px;
  color: white;
  width: 100%;
}
#send_otp_div {
  display: none;
  width: 400px;
  height: auto;
}

#phone_number_div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* align-items: flex-end; */
  width: 70%;
}

#otp_div {
  display: none;
}

#invalid_otp {
  display: none;
}

#invalid_phone_number {
  display: none;
}

#empty_country_code {
  display: none;
}

#recaptcha-container {
  margin: 0.2rem 0 0 6rem;
  border: none;
  padding: 0 2rem;
}

#recaptcha-container_phone_number {
  /* margin: 2rem 0 0 6rem; */
  border: none;
  margin-left: 9rem;
}

/* #input_container {
  margin-left: 10%;
} */

/* #country_code {
  width: 50px;
} */

/* #phone_number {
  width: 350px;
} */
/* #phone_number {
  width: 120px;
} */
/*#google_signin_button {
    border: none;
    background-image: url("Images/google_signin_button.png");
    background-size: cover;
  }

  #fb_signin_button {
    background-image: url("Images/login_with_facebook.png");
    background-size: cover;
    transition: all 0.3s ease 0s;
  }

  #apple_signin_button {
    background-image: url("Images/signin_with_apple.png");
    background-size: cover;
  }*/

/* #map_div{
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    background-color: green;
  }*/

#indexresults_div {
  height: 90%;
  /* width: 82%; */
  width: 84%;
  display: none;
  position: fixed;
  margin: 10px 10px 10px 10px;
  overflow: auto;
}

#first_graph_div {
  width: 100%;
  height: 42%;
  display: flex;
}

#second_graph_div {
  width: 100%;
  height: 42%;
  display: flex;
  margin-top: 10px;
}
#third_graph_div {
  width: 100%;
  height: 42%;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

#showFarmsSearchInput,
#showFarmsFilterSelect {
  margin-right: 1rem;
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  text-align: center;
}
.showFarmsBtn {
  border-color: transparent;
  /* padding: 2px 8px; */
  padding: 5px 10px;
  /* background-color: rgb(0, 139, 139); */
  background-color: #037f85;
  border-radius: 10px;
  font-size: 14px;
}
#showFarmsFilterSelect {
  margin-left: 1rem;
}
/* .chartContainer {
  height: 300px;
  width: 33%;
  padding: 10px;
   margin: 5px 15px 5px 15px;
} */

.bigchartContainer {
  height: 82.5%;
  /* width: 99%; */
  width: 94%;
  /* padding: 10px; */
  margin: 15px;

  /* border-radius: 10px; */
  border: 0.05px solid rgba(0, 0, 0, 0.1);
}

#tutorial_div {
  height: 100%;
  width: 82%;
  position: fixed;
  display: none;
  background: white;
  padding: 10px 10px 10px 10px;
  justify-content: space-between;
}

#tutorial_div object {
  /* width: 100%; */
  height: 90%;
  overflow: auto;
  /* border:5px */
}

#my_files_div {
  height: 100%;
  width: 80%;
  position: fixed;
  display: flex;
  background: white;
  padding: 10px 10px 10px 10px;
  justify-content: space-between;
}

#my_files_left_div_header {
  display: flex;
  justify-content: space-between;
}

#upload_kmzkml_my_files {
  font-size: 15px;
}
#my_files_div h4 {
  font-size: 15px;
}

.single_kmz_file_class {
  display: flex;
  padding: 5px;
  background-color: #134e5e;
  border-radius: 10px;
  margin: 5px;
  justify-content: space-between;
}

/*#single_kmz_file_div{
    display: flex;
  }

  #single_geotiff_date_div {
    display: none;
  }*/
.single_kmz_file_class button {
  width: 150px;
}

.single_kmz_file_class img {
  width: 25px;
  height: 25px;
}

.kmz_options {
  display: flex;
}
#my_files_left_div {
  height: 90%;
  width: 40%;
  background-color: white;
}

#my_files_left_div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#my_files_left_div::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#my_files_left_div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#mapcontrolsimagedatediv::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#mapcontrolsimagedatediv::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#mapcontrolsimagedatediv::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#my_files_right_div {
  height: 90%;
  width: 50%;
  margin-left: 10px;
  background-color: white;
  overflow: auto;
  font-weight: bold;
}
.tifbuttons {
  display: flex;
  flex-wrap: wrap !important;
}

.tifbuttons button {
  width: 50px;
  height: 20px;
  font-size: 10px;
  color: white;
}
#my_files_right_div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#my_files_right_div::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#my_files_right_div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#reports_div {
  height: 100%;
  width: 100%;
  position: fixed;
  display: none;
  background: white;
  padding: 10px 10px 10px 10px;
}

#report_days_and_pdf_view_div {
  height: 100%;
  width: 100%;
  display: flex;
}

#report_days_div {
  height: 100%;
  width: 30%;
}

#report_days_div h5 {
  font-size: 15px;
}

#successful_days_div {
  /* min-height: 30%;
  max-height: 45%;
  height: auto;
  width: 100%; */
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 10px;
  /* padding: 10px;
  background-color: #134e5e;
  overflow: auto; */
}

#failed_days_div {
  min-height: 30%;
  max-height: 40%;
  height: auto;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #480048;
  border-radius: 10px;
  padding: 10px;
  overflow: auto;
  display: none;
}

#show_pdf_div {
  height: 89%;
  /* width: 50%; */
  width: 84%;
  margin: 5px 5px;
  right: 10px;
  bottom: 10px;
}

#pdf_iframe {
  width: 100%;
  height: 100%;
}

#payment_div {
  height: 90%;
  width: 100%;
  /* position: fixed; */
  display: none;
  background: rgb(208, 226, 214);
  padding: 10px 10px 10px 10px;
}

#field_area_payment_div {
  display: flex;
  font-size: 15px;
  color: white;
  width: 98%;
  margin-left: 1%;
}

#payment_left_div {
  width: 40%;
  background-color: #253637;
  margin: 0.5rem;
  padding: 10px;
  color: white;
  border-radius: 1rem;
  overflow: auto;
  /* background-image: url("Images/landing_background.JPG"); */
}

#reset_map,#showSubscriptionOptions {
  width: 97%;
  background-color: darkgreen;
  margin-top: 20px;
  border-radius: 10px;
  display: flex;
  font-size: 18px;
  color: white;
  justify-content: center;
  margin: 10px;
  padding: 0.5rem;
  cursor: pointer;
  border-color: white;
  border-style: solid;
  border-width: 1px;

  margin-left: 10px;
}

#pricing_method_p {
  margin-top: 10px;
  padding: 5px;
  font-size: 12px;
  /* color: black; */
}

#h4PaymentDiv {
  color: white;
  padding-left: 30px !important;
}
#h4Payment {
  color: white;
}
#payment_right_div {
  width: 40%;
  height: 100%;
  right: 10px;
  margin: 5px;
  padding: 10px;
  color: white;
  border-radius: 10px;
  overflow: auto;
  background-image: url("Images/web_image_farmonaut_1.jpg");
}

#offer_text_input::-webkit-input-placeholder {
  color: black;
  font-weight: bold;
  margin-left: 10px;
}
#payment_right_div h4 {
  font-size: 15px;
  font-weight: bold;
}

#payment_right_div h5 {
  font-size: 12px;
}
#important_things {
  margin-top: 10px;
}

.payment_option_class {
  width: 90%;
  height: 3rem;
  background-color: #134e5e;
  border-radius: 10px;
  display: flex;
  font-size: 18px;
  color: white;
  justify-content: space-between;
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  border-color: white;
  border-style: solid;
  border-width: 1px;
}

.payment_option_class_sub {
  height: 100%;
  width: 18vw;
  /* background-color: #134e5e; */
  background-color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  color: black;
  justify-content: space-between;
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  border-color: white;
  border-style: solid;
  border-width: 1px;
}

#BasicPlan_div:hover,
#StandardPlan_div:hover,
#PremiumPlan_div:hover,
#ElitePlan_div:hover {
  transform: scale(1.05); /* Slightly increases the size */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Adds shadow for the popout effect */
  --tw-bg-opacity: 1;
  /* background-color: rgb(49 46 129 / var(--tw-bg-opacity)); */
  background-color: #037f85;
  color: white;
}
#BasicPlan_div:hover li,
#StandardPlan_div:hover li,
#PremiumPlan_div:hover li,
#ElitePlan_div:hover li {
  color: white;
}

#BasicPlan_div:hover .text-muted,
#StandardPlan_div:hover .text-muted,
#PremiumPlan_div:hover .text-muted,
#ElitePlan_div:hover .text-muted {
  color: white !important;
}

#BasicPlan_div:hover button,
#StandardPlan_div:hover button,
#PremiumPlan_div:hover button,
#ElitePlan_div:hover button {
  --tw-bg-opacity: 1;
  /* background-color: rgb(99 102 241 / var(--tw-bg-opacity)); */
  background-color: white;
  color: #037f85;
  border-color: #059096;
}

#BasicPlan_div button,
#StandardPlan_div button,
#PremiumPlan_div button,
#ElitePlan_div button {
  --tw-bg-opacity: 1;
  /* background-color: rgb(99 102 241 / var(--tw-bg-opacity)); */
  /* background-color: white; */
  /* color: #037f85; */
  border-color: #059096;
  border-radius: 10px;
  margin: 10px;
  width: 95%;
  padding: 10px;
  background-color: #037f85;
  color: white;
}

.mt-5,
.my-5 {
  margin-top: 1rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 1rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 1vw !important;
}

/* .h-100 {
  height: 32vw !important;
} */

@media (min-width: 1200px) {
  .container {
    width: 1200px !important;
  }
}

.payment_option_class:hover {
  background-color: black;
  transition: 0.2s ease all;
}

#demo_vid_1 {
  border-radius: 10px;
  box-shadow: 5px;
  height: auto;
  width: 100%;
  margin-top: 20px;
}

#demo_vid_2 {
  border-radius: 10px;
  box-shadow: 5px;
}

#demo_vid_3 {
  border-radius: 10px;
  box-shadow: 5px;
}

#payment_successful_modal {
  display: none;
  position: fixed;
}

#data_coming_soon_div {
  display: none;
  position: fixed;
}

#delete_field_div {
  display: none;
  position: fixed;
}

#add_polygon_within_field {
  background-color: white;
  padding: 0.5rem;
  border-radius: 1rem;
  font-size: 1.5vh;
  color: #000;
}

#add_partner_field_div {
  display: none;
  position: fixed;
}

.secret_key_class {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 14px;
  overflow-wrap: anywhere;
}

#overlay_image_info_div:hover > span {
  visibility: visible;
  opacity: 1;
}

#mapcontrolsimagetypediv:hover > span {
  visibility: visible;
  opacity: 1;
}

#add_partner_field_button:hover > span {
  visibility: visible;
  opacity: 1;
}

#pausemonitoringdiv:hover > span {
  visibility: visible;
  opacity: 1;
}

#deletefielddiv:hover > span {
  visibility: visible;
  opacity: 1;
}

#current_colormap_div:hover > span {
  visibility: visible;
  opacity: 1;
}

#add_partner_field_options_div {
  display: flex;
  justify-content: center;
}

#incorrect_keys_p {
  display: none;
}

#weather_data_div {
  height: 100%;
  width: 100%;
  position: fixed;
  margin: 10px;
  display: none;

  /* margin: 10px 10px 10px 10px;*/
  background-color: white;
  overflow: scroll;
}

#current_and_forecast_weather_div {
  /* width: 25%; */
  /* width: 35%; */
  width: 40%;
  height: 100%;
  background-color: white;
}

#forecast_weather_type {
  color: #5c5c5c;
  font-weight: 900;
  font-size: 2.5vh;
}

#forecast_weather_date {
  /* font-size: 12px; */
  font-size: 1.5vh;
}

#weather_graphs_div {
  /* width: 48%; */
  width: 43%;
  /* height: 82%; */
  /* height: 205vh; */
  height: 188vh;
  left: 25%;
  /* background-color: white; */

  /* overflow-y: scroll; */
}

/*#weather_tile_map {
    width: 100%;
    height: 100%;
  }*/

#weather_graphs_bar {
  /* width: 75%; */
  width: 100%;
  /* height: 8%; */
  left: 25%;
  padding-bottom: 10px;
  color: white;
}

#weather_toggle {
  display: flex;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.graph_toggle_class_active {
  /* border-radius: 10px; */
  /* background-color: #134e5e; */
  color: black;
  font-weight: 900;
  /* padding: 5px; */
  text-align: center;
  font-size: 2vh;
  /* color: white; */
  width: 20vh;
  cursor: pointer;
  border-bottom: 0.3vh solid #037f85;
}

.download_button {
  border-radius: 1vh;
  /* background-color: black; */
  background-color: #037f85;
  padding: 0.5vh;
  text-align: center;
  font-size: 1.5vh;
  color: white;
  /* width: 2.5vh; */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -0.5vh;
}
.graph_toggle_class_inactive {
  /* border-radius: 10px;
  background-color: #480048; */
  padding: 0.3vh;
  padding-top: 0px;
  text-align: center;
  font-size: 2vh;
  color: #858585;
  font-weight: 900;
  /* width: 2.5vh; */
  cursor: pointer;
}
/*  .toggleWrapper{
    /*position: absolute;*/
/* margin: 5px;
    overflow: hidden;
    position: fixed;
    top:15%;
    right:1%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
  }
  .toggleWrapper input{
  position: absolute;
    /*left: -99em;*/
/* left: 10px;
  }
  .toggle{
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 300px;
    height: 40px;
    background: #d21626;
    border-radius: 5px;
    -webkit-transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  .toggle:before, .toggle:after{
    position: absolute;
    line-height: 40px;
    font-size: 14px;
    z-index: 2;
    -webkit-transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  .toggle:before{
    content: "Forecast Graphs";
    left: 20px;
    color: #D21626;
  }
  .toggle:after{
    content: "Historical Graphs";
    right: 20px;
    color: #fff;
  }
  .toggle__handler{
    display: inline-block;
    position: relative;
    z-index: 1;
    background: #fff;
    width: 140px;
    height: 34px;
    border-radius: 3px;
    top: 3px;
    left: 3px;
    -webkit-transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  input:checked + .toggle{
    background: #66b317;
  }
  input:checked + .toggle:before{
    color: #fff;
  }
  input:checked + .toggle:after{
    color: #66b317;
  }
  input:checked + .toggle .toggle__handler{
    width: 265px;
    -webkit-transform: translateX(140px);
    transform: translateX(140px);
    border-color: #fff;
  }*/

#first_row_weather_graphs_div {
  display: flex;
  /* width: 75%; */
  height: 35%;
  padding-bottom: 10px;
}

#temperature_graph {
  /* width: 50%; */
  /* height: 100%; */
  width: 100%;
  height: 50%;
  margin: 5px;
  padding-left: 30px;
  margin-bottom: 10px;
}

#cloud_cover_graph {
  /* width: 50%; */
  height: 100%;
  height: 50%;
  margin: 5px;
  padding-left: 30px;
  margin-bottom: 10px;
}

#second_row_weather_graphs_div {
  display: flex;
  /* width: 75%; */
  height: 35%;
}
#third_row_weather_graphs_div {
  display: flex;
  /* width: 35%; */
  /* height: 35%; */
  height: 30%;
}

#humidity_graph {
  /* width: 50%; */
  height: 100%;
  height: 50%;

  margin: 5px;
  padding-left: 30px;
  margin-bottom: 10px;
}

#pressure_graph {
  /* width: 50%; */
  height: 100%;
  height: 50%;

  margin: 5px;
  padding-left: 30px;
  margin-bottom: 10px;
}

#wind_speed_graph {
  width: 100%;
  height: 100%;
  height: 50%;

  margin: 5px;
  padding-left: 30px;
  margin-bottom: 10px;
}

#current_weather_div {
  height: auto;
  width: 97%;
  /* background-color: teal; */
  border-radius: 10px;
  margin: 5px;
}

#current_weather_div h4,
#current_weather_div h5 {
  color: white;
  font-size: 1.2vh;
}
#current_weather_div h5 {
  margin-left: 0.5vh;
}
.min_temp,
.max_temp {
  display: flex;
}

.max_temp h5 {
  color: #037f85 !important;
  font-size: 20px !important;
}
.min_temp h5 {
  color: #b9b9b9;
}
#forecast_weather_div {
  /* height: 35%; */
  height: auto;
  /* width: 100%; */
  width: 97%;
  margin: 5px;
  height: 147vh;
  /* overflow: auto; */
}

#forecast_weather_div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#forecast_weather_div::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#forecast_weather_div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#report_days_div h5 {
  font-size: 12px;
}

.styled_scrollbar_horizontal_class::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

.styled_scrollbar_horizontal_class::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 10px;
}

.styled_scrollbar_horizontal_class::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

.styled_scrollbar_class::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

.styled_scrollbar_class::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

.styled_scrollbar_class::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#weather_forecast_h4 {
  color: black;
  font-size: 14px;
  margin-left: 5px;
}

/*#single_forecast_weather_div {
    width: 95%;
    height: 80px;
    border-radius: 10px;
    background-color: blue;
    padding: 5px;
    margin-top: 5px;
  }*/

#top_header_help {
  width: 20px;
  height: 20px;
  display: none;
}

#top_header_help:hover {
  background-color: teal;
  border-radius: 10px;
  transition: 0.2s ease all;
}

.large_sidebar_icon {
  width: 30px;
  height: 30px;
}

.large_sidebar_icon:hover {
  background-color: teal;
  border-radius: 15px;
  transition: 0.2s ease all;
}
#in_map_help {
  border-radius: 15px;
  margin-left: 20px;
  background-color: #5264ae;
}
#in_map_help:hover {
  background-color: teal;
  border-radius: 15px;
  transition: 0.2s ease all;
}
.small_sidebar_icon {
  width: 16px;
  height: 16px;
}

.small_sidebar_icon:hover {
  background-color: teal;
  border-radius: 8px;
  transition: 0.2s ease all;
}

#indexresultssidebarLi:hover,
#weatherdatasidebarLi:hover,
#reportssidebarLi:hover {
  padding: 0.5rem;
  background-color: rgb(255, 255, 255);
  border: solid gray 0.05rem;
  height: auto;
  border-radius: 30px !important;
  transition: all 0.3s ease 0s;
  color: teal !important ;
}

#indexresultssidebarLi:hover .fa-chart-line,
#weatherdatasidebarLi:hover .fa-cloud-meatball,
#reportssidebarLi:hover .fa-file {
  color: rgb(3, 127, 133) !important;
  color: teal !important;
}

#indexresultssidebarLi:hover #indexresultssidebar,
#weatherdatasidebarLi:hover #weatherdatasidebar,
#reportssidebarLi:hover #reportssidebar {
  color: rgb(3, 127, 133) !important;
  color: teal !important;
}

#mapcontrolssidebar:hover {
  padding: 0.5rem;
  background-color: rgb(255, 255, 255);
  border: solid gray 0.05rem;
  height: auto;
  border-radius: 30px;
  transition: all 0.3s ease 0s;
  color: teal !important;
}

#mapcontrolssidebar:hover #map_controls_span,
#map_controls_span:hover {
  color: teal !important;
}

#mapcontrolssidebar .hover-image {
  display: none;
}
#mapcontrolssidebar:hover .hover-image {
  display: block;
}
#mapcontrolssidebar:hover span {
  width: 100%;
}
#mapcontrolssidebar:hover {
  display: flex;
  justify-content: space-between;
}
#mapcontrolssidebar:hover .default-image {
  display: none;
}

#showFarmsPopupButtonLi:hover {
  padding: 0.5rem;
  background-color: rgb(255, 255, 255);
  border: solid gray 0.05rem;
  height: auto;
  border-radius: 30px;
  transition: all 0.3s ease 0s;
  display: flex;
  /* justify-content: space-between; */
}

#showFarmsPopupButtonLi .hover {
  display: none;
}
#showFarmsPopupButtonLi:hover .hover {
  display: block !important;
}

#showFarmsPopupButtonLi:hover .default {
  display: none;
}

.click-active-Farms {
  padding: 0.5rem;
  background-color: rgb(255, 255, 255);
  border: solid gray 0.05rem;
  height: auto;
  border-radius: 30px;
  transition: all 0.3s ease 0s;
  display: flex;
  /* justify-content: space-between; */
}

.click-active-Farms .hover {
  display: block;
}

.click-active-Farms .default {
  display: none;
}

.click-active {
  padding: 0.5rem;
  background-color: rgb(255, 255, 255);
  border: solid gray 0.05rem;
  height: auto;
  border-radius: 30px;
}

.hover-image2 {
  display: block;
}
.click-active span {
  width: 100%;
}
.click-active {
  display: flex;
  justify-content: space-between;
}
.click-active .default-image {
  display: none;
}

#field_selection_help {
  margin-bottom: 10px;
  display: none;
}

.single_forecast_class {
  /* width: 95%; */
  width: 100%;
  /* height: auto; */
  height: 13.5vh;
  border-radius: 1vh;
  /* background-color: darkmagenta; */
  padding: 0.5vh;
  margin-top: 0.5vh;
  margin-left: 0.5vh;
  margin-bottom: 3.2vh;
  padding-top: 1.5vh;
  padding-bottom: 1.5vh;
}

.single_forecast_class h4 {
  color: white;
}

.weather_details_class {
  display: flex;
  margin: 5px;
  color: black;
}

.weather_details_class h5 {
  font-size: 10px;
  font-weight: bold;
  color: white;
}

.weather_icons {
  width: 12px;
  height: 12px;
}

#field_chat_div {
  height: 100%;
  width: 100%;
  position: fixed;
  margin: 10px;
  /* display: none;*/
  padding: 10px;
  display: flex;
  /* margin: 10px 10px 10px 10px;*/
  background-color: white;
  overflow: auto;
}

#comparison_date1_div {
  /* height: 150px; */
  height: auto;
  overflow: auto;
}

#comparison_date1_div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#comparison_date1_div::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#comparison_date1_div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#back_to_main_map_button {
  background-color: black;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 20px;
  position: fixed;
  left: 35%;
  bottom: 25px;
}

#back_to_main_map_button:hover {
  background-color: gray;
  transition: all 0.3s ease 0s;
}

#compare_images_button {
  margin-top: 0px;
}

#delete_polygon_button {
  border-radius: 15px;
  font-size: 12px;
  padding-left: 5px;
  padding-right: 5px;
  width: auto;
  background-color: #ff6500;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  /* margin-left: 20px; */
}

#delete_polygon_button:hover {
  background-color: darkred;
  transition: all 0.3s ease 0s;
}

#save_poly_name_button {
  border-radius: 5px;
  font-size: 12px;
  padding-left: 5px;
  padding-right: 5px;
  width: auto;
  height: 20px;
  background-color: indianred;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  margin-left: 10px;
}
/*

  #close_poly_data_div{
    border-radius: 5px;
  font-size: 12px;
  padding-left: 5px;
  padding-right: 5px;

  width: auto;
  height: 20px;
  background-color: darkblue;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  margin-left: 10px;
    
  }*/

#close_poly_data_div:hover {
  background-color: brown;
  transition: all 0.3s ease 0s;
}

#poly_upper_data {
  width: auto;
  height: 30px;
  margin-left: 10px;
  cursor: all-scroll;
  /*margin-top: 30px;
     
     margin-bottom: -100px;*/
  display: flex;
  /*transform: translate(-50%, -50%);*/
  background-color: #134e5e;

  padding: 5px;
  border-radius: 10px;
}

#poly_upper_data h4 {
  font-size: 14px;
  color: white;
}

.buttonpoly1 {
  background-color: #ff6500;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  width: auto;
  padding: 1px;
  font-size: 12px;
  margin-right: 10px;
}

/* #compare_images_button {
  background-color: #ff6500;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
} */

/* #compare_images_button:hover {
  background-color: darkred;
  transition: all 0.3s ease 0s;
} */
#comparison_date_1 {
  font-size: 14px;
}

#comparison_date_2 {
  font-size: 14px;
  margin-top: 5px;
}
#comparison_date2_div {
  /* height: 150px; */
  height: auto;
  margin-top: 10px;
  /* overflow: auto; */
}

#comparison_date2_div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#comparison_date2_div::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#comparison_date2_div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#poly_dates {
  height: 200px;
  margin-top: 10px;
  overflow: auto;
}

#poly_dates::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#poly_dates::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#poly_dates::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#compare_maps_div {
  width: 100%;
  height: 100%;
  display: none;
  background-color: black;
}

#map1_div {
  width: 50%;
  height: 90%;
  background-color: black;
  margin-right: 5px;
}

#map1 {
  width: 100%;
  height: 100%;
  background-color: turquoise;
}

#map2 {
  width: 100%;
  height: 100%;
  background-color: turquoise;
}

#map2_div {
  width: 50%;
  height: 90%;
  background-color: tomato;
}

.overlay_class {
  width: auto;
  height: 30px;
  margin-left: 10px;
  /*margin-top: 30px;
   
   margin-bottom: -100px;*/
  display: flex;
  /*transform: translate(-50%, -50%);*/
  background-color: #134e5e;
  opacity: 0.8;
  padding: 5px;
  border-radius: 10px;

  position: absolute;
  top: 12%;

  z-index: 100;
}

.overlay_class h4 {
  color: white;
  font-size: 14px;
}

#map1_indices_div {
  position: fixed;
  bottom: 25px;
  left: 20%;
  width: 180px;
  height: 162px;
  background-color: teal;
  opacity: 0.8;
  border-radius: 10px;
}

#map1_indices_image {
  height: 162px;
  width: 180px;
  border-radius: 10px;
}

#map2_indices_div {
  position: fixed;
  bottom: 25px;
  right: 60px;
  width: 180px;
  height: 162px;
  background-color: teal;
  opacity: 0.8;
  border-radius: 10px;
}

#map2_indices_image {
  height: 162px;
  width: 180px;
  border-radius: 10px;
}

#team_members_div {
  height: 100%;
  width: 80%;
  position: fixed;
  margin: 10px;
  /* display: none;*/
  padding: 10px;
  display: flex;
  justify-content: space-between;
  /* margin: 10px 10px 10px 10px;*/
  background-color: white;
  overflow: auto;
}

#team_members_left_div {
  height: 90%;
  width: 45%;
  padding: 5px;
  margin-right: 10px;
  border-radius: 10px;
  /* background-color: #e8e8e8; */
}

#team_members_right_div {
  color: white;
  height: 90%;
  width: 45%;
  padding: 5px;
  /* background-color: #e8e8e8; */
  border-radius: 10px;
}

#team_members_upper_div {
  height: 60%;
  background-color: #480048;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 5px;
  overflow: auto;
}

.team_member_options_class {
  display: flex;
  justify-content: start;
}
#team_members_lower_div {
  height: 35%;
  background-color: #480048;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 5px;
  overflow: auto;
}

.single_team_member_class {
  background-color: #134e5e;
  padding: 10px;
  margin-top: 5px;
  border-radius: 10px;
  color: white;
  font-size: 11px;
  font-weight: bold;
}
.team_member_div_first_row {
  display: flex;
}

.team_member_div_first_row img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

#all_field_discussion_div {
  width: 50%;
  padding: 5px;
  height: 90%;
  background-color: white;
  overflow: auto;
}

#new_discussion_div {
  background-color: #480048;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
}
#write_a_comment_div {
  width: 30%;
  height: 85%;
  padding: 5px;
  right: 10px;
  background-color: #4b9dea;
  margin-left: 10px;
  display: none;
  position: fixed;
  border-radius: 5px;
}

.single_field_chat_class {
  width: auto;
  height: auto;
  padding: 5px;
  background-color: #e5e5e5;
  margin-bottom: 5px;
  border-radius: 5px;
}

#poster_data_div {
  display: flex;
  font-size: 12px;
  color: black;
  justify-content: space-between;
  font-weight: bold;
}
#post_images_div {
  margin: 5px;
  overflow: auto;
}

#single_thread_comments_div {
  /* min-height: 65%;
  max-height: 90%; */
  overflow: auto;
}

.poster_info {
  display: flex;
}
#poster_dp {
  width: 25px;
  height: 25px;
  border-radius: 12px;
}

.comment_dp_class {
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

#commentor_data_div {
  font-size: 11px;
}
.field_chat_img_class {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  background-color: teal;
  object-fit: cover;
  margin: 5px;
  cursor: pointer;
}

#make_new_image_comment_div {
  position: relative;
  width: 140px;
  font-size: 9px;
  top: -50px;
  margin-left: auto;
  margin-right: auto;
  /* margin-bottom: 2px; */
  display: flex;
  padding-left: 2px;
  padding-right: 2px;
  background-color: #4b9dea;
  justify-content: space-between;
  border-radius: 5px;
}

#make_new_image_comment_div button {
  font-size: 9px;
}
#make_new_image_comment_div div {
  font-size: 9px;
}

#post_text_div {
  background-color: #add8e6;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  border-radius: 5px;
  padding: 5px;
  font-size: 12px;
}

#post_comments_div {
  margin-left: 5px;
  margin-right: 5px;
  /* margin-top: -30px; */
}
.single_comment_style {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 5px;
  margin: 5px;
  font-size: 11px;
  border-radius: 5px;
}
.comment_class {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

#make_new_comment_div {
  display: flex;
  width: fit-content;
  max-width: 400px;
  /* margin-top: -30px; */
  margin-left: 20px;
}
#make_new_comment_div button {
  font-size: 11px;
}
.gallery_options {
  margin-left: 14px;
  cursor: pointer;
}

.gallery_options img {
  width: 30px;
  height: 30px;
}

#newCommentInput {
  margin-right: 5px;
  width: 99%;
}

#newDiscussionInput {
  margin: 5px;
  width: 98%;
}

#new_comment_input_div {
  position: absolute;
  width: 97%;
  background-color: #134e5e;
  display: flex;
  bottom: 5px;
  padding: 2px;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
}

#submitFieldButton {
  /* background-color: #480048; */
  background: linear-gradient(180deg, #1cd1a1 0%, #037f85 100%);
  border-style: none;
  font-size: 2.5vh;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  width: 50%;
}

#save_selected_polygon {
  background-color: #480048;
}
#submit_comment_button {
  width: 30px;
  height: 30px;
  margin-top: auto;
  margin-bottom: auto;
  cursor: pointer;
}
.flex_it2 {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.flex_it2 h5 {
  font-size: 12px;
}

/* #single_comment_div {
    background-color: #4CAF50;
    border-radius: 10px;
    padding: 5px;
    margin: 10px;
    font-size: 12px;
  }*/

#discussion_image {
  width: auto;

  height: 25%;
  margin-left: auto;
  margin-right: auto;
}

#attached_discussion_images {
  display: none;
  /* width: 50%; */
  overflow: auto;
}

.attached_image_delete_class {
  width: 20px;
  height: 20px;
  /* margin-top: -25px; */
  margin-left: auto;
  margin-right: auto;
}

.attached_discussion_image_class {
  height: 100px;
  width: 100px;
  object-fit: cover;
  margin: 5px;
  border-radius: 5px;
}
.scrollbar {
  margin-left: 30px;
  float: left;
  height: 300px;
  width: 65px;
  background: black;
  overflow-y: scroll;
  margin-bottom: 25px;
}

#sidebar {
  position: fixed;
  width: 15%; /* UI Changes */
  height: 100%; /* UI Changes */
  background: #11202b; /* UI Changes */
  left: 0px;
  transition: all 500ms linear;
  overflow: auto;
  overflow-x: hidden; /* UI Changes */
}

#sidebar ul li {
  color: rgba(230, 230, 230, 0.9);
  list-style: none;
  padding: 15px 10px 10px 5px;
  margin: 0.7rem 0.4rem; /* UI Changes */
  width: 95%; /* UI Changes */
  /* border-bottom: 1px solid rgba(100, 100, 100, 0.3); */ /* UI Changes */
}

#sidebar ul li:hover {
  color: #037f85;
  transition: all 0.3s ease 0s;
}

.sidebar_icons {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.hiddenAdminSubMenu {
  display: none;
}

#post_images_div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#post_images_div::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 10px;
}

#post_images_div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

/* #sidebar::-webkit-scrollbar-track {           // Side bar scroller
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#sidebar::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 5%;
}

#sidebar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
} */

#map_div {
  /*display: flex;*/
  height: 100%;
  width: 100%;
  cursor: pointer;
  background: #dceae1;
  /* padding: 20px; */
}

#map {
  top: 3.5rem;
  left: 0.5rem;
  top: 3rem;
  width: 98.5%;
  height: 83%;
  cursor: pointer;
  border-radius: 1rem;
}

.overlayImages {
  height: 0.8rem;
  margin-right: 0.2rem;
}
/* #google_translate_element,
.skiptranslate {
  display: none;
} */

/* Optional: Makes the sample page fill the window. */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  height: 100%;
  font-size: 16px;
  /* overflow: hidden; */
  overflow-x: hidden;
  /* font-family: --open-sans; */
  -webkit-font-smoothing: antialiased;
  background-color: #24252a;
}

iframe {
  border: none;
  padding: 0;
}
.search {
  width: 100%;
  position: relative;

  display: flex;
}

.searchBottom {
  width: 30%;
  display: flex;
  /* display: none; */
}

.searchTerm {
  width: 99%;
  border: 3px solid #00b4cc;
  padding: 5px;
  height: 40px;
  border-radius: 5px 5px;
  outline: none;
  color: #9dbfaf;
}

#searchWhitelabelVillage {
  width: 80%;
  /* border: 3px solid #00b4cc; */
  padding: 0.5rem;
  height: 6vh;
  border-radius: 2rem 0 0 2rem;
  outline: none;
  border: solid gray 0.05rem;
}
#field_analysis_div {
  margin-top: 1rem;
  background-color: black;
  border-radius: 15px;
  padding: 8px;
  display: block;
  max-width: 50%;
  translate: -2.5rem 3rem;
  scale: 0.35;
}
#find_email_phone,
#find_email_phone_api,
#find_email_phone_affliate {
  width: 80%;
  /* border: 3px solid #00b4cc; */
  padding: 0.5rem;
  height: 6vh;
  border-radius: 2rem 0 0 2rem;
  outline: none;
  border: solid gray 0.05rem;
  /* color: #9dbfaf; */
}
#find_email_phone_button,
#search_by_field_id_button,
#find_email_phone_button_api,
#find_email_phone_button_affliate {
  display: flex;
  width: 20%;
  align-items: center;
  padding: 0.5rem 1rem;
  height: 6vh;
  border: solid gray 0.05rem;
  border-radius: 0 2rem 2rem 0;
  color: #000;
  background-color: #ffffff;
}
.chatArea {
  border: 3px solid #00b4cc;
  padding: 5px;
  border-radius: 5px 5px;
  outline: none;
  color: #9dbfaf;
}

.searchTerm:focus {
  color: #00b4cc;
}

.searchButton {
  width: 40px;
  height: 40px;
  border: 1px solid #00b4cc;
  background: #00b4cc;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

.adminInputWidth {
  width: 25%;
}

#search_icon {
  width: 25px;
  height: 25px;
}

#point_delete_div {
  display: none;
  position: fixed;
  /*margin-top: -30px;*/
  width: 100%;
  /* left: 60%; */
  /* padding: 10px 1%; */
  padding: 3% 1%;
  justify-content: space-evenly;
  bottom: 5px;

  /* transform: translate(-50%, -50%); */
}

/*Resize the wrap to see the search bar change!*/
.wrap {
  width: 55%;
  position: absolute;
  /* top: 15%; */
  top: 13.5%;
  /*margin-top: 30px;
  
  margin-bottom: -100px;*/
  left: 65%;
  z-index: 100;
  transform: translate(-50%, -50%);
}

#help {
  /* width: 55%; */
  position: absolute;
  top: 22.5%;
  margin: 0.8rem;
  left: 100%;
  z-index: 100;
  transform: translate(100%, -100%);
  background: black;
  padding: 0.5rem;
  border-radius: 1rem;
}

.wrapShowDetails {
  width: 50%;
  right: 10%;
  bottom: 6rem;
  position: fixed;
  /*  position: absolute;
  top: 23%;
*/ /*margin-top: 30px;
  
  margin-bottom: -100px;*/
  /*left: 52%;
  z-index: 100;
  transform: translate(-50%, -50%);*/
}

#search_address_div {
  display: none;
}

.map_options_images {
  width: 40px;
  height: 40px;
  z-index: -1;
}

.map_options_buttons {
  background-color: blueviolet;
  padding: 5px;
  border-radius: 10px;
  opacity: 0.8;
  margin-top: 10px;
  right: 10px;
}

#map_options_div {
  top: 100px;
}

#download_kmz_file {
  cursor: pointer;
}

#delete_kmz_file {
  cursor: pointer;
}
/*map controls styles*/
/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}

#mapcontrolsdiv {
  /* width: 80%;*/
  display: none;
  /*left: 15.1%;
  right: 5%;*/
  width: 100%;
  /* background-color: teal; */
  /*bottom: 25px;
  position: absolute;
  background-color: brown;*/
  opacity: 1;
  padding: 1px;
  margin-top: 10px;
  transition: all 0.3s ease 0s;

  border-radius: 10px;
  border: 1px solid #203748;
}

#mapcontrolsimagetypediv {
  /* width: 15.9%;*/
  width: 98%;
}

#mapcontrolsindexrangediv {
  /* width: 30%;*/
  width: 98%;
}

#mapcontrolsgiftypediv {
  width: 98%;
}

#mapcontrolscompareresultssdiv {
  width: 98%;
}

#mapcontrolscolormapdiv {
  width: 98%;
}

#mapcontrolssarimagedatediv {
  width: 98%;
  font-size: 10px;
  overflow: auto;
  /* height: 200px; */
  height: auto;
}

#mapcontrolsimagedatediv {
  width: 98%;
  font-size: 10px;
  overflow: auto;
  height: 150px;
}
#mapcontrolsFarmerData1,
#mapcontrolsFarmerData2,
#mapcontrolsFarmersubscriptionData2 {
  width: 100%;
  /* font-size: 10px; */
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  justify-content: space-between;
  /* flex-wrap: wrap; */
}

#mapcontrolsFarmersubscriptionData2 .textinputcontainerfieldaddress2 {
  margin-left: 0px;
  margin-right: 5px;
}
.colorForInput {
  background-color: white;
  color: black;
}
.textinputgroupfieldaddress label {
  color: rgb(0, 0, 0);
  /* font-size: 0.8rem; */
}
.mapcontrolssubdiv {
  width: 100%;
  /* background-color: rgb(208 226 214); */
  padding: 10px;
  margin: 2px;
  /* border-radius: 10px; */
  border-bottom: 1px solid #203748;
}

.analysisscalediv,
.form-imagetype,
.insidetimelapse,
.compareindex_inside {
  background-color: #01606433;
  border-radius: 10px;
  padding: 10px;
  margin-top: 5px;
}

.analysisscalediv h5 {
  text-decoration: underline;
  font-weight: bold !important;
}

.mapcontrolssubdiv h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 10px;
  /* color: #000000; */
}

.mapcontrolssubdiv input[type="radio"] {
  margin: 0px;
}

#mapcontrolstransparencydiv {
  /*width: 12%;*/
  width: 98%;
}

#mapcontrolspolygonsdiv {
  /*width: 12%;*/
  width: 98%;
}

.slider {
  -webkit-appearance: none;
  width: 90%;
  height: 5px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4caf50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4caf50;
  cursor: pointer;
}

.colormap_image {
  height: 3.5rem;
  border-radius: 5%;
  cursor: pointer;
}

#index01 {
  padding: 3px 5px;
  background-color: #ab0535;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index02 {
  padding: 3px 5px;
  background-color: #ea4f3b;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index03 {
  padding: 3px 5px;
  background-color: #f7885a;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;

  transition: all 0.3s ease 0s;
}

#index04 {
  padding: 3px 5px;
  background-color: #fbc07e;
  border: none;
  border-radius: 5px;
  margin: 2px;
  color: black;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index05 {
  padding: 3px 5px;
  background-color: #fff0b5;
  border: none;
  border-radius: 5px;
  margin: 2px;
  color: black;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index06 {
  padding: 3px 5px;
  background-color: #e6f3a4;
  border: none;
  border-radius: 5px;
  margin: 2px;
  color: black;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index07 {
  padding: 3px 5px;
  background-color: #bae383;
  border: none;
  color: black;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index08 {
  padding: 3px 5px;
  background-color: #81bf6c;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index09 {
  padding: 3px 5px;
  background-color: #11a75f;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index10 {
  padding: 3px 5px;
  background-color: #06653d;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index01_poly {
  padding: 3px 5px;
  background-color: #ab0535;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index02_poly {
  padding: 3px 5px;
  background-color: #ea4f3b;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index03_poly {
  padding: 3px 5px;
  background-color: #f7885a;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;

  transition: all 0.3s ease 0s;
}

#index04_poly {
  padding: 3px 5px;
  background-color: #fbc07e;
  border: none;
  border-radius: 5px;
  margin: 2px;
  color: black;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index05_poly {
  padding: 3px 5px;
  background-color: #fff0b5;
  border: none;
  border-radius: 5px;
  margin: 2px;
  color: black;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index06_poly {
  padding: 3px 5px;
  background-color: #e6f3a4;
  border: none;
  border-radius: 5px;
  margin: 2px;
  color: black;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index07_poly {
  padding: 3px 5px;
  background-color: #bae383;
  border: none;
  color: black;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index08_poly {
  padding: 3px 5px;
  background-color: #81bf6c;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index09_poly {
  padding: 3px 5px;
  background-color: #11a75f;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#index10_poly {
  padding: 3px 5px;
  background-color: #06653d;
  border: none;
  border-radius: 5px;
  margin: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#bottomaddressesdiv {
  position: fixed;
  bottom: 2rem;
  left: 40%;
  /* right: 1rem;
  width: 84%; */
  /* width: 50%; */
  width: 35%;
  right: 10%;
  display: flex;
}

#find_field_name_input {
  width: 200px;
  height: 60px;
  border-radius: 10px;
  display: none;
}
#mapped_polygons_info_marquee {
  display: none;
}

#allfieldaddressesdiv {
  /* width: 47%; */
  height: 6vh;
  display: flex;
  overflow: auto;
}

#allfieldaddressesdiv::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(43, 43, 43, 0.3);
  background: none;
  border-radius: 10px;
  background-clip: content-box;
}

#allfieldaddressesdiv::-webkit-scrollbar {
  width: 10px;
  background-color: none;
  height: 10px;
}

#allfieldaddressesdiv::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, #11202b),
    color-stop(0.72, #234258),
    color-stop(0.86, #11202b)
  );
}

/*#allfieldaddressesdiv::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#allfieldaddressesdiv::-webkit-scrollbar
{
  width: 10px;
  background-color: black;
  height: 20%;
}

#allfieldaddressesdiv::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  background-image: -webkit-gradient(linear,left bottom,left top,
                     color-stop(0.44, rgb(122,153,217)),
                     color-stop(0.72, rgb(73,125,189)),
                     color-stop(0.86, rgb(28,58,148)));
}*/

/*#fieldaddressdiv0 {
 
 
}*/

.fieldaddressclass {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20%;
  background-color: #480048;
  opacity: 0.8;
  border-radius: 2rem;
  padding: 0.6rem;
  color: white;
  margin-right: 0.6rem;
  font-size: 0.7rem;
  cursor: pointer;
  border: white solid 0.1rem;
  /* color: rgb(254, 254, 254);
  mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/350% 100%;
  animation: shimmer 2.5s infinite; */
}
.fieldaddressclass:hover {
  background-color: tomato;
  transition: all 0.3s ease 0s;
}
.fieldaddressclass h4 {
  display: none;
}

#index_scale_div {
  position: absolute;
  left: 17%;
  bottom: 4rem;
  z-index: 100;
  display: block;
  border-radius: 1rem;
  cursor: all-scroll;
}
/* 
#index_scale_image {
  height: 80%;
  width: 20%;
  border-radius: 1rem;
  /* margin-left: -4rem; 
}*/

#fieldAreaIndex_div {
  position: fixed;
  bottom: 2rem;
  right: 5rem;
  width: 14%;
  background: transparent;
  opacity: 0.8;
  border-radius: 10px;
  cursor: all-scroll;
}

#fieldareaindex_image {
  height: 180px;
  width: 200px;
  border-radius: 10px;
}

#map_right_side_buttons {
  position: absolute;
  left: 16%;
  top: 25%;
  /* max-width: 200px; */
  width: 15%;
  /* top: 40%; */
  display: block;
  height: auto;
  float: right;
}

#back_to_my_fields_button {
  display: none;
  position: absolute;
  border-radius: 1rem;
  font-size: 1.5vh;
  padding: 0.5rem;
  width: 12%;
  background-color: white;
  color: #000000;
  border-color: white;
  border-style: solid;
  border-width: 0.1rem;
  left: 16%;
  top: 25%;
  z-index: 100;
}

#back_to_my_fields_super_admin_button {
  display: block;
  border-radius: 10px;
  font-size: 12px;
  padding: 5px;
  width: 150px;
  background-color: #007fff;
  border-color: white;
  border-style: solid;
  border-width: 2px;
  width: auto;
  height: 30px;
}

#renew_field_button {
  border-radius: 1.5rem;
  font-size: 1.5vh;
  padding: 0.5rem;
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-style: solid;
  border-width: 0.2rem;
  color: #000000;
}

#map_right_side_buttons button:hover {
  background-color: rgb(211, 211, 211);
  transition: all 0.3s ease 0s;
}

#upload_kmz_kml_button,
#remove_kml_layer {
  background-color: white;
  /* border-radius: 0px; */
  justify-content: center;
  align-items: center;
  width: 80%;
  padding: 0.5rem;
  border-radius: 1rem;
  color: black;
  font-size: 1.5vh;
}

#map_right_side_buttons label {
  color: white;
  font-size: 15px;
}

#switch_self_and_partner_fields {
  margin-bottom: 10px;
}
#remove_kml_layer {
  margin-top: 10px;
  display: none;
}
#loader_div {
  display: flex;
  align-items: center;
}

.loader {
  width: 20%;
  height: auto;
  left: 45%;
  top: 45%;
  position: fixed;
  /* transform: translateZ(0); */
  z-index: 10000;
  background-color: white;
  border-radius: 2rem;
}
/* .loader {
  
  left: 85%;
  top: 75%;
  font-size: 8px;
  position: fixed;
  text-indent: -9999em;
  border-top: 1.1em solid rgb(122, 153, 217);
  border-right: 1.1em solid #480048;
  border-bottom: 1.1em solid rgb(122, 153, 217);
  border-left: 1.1em solid #480048;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  z-index: 10000;
} */

/* @-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
} */

#poly_name_input {
  background-image: url("/Images/ic_action_search.png"); /* Add a search icon to input */
  background-size: 20px;
  background-position: 10px 10px; /* Position the search icon */
  background-repeat: no-repeat; /* Do not repeat the icon image */
  width: 100%; /* Full-width */
  font-size: 12px; /* Increase font-size */
  padding: 12px 20px 12px 30px; /* Add some padding */
  border: 1px solid #ddd; /* Add a grey border */
  margin-bottom: 12px; /* Add some space below the input */
}

#single_poly_name_input {
  width: 150px; /* Full-width */
  font-size: 16px; /* Increase font-size */
  padding: 2px; /* Add some padding */
  border: 1px solid #ddd; /* Add a grey border */
  cursor: text;
}

/* Popup box BEGIN */

.hover_poly_list_data h4 {
  font-size: 12px;
  color: white;
}
.hover_poly_list_data {
  position: absolute;
  text-align: center;
  top: 19%;
  bottom: 100px;
  left: 20%;
  width: 16%;
  max-height: 80%;

  opacity: 0.9;

  background-color: black;
  box-shadow: 10px 10px 60px #555;

  border-radius: 8px;
  padding: 5px;

  z-index: 800;
}

.hover_poly_list_data h4 {
  font-size: 12px;
}

#alladminsdiv {
  max-height: 400px;
  height: auto;
}

#alladminsdiv::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#alladminsdiv::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#alladminsdiv::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#poly_list_elements_div {
  overflow: auto;
  height: 70%;
  width: 100%;
}

#poly_list_elements_div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#poly_list_elements_div::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#poly_list_elements_div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

/* Popup box BEGIN */
.hover_poly_data {
  display: none;

  position: absolute;
  text-align: center;
  top: 15%;

  left: 20%;
  width: 75%;
  height: 75%;
  overflow: auto;

  background-color: black;
  box-shadow: 10px 10px 60px #555;

  border-radius: 8px;
  padding: 5px;

  z-index: 900;
}

.hover_poly_data_admin {
  display: none;

  position: absolute;
  text-align: center;
  top: 15%;
  left: 1%;
  width: 98%;
  overflow: auto;
  background-color: black;
  box-shadow: 10px 10px 60px #555;
  border-radius: 8px;
  padding: 5px;
  z-index: 900;
}

.hover_poly_data_admin p,
.hover_poly_data_admin label,
.hover_poly_data_admin h1,
.hover_poly_data_admin h2,
.hover_poly_data_admin h3,
.hover_poly_data_admin h4,
.hover_poly_data_admin h5,
.hover_poly_data_admin h6 {
  color: white;
}

.hover_poly_data::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

.hover_poly_data::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

.hover_poly_data::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

.hover_poly_data p {
  margin-top: 2px;
  margin-bottom: 2px;
}

#large_graph_div {
  /* display: block; */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  border: 0.5px solid #b1b1b1;
  margin-top: 10px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
}

/* Popup box BEGIN */
.hover_graph_data {
  display: none;

  position: absolute;
  text-align: center;
  /* top: 5%; */

  left: 5%;
  /* width: 93%; */
  width: 90%;
  height: 90%;

  /* background-color: black; */
  /* background-color: #F1F1F1; */
  background-color: #f2f6f6;
  box-shadow: 10px 10px 60px #555;

  border-radius: 8px;
  padding: 5px;
  padding-right: 30px;
  /* padding-left: 30px; */
  padding-bottom: 30px;
  z-index: 1000;
  border-radius: 30px;
  /* border: 1px solid rgba(0, 0, 0, 0.25); */
}

.hover_graph_data p {
  margin-top: 2px;
  margin-bottom: 2px;
}

#poly_data_div {
  display: flex;
}

#poly_data_buttons {
  width: 40%;
  min-width: 225px;
  display: flex;
  flex-direction: column;
  margin: 0 8px;
}

.poly_area_ranges_class {
  display: flex;
  margin: 5px;
  background-color: teal;
  border-radius: 5px;
}

.poly_area_ranges_class button {
  font-size: 12px;
}

.poly_area_ranges_class h4 {
  font-size: 14px;
  color: white;
}

#poly_ranges_div {
  margin: 0 8px;
  width: 60%;
  min-width: 240px;
}

.polygon_crop_class {
  display: flex;
  margin: 2px;
  width: fit-content;
  height: auto;
  background-color: #134e5e;
  padding: 5px;
  border-radius: 5px;
}

.polygon_crop_class h5 {
  font-size: 12px;
  margin-top: 2px;
}
.polygon_crop_class:hover {
  transition: all 0.3s ease 0s;
  background-color: #480048;
}

#delete_veg_polygon {
  width: 20px;
  height: 20px;
}

.single_crop_class {
  display: flex;
  margin: 2px;
  width: fit-content;
  height: auto;
  background-color: #134e5e;
  padding: 5px;
  border-radius: 5px;
}

.single_crop_class h5 {
  font-size: 12px;
  margin-top: 2px;
}
.single_crop_class:hover {
  transition: all 0.3s ease 0s;
  background-color: #480048;
}

.crop_icon {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  margin-right: 5px;
}
#poly_ranges_div h4 {
  font-size: 12px;
}

#polygon_crops_div {
  display: flex;
  color: white;
  height: 100px;
  font-size: 12px;
}

#current_polygon_crops {
  display: block;
  height: 100px;
  width: 45%;
  overflow: auto;
}

#current_polygon_crops::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#current_polygon_crops::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#current_polygon_crops::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#polygon_crops_list {
  display: block;
  width: 45%;
  height: 100px;
  overflow: auto;
  align-content: flex-end;
}

#polygon_crops_list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
  border-radius: 10px;
  background-clip: content-box;
}

#polygon_crops_list::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  height: 80%;
}

#polygon_crops_list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

#poly_map_div {
  width: 55%;
  height: auto;
  background-color: orange;
  padding: 4px;
  border-radius: 8px;
}

#poly_map {
  width: 100%;
  height: 100%;
  background-color: brown;
}

#polygon_index_graph_div {
  width: 97%;
  /* height: 50%; */
  height: 250px;
}

#polygonIndexGraphContainer {
  height: 100%;
  width: 100%;
  margin: 8px;
}

.hover_poly_data h4 {
  color: white;
}

/* Popup box BEGIN */
.hover_bkgr_fricc {
  /* background:rgba(0,0,0,.4); */
  /* cursor:pointer; */
  display: none;
  /* height:auto; */
  position: fixed;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* top: 40%;
  bottom: 40%;
  right: 40%;
  left: 40%; */
  min-width: 400px;
  /*width:auto;*/
  z-index: 1000;
}

.hover_bkgr_fricc p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.hover_bkgr_fricc > div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 551px;
  min-width: 250px;
  min-height: 100px;
  /* vertical-align: middle;*/
  /* width: 60%; */

  position: relative;
  border-radius: 8px;
  padding: 15px 5%;
}

.popupCloseButton {
  background-color: #fff;
  border: 3px solid #999;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-family: arial;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.popupCloseButton:hover {
  background-color: #ccc;
}

.container {
  padding: 2px 16px;
}

.trigger_popup_fricc {
  cursor: pointer;
  font-size: 20px;
  margin: 20px;
  display: inline-block;
  font-weight: bold;
}
/* Popup box BEGIN */

* {
  box-sizing: border-box;
}

/* basic stylings ------------------------------------------ */
.textinputcontainerlogin {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* form starting stylings ------------------------------- */
.textinputgrouplogin {
  position: relative;
  margin-bottom: 5px;
  width: 100%;
}

.textinputcontainerlogin input {
  /* font-size: 15px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 250px;
  /* border:none; */
  /* border-radius: 10px;
  border-bottom: 1px solid #757575; */
}
.textinputcontainerlogin input:focus {
  outline: none;
}

/* LABEL ======================================= */
label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  /* position: absolute; */
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

/* active state */
.textinputcontainer input:focus ~ label,
input:valid ~ label {
  top: -10px;
  font-size: 14px;
  /* color: #5264ae; */
}

/* basic stylings ------------------------------------------ */
/* .textinputcontainerlogin {
  width: 250px;
  height: 40px;
  margin: 5px;
  display: block;
  display: flex;
  align-items: center;
} */

.textinputcontainerlogin input {
  font-size: 15px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 250px;
  /* border:none; */
  border-radius: 2px;
  border-bottom: 1px solid #757575;
}

.textinputcontainerlogin input:focus {
  outline: none;
}

.textinputcontainerlogin i {
  width: 10%;
  height: 6.125vh;
  /* margin-top: 0.2rem; */
  padding: 2vh 0;
  border: 1px solid #ffffff;
  border-radius: 0 0.6vh 0.6vh 0;
  background-color: white;
}
.contactUsLoginDiv {
  width: 100%;
  display: flex;
  /* justify-content:center;
align-items: center; */
  /* color: gray; */
  color: #11202b;
  font-size: 1.5vh;
  position: fixed;
  bottom: 4vh;
  margin-left: 13%;
  align-items: center;
}

/* LABEL ======================================= */
/* label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
} */

/* active state */
.textinputcontainerlogin input:focus ~ label,
input:valid ~ label {
  top: -15px;
  font-size: 14px;
  /* color: #ffffff; */
}

/* basic stylings ------------------------------------------ */
.textinputcontainerfieldaddress {
  width: 100%;
  /* height: 22px; */
  /* margin-top: 15px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: block; */
  /* background:#FFF; */
}
.myProfileelementsWidthClass {
  width: 50%;
  /* display: flex; */
  justify-content: center;
  align-items: center;
}
/* form starting stylings ------------------------------- */
.textinputgroupfieldaddress {
  position: relative;
  margin-bottom: 5px;
}
.textinputcontainerfieldaddress input {
  font-size: 12px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  /* border:none; */
  border-radius: 10px;
  border-bottom: 1px solid #757575;
}

.crop_code_dis {
  font-size: 1.2rem;
  /* padding: 10px 10px 10px 5px; */
  padding: 5px;
  display: block;
  width: 95%;
  /* border:none; */
  border-radius: 10px;
  /* height: 50px; */
  /* border-bottom: 1px solid #757575; */
  margin-top: 5px;
  background-color: white;
  /* color: #C4C4C4 */
  background-color: #c4c4c4;
}
.textinputcontainerfieldaddress input:focus {
  outline: none;
}
.inputTextWidth input {
  font-size: 1.2rem;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 95%;
  /* border:none; */
  border-radius: 10px;
  border-bottom: 1px solid #757575;
  border: 0px;
}
.inputTextWidth input:focus {
  outline: none;
}

/* LABEL ======================================= */
/* label {
  color: #999;
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
} */

/* active state */
.textinputcontainerfieldaddress input:focus ~ label,
input:valid ~ label {
  top: -15px;
  font-size: 12px;
  color: #ffffff;
}

.inputTextWidth input:focus ~ label,
input:valid ~ label {
  top: -15px;
  font-size: 12px;
  /* color: #000000; */
}

.textinputgroupfieldaddress > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between elements */
}

/* .myProfileelementsWidthClass {
  flex: 0 0 calc(50% - 10px); 
} */

#mapcontrolsfieldaddressdiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 80vw;
  /* height: auto; */
  height: 100%;
  padding-bottom: 20px;
  /* overflow: auto; */
  font-family: "Times New Roman", Times, serif;
  /* background-color: rgb(208 226 214); */
  background-color: #eff2f2;
  border-bottom: 0px;
  padding: 30px;
  border-radius: 20px;
}

#mapcontrolslatlondiv {
  width: 100%;
  /* height: 110px; */
  padding: 10px;
}

.mapcontrolssubdiv button {
  background: #0e8388;
  margin: 0px;
  border-radius: 8px;
  border: none;
}

.mapcontrolssubdiv input {
  padding: 5px 4px 5px 4px;
  width: 95%;
  margin-top: 5px;
}

/* .mapcontrolssubdiv div{
  margin-bottom: 5px;
} */
.sliderdiv {
  background-color: #01606433;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 8px;
}

.mapcontrolssubdiv #transparency_slider {
  padding-right: 0px;
}

#mapcontrolsDownloaddiv,
#mapcontrolsCropCalendardiv {
  width: 98%;
}
#mapcontrolsCropCalendardiv {
  display: none;
}
#save_field_name_button {
  margin-top: 20px;
}

#highlight_lat_lon_button {
  margin-top: 10px;
  margin: 0px;
}

#advisory_state_list,
#advisory_dist_list {
  margin-bottom: 3px;
}

#display_field_polygons_button,
#download_polygons_as_kml_button,
#download_gavl_data_button {
  width: 100%;
}
/* BOTTOM BARS ================================= */
.bar {
  position: relative;
  display: block;
  width: 300px;
}
.bar:before,
.bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264ae;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.bar:before {
  left: 50%;
}
.bar:after {
  right: 50%;
}

/* active state */
.textinputcontainer input:focus ~ .bar:before,
.textinputcontainer input:focus ~ .bar:after {
  width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active state */
.textinputcontainer input:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
  from {
    background: #5264ae;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@-moz-keyframes inputHighlighter {
  from {
    background: #5264ae;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes inputHighlighter {
  from {
    background: #5264ae;
  }
  to {
    width: 0;
    background: transparent;
  }
}

.inputtype3 {
  border: none;
  border-bottom: 2px solid teal;
  width: 250px;
}

#timelapse_timeinterval {
  border: 0px;
}

#timeunit {
  color: #000000 !important;
  background-color: white;
  height: 15px;
  margin-top: 5px;
  font-size: 12px;
}

#no_sensed_days_message {
  font-size: 12px;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px;
  max-width: 400px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 10000; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 140px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: snackFadeIn 0.5s, snackFadeOut 0.5s 7.5s;
  animation: snackFadeIn 0.5s, snackFadeOut 0.5s 7.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes snackFadeIn {
  from {
    bottom: 70;
    opacity: 0;
  }
  to {
    bottom: 140px;
    opacity: 1;
  }
}

@keyframes snackFadeIn {
  from {
    bottom: 70;
    opacity: 0;
  }
  to {
    bottom: 140px;
    opacity: 1;
  }
}

@-webkit-keyframes snackFadeOut {
  from {
    bottom: 140px;
    opacity: 1;
  }
  to {
    bottom: 70;
    opacity: 0;
  }
}

@keyframes snackFadeOut {
  from {
    bottom: 140px;
    opacity: 1;
  }
  to {
    bottom: 70;
    opacity: 0;
  }
}

#myprofilesidebar {
  display: flex;
}

#approve_field_admin {
  width: 96%;
  height: auto;
  border-radius: 10px;
  display: flex;
  font-size: 18px;
  color: white;
  justify-content: center;
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  border-color: white;
  border-style: solid;
  border-width: 1px;
}

#apply_offer_button {
  width: 30%;
  font-size: 12px;
  height: auto;
  margin-left: 5px;
  background-color: #ff6500;
}

#offer_text_input {
  width: 65%;
  height: 50px;
  border-radius: 10px;
}

#offer_div {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
}

.tab,
.adminTab {
  overflow: hidden;
  /* border: 4px solid white; */
  background-color: #000;
  border-radius: 10px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: 2px solid white;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  padding: 6px 30px;
  transition: 0.3s;
  margin: 4px;
}

.adminButton {
  background-color: inherit;
  float: left;
  border: 2px solid white;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  padding: 4px 70px;
  transition: 0.3s;
  margin: 4px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: blue;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: darkblue;
}

/* Style the tab content */
.tabcontent {
  display: none;
}

#polygon_farm_input_data_upper_div {
  width: 100%;
  height: 25px;
  background-color: violet;
  display: flex;
}

#polygon_farm_input_data_lower_div {
  width: 100%;
  height: 100%;
  /* background-color: yellowgreen; */
}

/* crop estimation section style */
.crop_est_crop_div {
  width: 48%;
  min-width: 100px;
  margin: 4px;
  background-color: wheat;
  border-radius: 5px;
  padding: 8px 16px;
}

.crop_card_item {
  display: flex;
}

#crop_est_crop_add_div h5 {
  padding-top: 16px;
  text-align: start;
}

.no_data_div_class {
  width: 95%;
  min-height: 80px;
  border-radius: 10px;
  background-color: darkmagenta;
  padding: 16px;
  margin-top: 5px;
  margin-left: 5px;
}

.no_data_div_class h5 {
  font-size: 16px;
}

/* api credits page */
.api_credits_info_item {
  padding: 16px;
}

.api_credits_info_item .info_value {
  font-weight: bold;
}

#api_credits_page_div h5 {
  color: black;
}

.api_credits_pay_item {
  box-sizing: border-box;
  min-width: 30%;
  width: fit-content;
  height: auto;
  padding: 12px;
  margin: 4px 2px;
}

.api_nav {
  margin: 0 8px;
}

.api_nav a {
  margin: 0 8px;
}

.api_nav a:hover {
  color: #fcb900;
  text-decoration: none;
}

.api_card_parent,
#affliliate_main_div {
  display: flex;
  flex-direction: column;
  scroll-behavior: auto;
  /* width: 100%; */
  padding: 50px;
  /* flex: 1 1 auto; */
  align-items: center;
  overflow: auto;
  width: 50%;
  padding-top: 20px;
}

.api_div_card_title,
.affliliate_card_title {
  /* max-width: 900px; */
  width: 80%;
  display: flex;
  padding: 16px 0;
  align-items: center;
  justify-content: space-between;
}

.api_div_card,
.affliliate_card {
  /* max-width: 900px; */
  width: 100%;
  padding: 12px max(5%, 12px);
  padding-bottom: 24px;
}

#api_credits_main_div p {
  /* padding: 8px; */
  padding: 3px;
}

#buy_credits_div .api_div_card h5 {
  padding: 8px 0;
  margin-top: 8px;
}

.api_div_card:hover {
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.payment_div {
  background-color: white;
  border-color: black;
  border-radius: 4px;
  margin: 16px 0;
  padding: 12px 16px;
  width: 100%;
  max-width: 750px;
  height: 53px;
}

.payment_div:hover {
  background-color: whitesmoke;
}

.flash_animation {
  animation: flash_animation 4000ms ease-out 0s 1;
}

@keyframes flash_animation {
  0% {
    background-color: orange;
  }
  100% {
    background-color: transparent;
  }
}

.sat_info_item_div {
  padding: 8px;
}

.sat_info_item_div h4 {
  padding: 4px;
  font-weight: bold;
}

.sat_info_item_div h5 {
  color: rgb(180, 177, 177);
}

.sat_control_select {
  margin: 4px 0;
  padding: 4px 0;
  background-color: transparent;
  font-size: 1em;
  font-weight: bold;
  border: none;
  color: white;
  text-decoration: none;
  width: 100%;
  max-width: 150px;
}

.sat_control_select option {
  color: black;
}

.chart_row .header {
  flex: 0 1 auto;
}

.chart_row .chart_content {
  flex: 1 1 auto;
}

/* table style */

#soiltrpage-tableContainer {
  margin-top: 20px;
  overflow-x: auto; /* Allow horizontal scrolling */
  background-color: #f2f2f2; /* Set background color */
}

table {
  border-collapse: collapse;
  width: auto; /* Allow the table to expand horizontally */
  /* white-space: nowrap;  */
}

table,
th,
td {
  border: 1px solid #ddd;
  padding: 8px;
}

th {
  background-color: #f2f2f2;
}

.carousel-control-next {
  opacity: 0;
}
.carousel-control-prev {
  opacity: 0;
}
.carousel-control-next:hover {
  opacity: 0;
}
.carousel-control-prev:hover {
  opacity: 0;
}

#button12Month {
  width: 100%;
  height: auto;
  background-color: rgba(0, 136, 169, 1);
  border-radius: 10px;
  display: flex;
  font-size: 18px;
  color: white;
  justify-content: space-between;
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  border-color: white;
  border-style: solid;
  border-width: 1px;
}

#button1Month {
  width: 100%;
  height: auto;
  background-color: rgba(0, 136, 169, 1);
  border-radius: 10px;
  display: flex;
  font-size: 18px;
  color: white;
  justify-content: space-between;
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  border-color: white;
  border-style: solid;
  border-width: 1px;
}
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  display: flex;
  width: 100%;
}

#duration_buttons {
  width: 90%;
  margin: 10px;
  display: flex;
  justify-content: center;
}

.plan-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  /* margin-bottom: 1vw; */
  color: rgba(0, 0, 0, 0.5);
  font-size: 1vw;
  /* margin-bottom: 1vw;
  margin-top: 1.5vw; */
}

.monthly {
  color: #037f85;
}

.dragable-container {
  width: 100px;
  height: 40px;
  /* background-color: #e0e0e0; */
  background-color: #059096;
  border-radius: 20px;
  margin: 0 10px;
  position: relative;
  cursor: pointer;
  --bs-form-switch-bg: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="-4 -4 8 8"%3e%3ccircler="3"fill="rgba%280, 0, 0, 0.25%29"/%3e%3c/svg%3e
  );
  background-image: var(--bs-form-switch-bg);
}

.dragable-box {
  width: 50px;
  height: 34px;
  /* background-color: #ffffff; */
  /* background-color: rgba(0, 136, 169, 1); */
  /* background-color: #0d6efd; */
  background-color: white;
  border-radius: 17px;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.annual-badge {
  background-color: #4caf50;
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 0.8em;
  margin-left: 10px;
}

.payment_option_class {
  border: 1px solid #ccc;
  padding: 10px;
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  margin-bottom: 10px;
}

.plan-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  /* justify-content: space-between; */
  margin-top: 10px;
  font-size: 0.8em;
}

.plan-info div {
  margin-bottom: 5px;
}

.savings-badge {
  /* background-color: #4caf50;
  color: white; */
  /* color: #1CD1A1; */
  /* padding: 2px 5px; */
  border-radius: 3px;
  font-size: 0.8em;
  margin-left: 10px;
  /* border:1px solid #1CD1A1; */
}

.headingsub {
  width: 100%;
  height: auto;
  /* background-color: rgba(0, 136, 169, 1); */
  /* border-radius: 10px; */
  display: flex;
  /* font-size: 18px; */
  color: white;
  /* justify-content: space-between;
  text-align: center; */
  align-items: center;
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  /* border-color: white;
  border-style: solid;
  border-width: 1px;
  border: 1px solid #ccc; */
  /* margin-left: 8vw; */
  justify-content: center;
}

#subscriptionOptionDiv {
  /* height: 65%; */
  /* height: 100%; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 20px; */
  padding: 10px;
  margin-left: 10px;
  margin-right: 10px;
}


#submit_sub_div_button {
  width: 96%;
  /* margin-top: 20px; */
  border-radius: 10px;
  display: flex;
  font-size: 18px;
  color: white;
  justify-content: center;
  margin: 10px;
  padding: 0.5rem;
  cursor: pointer;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  /* margin-left: 10px; */
  display: block;
}

.slider-container label {
  color: #000;
  font-weight: bold;
  font-size: 0.8rem;
}

#plan-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.price-info {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

#back_to_my_fields_button_2,
#add_new_fields_page,
#reset_map2 {
  display: none;
  /* position: absolute; */
  position: fixed;
  border-radius: 0px !important;
  font-size: 1.2vw; /* Updated font size */
  padding: 0.2vw;
  width: 14%; /* Updated width */
  height: 7%; /* Updated height */
  color: white;
  border: 0px;
  left: 4%;
  /* top:7.5%; */
  top:4%;
  /* top: 1vw; */
  z-index: 100;
  background-color: #059096;
  justify-content: center;
  font-weight: bolder;
  align-items: center;

  /* Updated shadow properties */
  box-shadow: 4px 8px 15px rgba(0, 0, 0, 0.6);
}

#back_to_my_fields_button_2,
#add_new_fields_page {
  width: 20%;
}

#displayarea {
  display: flex;
  border-radius: 2rem;
  font-size: 1.5vh;
  padding: 0.5rem 1rem;
  background-color: #10202b;
  left: 50%;
  top: 20.5%;
  z-index: 100;
  flex-direction: center;
  color: white;
  align-items: center;
}

.social-icons {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.social-icons li {
  display: inline-block;
}

.dropdownmyprofile {
  position: relative;
  display: inline-block;
}

#myprofiledropdownLi {
  cursor: pointer;
  padding: 10px;
  background-color: #000000;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 160px;
  text-align: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  /* background-color: #f9f9f9; */
  background-color: #000000;
  color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  top: 100%;
  left: 0;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-content li {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

#profileDivButton,
#log_out_button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fa-solid {
  margin-right: 5px;
}

.rcb-modal-section.svelte-1bzqb13,
.rcb-ui-main.svelte-1qect5g {
  background-color: transparent;
}

span .subtitle.svelte-10pcqja,
span .title.svelte-10pcqja {
  width: 10px !important;
}

.textinputcontainerfieldaddress2 {
  margin: 5px 10px;
  padding: 10px;
  /* background-color: #333;  */
  border-radius: 8px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);  */
  width: 20%;
}

.textinputgroupfieldaddress2 {
  display: flex;
  flex-direction: column;
  color: #fff; /* Light text color for contrast on dark background */
}

.textinputgroupfieldaddress2 label {
  font-size: 1.2em;
  /* font-weight: bold; */
  margin-bottom: 5px;
  /* color: #00aaff;  */
  color: black;
}

.textinputgroupfieldaddress2 div {
  font-size: 1em;
  /* background-color: #444;  */
  background-color: whitesmoke;
  /* color: #fff; */
  color: #000;
  padding: 10px;
  border-radius: 10px;
  height: 44px;
  /* border: 1px solid #00aaff; */
}

.edit-icon,
.save-icon {
  margin-left: 10px;
  cursor: pointer;
  color: #00aaff;
}

#textinputcontainerfieldaddressFarmerName {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px; /* Adjust spacing between label and icon */
}

#edit_icon {
  display: inline-block;
  vertical-align: middle;
}

.save-icon {
  color: white;
}

.subtitle.svelte-10pcqja,
.title.svelte-10pcqja {
  width: 100%;
}

.shimmer {
  color: grey;
  mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/350% 100%;
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  100% {
    mask-position: left;
  }
}

#report-container {
  height: 90vh;
  width: 80%;
  padding-bottom: 0;
  z-index: 9999999999;
  position: relative;
}

#close_demo_report_div {
  position: fixed;
}

/* .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
} */
.card-header {
  background-color: transparent;
  border-bottom: none;
}
.card-body {
  padding: 1vw;
}
.btn-choose {
  width: 100%;
  border-radius: 20px;
}
.pro-card {
  background-color: #037f85;
  color: white;
}
.pro-card .btn-choose {
  background-color: #5c6bc0;
  border-color: #5c6bc0;
}
.form-check-input {
  background-color: #037f85;
  border-color: #037f85;
}
.save-badge {
  /* position: absolute; */
  top: 0.5vw;
  right: 0.8vw;
  background-color: white;
  color: #037f85;
  border: 0.1vw solid #037f85;
  font-weight: bold;
  padding: 0.3vw 0.3vw;
  border-radius: 1.2vw;
}

#payment_left_div li {
  color: black;
}

#payment_left_div h3 {
  color: black;
}

#payment_left_div h4 {
  color: black;
}

.row {
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

#payment_left_div {
  background-color: #f8f9fa;
  color: #000000;
  /* background-color: #f8f8ff; */
  background-color: #eff2f2;
  /* background-image: url('Images/download.svg'); */
  background-attachment: fixed;
  background-size: cover;
}

#compare_images_date1,
#compare_images_date2 {
  font-size: 10px;
}

/* css for report page */

#report_lang,
#pdf_report_lang_select {
  /* height: 40px; */
  height: 3vw;
  /* width: 150px; */
  width: 10vw;
  margin-right: 2vw;
  /* margin-left: 20px; */
  text-align: center;
  border-radius: 1vw;
  border: 1px solid #d9d9d9;
  background-color: #f1f1f1;
  font-size: 0.8vw;
}

#pdf_report_lang_select {
  margin-top: 0.5vw;
  /* width: auto; */
}

#pdf_report_download_btn,
#latest_reports_request,
#latest_reports_download_img {
  background: #037f85 !important;
  padding-right: 2vw;
  padding-left: 2vw;
  padding-top: 0.2vw;
  /* height: 40px; */
  height: 3vw;
  margin-top: 0.5vw;
  border-radius: 1vw;
  /* width: 200px; */
  width: 9vw;
  font-size: 0.8vw;
  border: 0px;
  /* margin-right: 20px; */
  color: white;
}

#latest_reports_info_h6 {
  padding-top: 1vw;
  padding-bottom: 1vw;
}

#latest_reports_download_img {
  justify-content: center;
  display: flex !important;
  align-items: center;
  padding-left: 0px;
  margin-right: 0.1vw;
}

#pdf_report_download_btn,
#latest_reports_download_img {
  /* width: 250px; */
  width: 12vw;
  font-size: 0.8vw;
  justify-content: center;
}

#latest_reports_info_h6 {
  margin-top: -1vw;
}

.styled_scrollbar_class iframe {
  background-color: #f1f1f1 !important;
}

/* reports */

#report_info {
  display: flex;
  flex-direction: row;
  height: 100%;
}

#pdf_report_single_div {
  padding: 1vw;
  /* width: 75%; */
  width: 80%;
  border: 0.1vw solid #e4e5e5;
  box-shadow: 0px 0px 0.4vw 0px #00000040;
  border-radius: 1vw;
}

#pdf_report_multiple_div {
  /* width: 25%; */
  width: 20%;
  padding: 1.5vw;
  padding-top: 0px;
}

#farmadvisoryreport {
  background: #eff2f2;
  box-shadow: 0px 0px 0.4vw 0px #00000040;
  border: 0.1vw solid #e4e5e5;
  padding: 1vw;
  text-align: center;
}

#multiplereports {
  display: flex;
  flex-direction: column;
  background: #eff2f2;
  box-shadow: 0px 0px 0.4vw 0px #00000040;
  border: 0.1vw solid #e4e5e5;
  padding: 1vw;
  margin-top: 4vw;
}

#proceedButton {
  width: 100%;
  justify-content: flex-end;
}

#show_jeevn_ai_image_button {
  border-radius: 1vw;
  margin: 0.2vw;
  border-width: 0.05vw;
}

/* index results */

#download_index_results_data_all_fields,
#download_index_results_data {
  background: #037f85 !important;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 2px;
  height: 40px;
  margin-top: 5px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px;
  margin-right: 20px;
  color: white;
}

.chartContainer {
  padding: 20px;
  width: 98% !important ;
  height: 90%;
}

#graph_div {
  height: 65%;
  /* padding-left: 30px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  width: 95%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin: 30px;
}

.first_graph_div {
  height: 65%;
  justify-content: space-between;
  padding: 30px;
}
#third_graph_div,
#second_graph_div {
  height: 65%;
  justify-content: space-between;
  padding: 30px;
}

#mainchartContainer {
  width: 50%;
  height: 100%;
}

#allmainchartContainer {
  width: 100%;
  height: 100%;
}

#allchartsContainer {
  width: 95% !important;
  height: 90%;
  position: relative;
}

#imagetype1,
#imagetype2 {
  padding: 10px;
  border: 1px solid #b1b1b1 !important;
  width: 150px;
  height: auto !important;
  margin-left: 10px;
  margin-right: 10px;
  color: #858585;
}

#compareanddisplaychart {
  background-color: #037f85;
  border: 0px;
  padding: 11px;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: -7px;
}

/* #chart1Container,#chart2Container{
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 10px;
} */

#ndvichartContainer,
#ndrechartContainer,
#ndwichartContainer,
#varichartContainer,
#evichartContainer {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

#close_large_graph_div {
  background-color: #9e9e9e;
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 25px;
  padding: 10px;
  font-weight: bolder;
}

/* weather info */

#fielddisc_weather {
  font-size: 2.5vh;
  font-weight: 800 !important;
}

#current_weather_div {
  background-color: #f7f7f8;
}

#current_weather_summary_satinfo,
#current_weather_summary_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

#present_weather {
  width: 30%;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  height: 93%;
  padding: 10px;
  margin-top: 10px;
}

#current_weather_summary_info {
  padding: 1.5vh;
  height: 60%;
  justify-content: center;
}

#present_weather_2 {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
}

#present_weather_2 > * {
  /* width: 44%; */
  width: 10vw;
  box-sizing: border-box;
}

#present_weather_pressure,
#present_weather_humidity,
#present_weather_wind,
#present_weather_clouds {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
}

.info_climate {
  display: flex;
  /* align-items: center; */
  align-items: flex-end;
  justify-content: flex-end;
  font-size: 2vh;
}

.info_climate h3 {
  color: #5c5c5c;
  font-weight: 800;
}

.info_climate h5 {
  color: #5c5c5c !important;
  margin-top: 5px;
}

.head_climate {
  color: #037f85;
  font-weight: 800;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 2.2vh;
}

#current_weather_summary_satinfo {
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
  align-items: center;
}

#download_current_weather_data {
  background-color: #037f85;
  padding: 0.5vh;
  font-size: 1.8vh;
  border: 0px;
  border-radius: 0.5vh;
}

#current_weather_station {
  color: #1c1b1f;
  font-weight: 700;
  padding-left: 10px;
  font-size: 2vh;
}

#h5WeatherStation {
  color: #858585;
  font-weight: 700;
  font-size: 2vh;
}

#current_weather_summary_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  padding-bottom: 0px;
}

#current_weather_summary_head h4 {
  color: #858585 !important;
  font-weight: 800;
  font-size: 2.2vh;
}

.temp_info {
  width: 30%;
  display: flex;
}

.other_info {
  width: 70%;
  display: flex;
  height: 70%;
}

.forecast_value {
  display: flex;
  padding-bottom: 10px;
}

.other_forecast {
  display: flex;
  flex-wrap: wrap;
  width: 85%;
  margin-left: 5px;
}

.other_forecast > * {
  width: 47%;
  box-sizing: border-box;
  margin-left: 4px;
}

.temp_forecast {
  display: flex;
  width: 20%;
  border-right: 3px solid #858585;
  align-items: center;
}

.other_forecast h5 {
  color: #5c5c5c;
  font-weight: 400;
  margin-left: 5px;
  font-size: 1.7vh;
}

#forecast_weather_div {
  /* height: 35%; */
  background-color: #f7f7f8 !important;
  border-radius: 10px;
  margin-top: 15px;
}

#current_weather_div {
  height: 40%;
  height: 39vh;
}

#longlat h5 {
  color: #858585;
  margin-top: 2px;
  font-size: 1.2vh;
}
#weather_graphs_div {
  border: 0.5px solid #d9d9d9;
  margin-top: 29px;
  padding: 15px;
  border-radius: 10px;
}

#weather_toggle {
  display: flex;
  justify-content: space-between;
}

#first_row_weather_graphs_div,
#second_row_weather_graphs_div {
  flex-direction: column;
  height: 43%;
  padding-bottom: 10px;
}

#all_weather_graphs {
  height: 90%;
  /* overflow-y: auto; */
}

#forecast_weather_date {
  color: #979797;
  font-weight: 400;
}

#img_box {
  z-index: 10000 !important;
}

#contantFarmonaut {
  color: #000000;
  border: solid gray 0.05rem;
  border-radius: 2rem;
  padding: 10px;
  font-size: 1.5vh;
  padding: 1rem 2rem;
  cursor: pointer;
}

.fa-envelope {
  color: black !important;
}

#homepagecontactus {
  color: black !important;
  /* padding: 10px; */
  margin-left: 10px;
  border: none;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
}

.imagetype-tooltip-container {
  position: relative;
  display: inline-block;
  margin-left: 2px;
  cursor: pointer;
}

.imagetype-info-button {
  background-color: #2d495f;
  color: #fff;
  border-radius: 50%;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  line-height: 1;
}

.imagetype-tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #2d495f;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1000;
  bottom: 125%; /* Position the tooltip above the button */
  margin-left: -150px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

.imagetype-tooltip-container:hover .imagetype-tooltip-text {
  visibility: visible;
  opacity: 1;
}

#api_management_button,
#affiliate_management_button {
  width: 100%;
  display: flex;
  justify-content: center;
  color: #000;
}

#api_management_button:hover,
#affiliate_management_button:hover {
  width: 100%;
  display: flex;
  justify-content: center;
  color: #000; /* Keeps the color unchanged on hover */
  background-color: white;
}

#affiliateDashboard,
#apiDashboard {
  cursor: pointer;
}


.farm-id-button {
  border: 0.5px solid grey !important;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}
