* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mainColor: #b63a98;
  --primaryBgColor: #e5e5e5;
  --secondaryBgColor: #cecece;
}

body {
  scroll-behavior: smooth;
}

.dropDownBtn {
  background-color: var(--primaryBgColor);
}

.form-select {
  width: 40%;
  color: var(--mainColor);
  background-color: var(--primaryBgColor);
  border: 2px solid var(--secondaryBgColor);
  font-size: 1.3rem;
  cursor: pointer;
  letter-spacing: 2px;
}

.form-select:focus {
  border: 2px solid var(--secondaryBgColor);
  outline: none;
}

.calculateBtn {
  width: 35%;
  background-color: var(--mainColor);
  color: #fff;
  letter-spacing: 1px;
  opacity: 0.9;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #3A65B8 0%, #3A65B8 0%, #fff 0%, #fff 100%); /* Track color #3A65B8 */
  outline: none;
  opacity: 1;
  transition: opacity 0.2s;
  border-radius: 5px;
  border: none; /* Remove border */
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px; /* Increased size */
  height: 32px; /* Increased size */
  background: #3A65B8 !important; /* Blue thumb */
	position:relative;
	top:-4px !important;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: none; /* Removed shadow */
  border: none; /* Remove border */
}


input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 5px;
  background: #3A65B ; /* Track color */
  border: none; /* Remove border */
}

input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 5px;
  background: #3A65B8; /* Track color */
  border: none; /* Remove border */
}

input[type="range"]::-moz-range-thumb {
  width: 28px; /* Increased size */
  height: 28px; /* Increased size */
  background: #007bff; /* Blue thumb */
  cursor: pointer;
  border-radius: 50%;
  box-shadow: none; /* Removed shadow */
  border: none; /* Remove border */
}

button,
input,
.form-select {
  box-shadow: none !important;
  outline: none;
}

.firstRangeInput label,
.secondRangeInput label,
.thirdRangeInput label,
.hinta {
  font-size: 1.2rem;
}

label.form-label {
  color: var(--mainColor);
}

output {
  opacity: 0.5;
}

#finalPrice {
  border: none;
  position: relative;
  max-width: 400px;
  height: auto;
  padding: 20px;
  background-color: var(--primaryBgColor);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--mainColor);
}

#finalPrice:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: 85%;
  left: 50%;
  margin-left: -25px;
  transform: rotate(40deg);
  margin-top: -8px;
  background-color: var(--primaryBgColor);
  pointer-events: none;
}

#finalPriceResult {
  display: none;
}

.form-floating input {
  background: var(--primaryBgColor);
  border: none;
}

.form-floating input:focus {
  border: 2px solid var(--secondaryBgColor);
}

.floatingBtn,
.scrollToForm {
  background-color: var(--mainColor);
  color: #fff;
  letter-spacing: 1px;
  opacity: 0.9;
}

.floatingBtn:hover, .floatingBtn:focus,
.scrollToForm:hover, .scrollToForm:focus,
.calculateBtn:hover, .calculateBtn:focus {
  color: var(--mainColor);
  opacity: 1;
}

ul {
  list-style: none;
  padding-left: 0 !important;
}

.services ul {
  margin: 5px 0px 15px 0px;
}

@media all and (min-width: 1200px) {
  .information1 {
    width: 100%;
    margin: auto;
  }
  information {
    width: 50;
    margin: auto;
  }
}

@media all and (max-width: 600px) {
  .form-select {
    font-size: 1rem;
    width: 100%;
  }
  .firstRangeInput label,
  .secondRangeInput label,
  .thirdRangeInput label,
  .hinta {
    font-size: 0.8rem;
  }
  h3 {
    font-size: 1rem;
  }
  output {
    font-size: 0.7rem;
  }
  .calculateBtn {
    width: 55%;
  }
  #finalPrice {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  #finalPriceResult ul li {
    font-size: 0.8rem;
  }
}

.firstcontainer {
  background-color: #F5F5F5;
  margin: auto;
  display: flex;
  border-radius: 57px;
  padding: 35px;
  padding-bottom: 64px;
}

.bills {
  display: flex !important;
  margin: auto;
  justify-content: center;
  align-content: center;
}

.box1 {
  border: 1px solid #A12783;
  border-radius: 9px;
  background-color: white;
  padding: 20px;
  margin: 20px;
  font-size: 15px;
  font-family: Helvetica;
  font-weight: 400;
  text-align: left;
  flex: 1;
}

.heading {
  font-size: 15px;
  font-family: Helvetica;
  font-weight: 700;
  color: black;
}

li {
  color: black;
}

.paragraph {
  font: oblique normal var(--unnamed-font-weight-normal) 14px/16px Helvetica;
  letter-spacing: var(--unnamed-character-spacing-0);
  text-align: left;
  font: oblique normal normal 14px/16px Helvetica;
  letter-spacing: 0px;
  color: #959595;
  opacity: 1;
}

.text-muted1 {
  position: relative;
  top: -65px;
  font-size: 14px;
  font-style: oblique;
}

.information1 {
  background-color: #e0f7fa; /* Light blue background color */
  padding: 20px;
  border-radius: 20px; /* Rounded corners */
}

.information1 h5,
.information1 p {
  text-align: center;
}

.form-floating {
  position: relative;
}

.form-control {
  border-radius: 30px; /* Rounded input fields */
  border: 1px solid #ccc; /* Border color */
  padding: 10px 20px;
}

.form-floating label {
  padding-left: 20px;
}

#quote-btn {
  background-color: #007bff; /* Button color */
  color: #fff;
  border: none;
}

#quote-btn:hover {
  background-color: #0056b3; /* Hover color */
}

.success_msg,
.error_msg {
  text-align: center;
  margin-top: 10px;
  color: #28a745; /* Success message color */
}

.error_msg {
  color: #dc3545; /* Error message color */
}

button#quote-btn {
  width: 30% !important;

	float:right !important;
  background: white;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 2px solid #A12783;
  border-radius: 30px;
  opacity: 1;
  color: #A12783;
  font-weight: 600;
}

button#quote-btn:hover {
  width: 30% !important;

	float:right !important;
  background: white;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 2px solid #A12783;
  border-radius: 30px;
  opacity: 1;
  color: #3A65B8;
  font-weight: 600;
}

input#name,
input#phoneNumber,
input#email {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 2px solid #A12783;
  border-radius: 30px;
  opacity: 1;
}

label.text-muted {
  padding: 11px !important;
}

.information1.pt-5 {
  background: white;
}

p.text-muted2 {
  color: black !important;
  font-size: 16px;
  font-family: Helvetica;
}

.information1.pt-5 {
  background: white;
  border: 2px solid #A12783;
  border-radius: 55px;
  padding-bottom: 94px;
}


@media only screen and (max-width: 600px) {
  h3.pb-4.fw-bolder.text-center {
    font-size: 15px;
    line-height: 21px;
}

select#sales {
    width: 80%;
}

h3.turn {
    color: black !important;}

.col-sm-12.col-lg-10.mx-auto {
     padding-left: 0px; 
    padding-right: 24px;
    /* margin-left: -50px !important; */
    margin-right: -29px !important;
}
	
	output#costInvoiceAmt {
    position: relative;
    left: -52px;
		top: 32px;
		        font-size: 25px;
	}
	output#salesInvoiceAmt {
		 position: relative;
    left: -52px;
		top: 32px;
		        font-size: 25px;
	}
	output#salaryInvoiceAmt {position: relative;
    left: -52px;
		top: 32px;
	        font-size: 25px;}

/* 	h3.turn::after{
		display:none !important;
	} */
	
	.py-3 {
    margin-top: -36px;
}
	label.form-label {
   
    font-size: 13px !important;
}
	
	
button#calculateBtn {
    width: 50%;
    font: normal normal bold 16px / 19px Helvetica;
    letter-spacing: 0px;
    color: #3A65B8 !important;
    opacity: 1;
}
	.col.text-center.pt-5 {
    margin-top: -15px;
    margin-bottom: 29px;
}
.col.text-center {
    margin-top: -26px;
}
	h3.pb-4.fw-bolder.text-center {
    margin-bottom: -7px;
    margin-top: -20px;
		font-size: 21px;
    line-height: 1.3em;
	}
	
	select#sales {
    text-align: center;
}
	
	p.text-muted1 {
    margin-top: 28px !important;
    font-size: 13px !important;
}
	.information1.pt-5 {
  
    border: 1px solid #A12783;
    border-radius: 9px;
}
	
input#name, input#phoneNumber, input#email { 
    border-radius: 30px;
    
}
	button#quote-btn {
    margin-left: 0px;
    width: 100% !important;
}
	.bills {
    flex-direction: column;
}

.box1{
 margin:0px;
 margin-top: 8px;

}


.firstcontainer {
    padding: 0px;
	background: white;
}



span.fw-bold.pb-3.text-muted.priceIncludeText {
    margin-top: 33px;
}
}

h3.turn::after {
    content: url(https://c-management.fi/wp-content/uploads/2024/06/xx.png);
    position: absolute;
    top: 208px;
    left: 56.2%;
		pointer-events: none;
}
@media only screen and (max-width: 1024px) {
	h3.turn::after {
		top: 210px;
    left: 58.2%;
	}
	select#sales {
    width: 30%;
 }
}
@media only screen and (max-width: 768px) {
	h3.turn::after {
		top: 238px;
    left: 60%;
	}
	select#sales {
    width: 50%;
 }
}
@media only screen and (max-width: 600px) {
	h3.turn::after {
		top: 170px;
    left: 71.2%;
	}
	select#sales {
    width: 80%;
}
}
@media only screen and (max-width: 425px) {
	h3.turn::after {
		top: 171px;
    left: 73.2%;
	}
	select#sales {
    width: 80%;
}
}