
#irrigation_wizard {
  width: 100%;
  margin: 0 auto;
  
  
 
}
#irrigation_steps {

	display: none;

}


.irrigationsteps {
  display: none;
 
}

.irrigationsteps > h3 {
  
 counter-increment: list;
}

.irrigationsteps.active {
  display: block;
  
}


#result {
  width: 80%;
  margin: 20px auto;
 
}



.step-number {
  flex: 1;
  text-align: center;
  
  color: #fff;
  font-size: 14px;
  line-height: 5px;
  transition: background-color 0.3s ease;
  
}

.step-number.active {
  background-color: #17a2b8;
}


@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");

* {
	box-sizing: border-box;
}

body {
	--h: 212deg;
	--l: 43%;
	--brandColor: hsl(var(--h), 71%, var(--l));
	font-family: Montserrat, sans-serif;
	margin: 0;
	background-color: rgba(255, 255, 255, 0.8); /* Adjust the opacity as needed */;
}

p {
	margin: 0;
	line-height: 1.6;
}

ol {
	list-style: none;
	counter-reset: list;
	padding: 0 1rem;
}

#irrigation_wizard > li {
	--stop: calc(100% / var(--length) * var(--i));
	--l: 62%;
	--l2: 88%;
	--h: calc((var(--i) - 1) * (180 / var(--length)));
	--c1: hsl(var(--h), 71%, var(--l));
	--c2: hsl(var(--h), 71%, var(--l2));
position: relative;
	
	max-width: 45rem;
	margin: 2rem auto;
	padding: 2rem 1rem 1rem;
	box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.3);
	border-radius: 0.25rem;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.8); /* Adjust the opacity as needed */
  
}

#irrigation_wizard > li::before {
	content: '';
	display: block;
	width: 100%;
	height: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, var(--c1) var(--stop), var(--c2) var(--stop));
}

.irrigationsteps h3 {
	display: flex;
	align-items: baseline;
	margin: 0 0 1rem;
	color: rgb(70 70 70);
	
}

.irrigationsteps h3::before {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	margin-right: 1rem;
	width: 3rem;
	height: 3rem;
	content: counter(list);
	padding: 1rem;
	border-radius: 50%;
	background-color: var(--c1);
	color: white;
	margin-right: 1.5rem
}

@media (min-width: 40em) {
	.irrigationsteps li {
		margin: 3rem auto;
		padding: 3rem 2rem 2rem;
	}
	
	.irrigationsteps h3 {
		font-size: 2.25rem;
		margin: 0 0 2rem;
	}
	
	.irrigationsteps h3::before {
		margin-right: 1.5rem;
	}
}


.irrigationsteps:nth-child(1) > h3::before {
  counter-increment: list + 2;
}
.irrigationsteps:nth-child(2) > h3::before {
  counter-increment: list;
}
.irrigationsteps:nth-child(3) > h3::before {
  counter-increment: list +2;
}
.irrigationsteps:nth-child(4) > h3::before {
  counter-increment: list +3;
}
.irrigationsteps:nth-child(5) > h3::before {
  counter-increment: list +4;
}



button.modify,
button.prev,
button.next {
  border: none;
  color: #fff;
  padding: 7px 20px;
  text-decoration: none;
  transition: background .5s ease;
  -moz-transition: background .5s ease;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
  display: inline-block;
  cursor: pointer;
  font-weight: 400;
  outline: none;
  min-width: 110px;
  text-align: center;
  background: #409fff;
  position: relative;
  font-size: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  line-height: 1;
  padding: 10px 30px 10px 30px;
}

.modify:hover,
.next:hover {
  background: #51be11;
  color: #fff;
}


/* Style for the container */
#selected-options {
	padding: 10px;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8); /* Adjust the opacity as needed */;
    margin-bottom: 20px;
}

/* Style for the list */
#selected-options {
    list-style-type: none;
    padding: 10px;
	margin: 5px 0;
    font-size: 16px;
}

/* Style for each list item */
#selected-options li {
    margin-bottom: 5px;
    /* border-bottom: 1px solid #ccc; */
    padding-bottom: 5px;
}
#result h2 {
	font-size: 2rem;
	margin-top: 0.83em;
	margin-bottom: 0.83em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
	color: #ffffff;
}

/* Style for the key */
#selected-options li strong {
    font-weight: bold;
}

/* Style for the value */
#selected-options li span {
    font-style: italic;
   
}

#explanation  {
 
  background-color: rgba(255, 255, 255, 0.8); /* Adjust the opacity as needed */;
  
}

#explanation div {
    padding: 10px;
   border-bottom: 1px solid #ccc;
    border-radius: 5px;
  
    /* margin-bottom: 10px; */
}

/* HTML: <div class="loader"></div> */
.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    
    font-weight: bold;
    font-family: sans-serif;
    font-size: 30px;
    padding-bottom: 8px;
    background: linear-gradient(currentColor 0 0) 0 100%/0% 3px no-repeat;
    
}




.loader {
	width: fit-content;
	font-weight: bold;
	font-family: monospace;
	font-size: 30px;
	background:linear-gradient(90deg,#000 50%,#0000 0) right/200% 100%;
	animation: l21 2s infinite linear;
  }
  .loader::before {
	content :"Processing...";
	color: #0000;
	
	background: inherit;
	background-image: linear-gradient(90deg,#fff 50%,#000 0);
	-webkit-background-clip:text;
			background-clip:text;
  }
  
  @keyframes l21{
	100%{background-position: left}
  }




  /* welcome page  */


  /* styles.css */

/* Additional styles for the logo */
.welcome-page .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: auto;
    height: 50px; /* Adjust the height as needed */
}

/*
.welcome-page body {
    margin: 0;
    padding: 0;
    background-image: url("{% static 'images/sandy.png' %}"); /* Replace 'background_image.jpg' with your actual background image path */
   /* background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Arial, sans-serif;
}
*/
.welcome-page .welcome-message {
    background-color: rgba(255, 255, 255, 0.8); /* Adjust the opacity as needed */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.welcome-page .welcome-message h1 {
    font-size: 36px;
    margin-bottom: 20px;
}


.welcome-page .welcome-message p {
    font-size: 20px;
    margin-bottom: 30px;
}

.welcome-page .get-started-button {
    padding: 15px 30px;
    background-color: #007bff; /* Adjust the color as needed */
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.welcome-page .get-started-button:hover {
    background-color: #0056b3; /* Adjust the hover color as needed */
}

.welcome-page .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.welcome-page .footer-content {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

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

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

.language-bar {
  position: fixed;
  top: 20px;
  right: 20px;
}




/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-title {
  width: 100%;
  text-align: center;
}

.user-details-form {
  display: flex;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 45%;
  margin: 5px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.modal input {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 5px;
}

.modal button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.modal button:hover {
  opacity: 0.8;
}





