/*
Theme Name: Divi Child
Theme URI: https://diviextended.com/
Version: 1.0
Description: Child Theme of Divi
Author: Divi Extended
Template: Divi
*/
/*@import url("../Divi/style.css");*/
body{padding-top:50px;}
body.home{padding-top:0;}
/*SIP Calculator Common start*/
.calculator {
	/*background: #fff;
	padding: 25px 30px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);*/
	width: 100%;
	color: #333;
	display: flex;
}
.calculator:after{content:" "; clear: both;}
.calc-col{padding:0 20px;}
.calc-col1{width:60%; padding-left:0;}
.calc-col2{width:40%; padding-right:0;}
h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0d47a1;
}
.tabs {
  display: flex;
  margin-bottom: 20px;
  cursor: pointer;
}
.tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  color: #555;
}
.tab.active {
  border-bottom: 2px solid #0d47a1;
  color: #0d47a1;
}
.input-group {
  margin-bottom: 15px;
}
.input-group label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  color: #555;
}
.period-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
input[type="number"], input[type="range"], select {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}
input[type="range"] {
	width:100%;
	margin-top: 5px;
	appearance: auto !important;
	-webkit-appearance:auto !important;
}
select {
  width: auto;
  padding: 4px 6px;
  font-size: 13px;
}
.results {
  margin-top: 20px;
  background: #e3f2fd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  color: #0d47a1;
  font-size: 15px;
}
canvas {
  margin-top: 20px;
}

@media screen and (max-width:599px){
  .calculator{display: block;}
  .calc-col{padding:0;}
  .calc-col1{width:100%;}
  .calc-col2{width:100%;}
}
/*SIP Calculator Common end*/