.pricing-section {
	text-align: center;
	margin: auto;
	padding: 50px 0px 0px;
}

/* Slider */
.pricing-section .slider-container {
	position: relative;
	width: 100%;
	margin: 0px auto 0px;
}


.pricing-section .slider-tooltip {
	position: absolute;
	top: 9px;
	left: 0;
	transform: translateX(-50%);
	border:1px solid #8270DB;
	color: #8270DB;
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 100px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: left 0.2s linear, opacity 0.3s ease;
}

.pricing-section .slider-tooltip.active {
	opacity: 1;
}
.pricing-section .slider-tooltip:after, .pricing-section .slider-tooltip:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.pricing-section .slider-tooltip:after {
	border-color: rgba(136, 183, 213, 0);
	border-top-color: #ffffff;
	border-width: 6px;
	margin-left: -6px;
}
.pricing-section .slider-tooltip:before {
	border-color: rgba(194, 225, 245, 0);
	border-top-color: #8270DB;
	border-width: 8px;
	    margin-left: -8px;
}



/* Graduator */
.pricing-section .graduator {
	display: flex;
	justify-content: space-between;
	padding: 0;
	list-style: none;
	margin-top: 10px;
	font-size: 14px;
	color: #888;
	margin-bottom: 0px;
}

.pricing-section .credit-score{
	color:#000000;
	font-size: 20px;
	font-weight: 500;
	margin: 0;
	padding: 0px;
	text-align: left;
}
.pricing-section .credit-score span {
    color: #0055CC;
    font-weight: 700;
}
.pricing-section .credit-score a{
	color:#0055CC;
	font-weight: 700;
	display: inline-block;
}
.pricing-section .graduator li{
	color:#282E33;
	font-size:16px;
	font-weight: 500;
	cursor: pointer;
}
.pricing-section .graduator li.active {
	font-weight: bold;
}

/* Pricing Boxes */
.pricing-section .pricing-boxes {
	display: flex;
	justify-content: space-between;
	gap:3px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.pricing-section .pricing-card {
	background: #ffffff;
	padding:0px;
	border-radius: 12px;
	width: 24.5%;
	position: relative;
	transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
	border:1px solid #B3B9C4;
	overflow: hidden;
}
.pricing-section .pricing-card .top-view{
	padding: 19px;
	background:#F7F8F9 ;
	display: flex;
  flex-wrap: wrap;
  text-align: left;
  position: relative;
}

.pricing-section .pricing-card .top-view h2{
	width: 100%;
	color:#172B4D;
	font-size: 24px;
	font-weight: 700;
	margin: 0px;
}
.pricing-section .pricing-card .top-view .credits{
	width: 100%;
	margin: 0px;
	padding: 5px 0px 20px;
	color:#0055CC;
	font-size: 18px;
	font-weight: 700;
}
.pricing-section .pricing-card .top-view .credits i{
	font-style: normal;
}
.pricing-section .pricing-card .top-view .credits span{
	color:#44546F;
	font-size: 14px;
	font-weight: 500;
	padding-left:3px;
}
.pricing-section .pricing-card .top-view .btn-bor{
	background: #ffffff;
	width: 100%;
	height: 44px;
	margin-top: auto;
}
.pricing-section .pricing-card .top-view .pricing-view{
	display: flex;
	align-items: center;
	column-gap: 10px;
	padding: 0px 0px 24px;
}
.pricing-section .pricing-card .top-view .pricing-view h3{
		color:#172B4D;
		font-size: 24px;
		font-weight: 600;
		white-space: nowrap;
		margin: 0px;
	}
	.pricing-section .pricing-card .top-view .pricing-view h3 small {
	    font-size: 16px;
	}

/* NEW: Crossed-out price styles */
.pricing-section .pricing-card .top-view .pricing-view h3 .original-price {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
	letter-spacing: 0.0075em;
	color: rgb(107, 114, 128);
	font-size: 20px;
	font-weight: 400;
	text-decoration: line-through;
	text-decoration-thickness: 1px;
	position: relative;
	display: inline-block;
}

/* Ensure the small decimal part doesn't get its own line-through */
.pricing-section .pricing-card .top-view .pricing-view h3 .original-price small {
	text-decoration: none;
}

.pricing-section .pricing-card .top-view .pricing-view p{
	color:#44546F;
	font-size:12px;
	margin: 0px;
	font-weight: 500;
}	
.pricing-section .pricing-card .top-view .pricing-view p span{
	font-weight: 700;
}
.pricing-section .pricing-card .top-view .pricing-view p .billing-type{
	display: flex;
	font-weight: 500;
	color:#8b8b8b;
}
.pricing-section .discount {
	display: none;
	font-size: 12px;
	color: #5E4DB2;
	position: absolute;
	top:0px;
	right:0%;
	font-weight: 700;
	background: #ffffff;
	padding: 6px 12px;
	border-radius:0px 0px 0px 16px ;
}
.pricing-section .pricing-card.active {
/*	transform: scale(1.1);*/
/*	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);*/
border-color: #0C66E4;
	opacity: 1;
}
.pricing-section .pricing-card.active .top-view{
	background: #E9F2FF;
}
.pricing-section .pricing-card.active .top-view .discount{
	display: flex;
}

.pricing-section .pricing-card:last-child.active .top-view .discount{
	display: flex !important;
}
.pricing-section .pricing-card .top-view .view-details{
	padding: 20px 0px ;
	flex-wrap: wrap;
}
.pricing-section .pricing-card .top-view .view-details li{
	width: 100%;
	color:#0055CC;
	font-size:14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	column-gap:8px;
  padding: 8px 0px;
  border-bottom: 1px solid #DCDFE4;
}
.pricing-section .pricing-card .top-view .reveal-credit{
	background: #ffffff;
	padding:10px 12px;
	border-radius:12px;
	width: 100%;
}
.pricing-section .pricing-card .top-view .reveal-credit li{
	width: 100%;
	color:#1C2B41;
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	padding: 4px 0px;
	justify-content: space-between;
	line-height: normal;
}
.pricing-section .pricing-card .top-view .reveal-credit li span{
	color:#E56910;
	display: flex;
	align-items: center;
	column-gap: 6px;
	line-height: normal;
}


.pricing-section .pricing-card.active .top-view .btn-bor{
	background:#076DFD;
	border-color: #076DFD;
	color:#ffffff;
}

.pricing-section .pricing-card .bottom-sec{
	padding: 18px;
	text-align: left;
}
.pricing-section .pricing-card .bottom-sec .heading{
	color:#172B4D;
	font-size: 14px;
	font-weight: 700;
	padding: 0px 0px 8px;
}
.pricing-section .pricing-card .bottom-sec ul{
	display: flex;
	flex-wrap: wrap;
}
.pricing-section .pricing-card .bottom-sec ul li{
	color: #1C2B41;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  padding: 4px 0px;
  display: flex;
  column-gap: 8px;
}
.tooltip .tooltip-inner {
    text-align: left;
    font-size: 12px;
    line-height: normal;
}
.pricing-section .pricing-card .bottom-sec ul li span {
    display: flex;
    width: calc(100% - 20px);
}
.pricing-section .pricing-card .bottom-sec ul li i:nth-child(1){
	font-weight: 700;
}
.pricing-section .pricing-card .bottom-sec ul li i:nth-child(3){
	color:#B3B9C4;
}
.pricing-section .pricing-card .bottom-sec ul li i{width: 10px}
.pricing-section .active-discount {
	display: none;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background: #4CAF50;
	color: #fff;
	font-size: 13px;
	padding: 4px 10px;
	border-radius: 20px;
	white-space: nowrap;
	opacity: 0;
	transition: .3s;
}

.pricing-section .pricing-card .active-discount.show {
	display: block;
	opacity: 1;
}

.pricing-section .active-discount::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 6px;
	border-style: solid;
	border-color: #4CAF50 transparent transparent transparent;
}



.pricing-section .credits {
	font-size: 13px;
	color: #555;
	margin-top: 5px;
}

/* Pricing Toggle */
.pricing-section .toggle-buttons {
	width: auto;
	height: auto;
	border-radius: 100px;
	margin: 0 auto 0px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	border:1px solid #B3B9C4;
	height: 44px;
	column-gap: 10px;
	padding: 4px;
}


.pricing-section .toggle-bar {
	position: absolute;
	top: 5px;
	bottom: 5px;
	width: auto;
	background-color: #0a66c2;
	border-radius: 30px;
	transition: all 0.3s ease;
	z-index: 1;
	transform: translateX(120px); /* Default Yearly */
}

.pricing-section .toggle-labels {
	display: flex;
	position: relative;
	z-index: 2;
	height: 100%;
	column-gap: 12px;
}

.pricing-section .swith-button-sec { padding:0px }
.pricing-section button {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #44546F;
	transition: color 0.3s ease;
	font-size: 14px;
	font-weight: 500;
	background: transparent;
	border-radius: 100px;
	padding: 7px 10px;
	column-gap: 10px;
	transition: color 0.3s ease;
}
.pricing-section button small{
	border-radius: 12px;
	    padding: 4px 6px;
	    font-size: 11px;
	    font-weight: 600;
	    background: #5E4DB2;
	    color: #ffffff;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    line-height: normal;
	    transition: color 0.3s ease;
}

.pricing-section button.active {
	color: #fff;
	background:#0C66E4 ;
	
}
.pricing-section button.active small{
	    background:#ffffff ;
	    color:#5E4DB2;
}
.pricing-section .top-select-section{
	display: flex;
	align-items: center;
	justify-content: end;
	column-gap: 21px;
}

.slider-tooltip {
  transition: transform 0.2s, opacity 0.2s;
}

/* Base Slider */
#creditSlider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #007bff 0%, #ddd 0%);
  outline: none;
  transition: background 0.3s;
}

/* Chrome/Safari Thumb */
#creditSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
    height: 26px;
    background:url(../images/pricing/input-range-icon.svg);
    background-repeat: no-repeat;
    border:none;
/*    box-shadow: 0 2px 6px rgba(0,0,0,0.2);*/
    cursor: pointer;
    transition: transform 0.2s;
}
#creditSlider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Firefox Thumb */
#creditSlider::-moz-range-thumb {
  -webkit-appearance: none;
   appearance: none;
   width: 26px;
     height: 26px;
     background:url(../images/pricing/input-range-icon.svg);
     background-repeat: no-repeat;
     border:none;
 /*    box-shadow: 0 2px 6px rgba(0,0,0,0.2);*/
     cursor: pointer;
     transition: transform 0.2s;
}
#creditSlider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Firefox Track */
#creditSlider::-moz-range-track {
  background: transparent;
  height: 6px;
}



/* Toggle Buttons Smooth */
.toggle-buttons { display:inline-flex;}
.toggle-buttons button {transition:0.3s;border:none; }
.toggle-buttons button.active {transform: scale(1.05) !important; }
/* Toggle Buttons Smooth */
.toggle-buttons button {
position: relative;
transition: all 0.3s ease;
}
/* Smooth Currency Switch Labels */
.switch-label {
font-weight:bold;
font-size:0.95rem;
color:#555;
transition: color 0.3s ease;
cursor:pointer;
}
.switch-label.active {
color:#007bff;
}
/* Animate Currency Switch */
.switch .slider.round {
transition: background-color 0.3s;
background-color:#007bff;
}
.slider.round::before {
transition: transform 0.3s ease;
}
/* Currency Switch Smooth */

.currency-switch-toggle { display:flex; align-items:center; gap:12px; }
.switch-label { font-weight:400; font-size:14px; color:#2C3E5D; transition: color 0.3s ease; cursor:pointer; }
.switch-label.active {font-weight: 700; color:#2C3E5D; }
/* Animate Currency Switch */
.switch { position:relative; display:inline-block; width:50px; height:26px; }
.switch input { opacity:0; width:0; height:0; }
.slider.round { position:absolute; cursor:pointer; top:0; left:0; right:0; bottom:0;
background-color:#ccc; transition:.4s; border-radius:34px; }
.slider.round::before { position:absolute; content:""; height:18px; width:18px;
left:4px; bottom:4px; background-color:white; transition:0.3s ease; border-radius:50%; }
input:checked + .slider.round { background-color:#007bff; }
input:checked + .slider.round::before { transform:translateX(24px); }
/* Slider + Tooltip */

input[type=range] { width:100%; margin-top:60px; }

.slider-tooltip.show { opacity:1; }

/* Graduator */
.rs-slider-graduator { position:relative; width:100%; height:40px; margin-top:15px; }
.rs-slider-graduator ol { list-style:none; display:flex; justify-content:space-between; padding:0; margin:0; width:100%; }
.rs-slider-graduator li { text-align:center; color:#282E33;  font-size:16px; cursor:pointer;font-weight:500 }
.rs-slider-graduator li.active{font-weight:700  }
.rs-slider-mark { display:none; width:6px; height:6px; background:#ccc; border-radius:50%; margin-bottom:5px; transition:background 0.3s; }
.rs-slider-pass .rs-slider-mark { background:#007bff; }
/* Pricing Cards */

.pricing-section .compare-plans-section{
margin: 34px 0px 14px;
background: rgba(233, 242, 255, 0.4);
    border: 1px solid #F1F2F4;
    border-radius: 16px;
    padding: 20px;
}
.pricing-section .compare-plans-section .accordion-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}
.pricing-section .compare-plans-section .accordion-header button {
    outline: none;
    box-shadow: none;
    background: transparent;
    display: flex;
    justify-content: center;
    width: auto;
    color:#172B4D;
    font-size: 14px;
    font-weight: 700;
}
.pricing-section .compare-plans-section .accordion-header button:after{
	
	/*width: 16px;
	    height: 16px;*/
	    background-size: contain !important;
}

@media screen and (max-width:1600px) {
	.input-range-section{
		padding-right: 30px;
	}
}



@media (min-width:992px) and (max-width:1199px) {

}

@media (min-width:768px) and (max-width:991px) {
	.pricing-section .credit-score br{
		display: none;
	}
	.pricing-section .pricing-boxes{
		gap: 10px;
	}
	.pricing-section .pricing-card{
		width: 49%;
	}
	.input-range-section {
	    padding-right: 12px;
	}
}
@media screen and (max-width:767px) {
	.pricing-section .pricing-card .top-view{
		width: 100%;
		display: block;
	}
	.rs-slider-graduator li{
		font-size: 14px;
	}
	.input-range-section {
	    padding-right: 12px;
	}
	.pricing-section .credit-score a{
		display: flex;
		justify-content: center;
	}
	.pricing-section .credit-score{
		text-align: center;
	}
	.pricing-section .pricing-boxes{
		gap: 10px;
	}
	.pricing-section .pricing-card{
		width: 100%;
	}
	.pricing-section .top-select-section {
	 
	    flex-wrap: wrap;
	    justify-content: center;
	    gap: 17px;
	}
	.pricing-section .slider-tooltip{
		padding: 3px 5px;
		    font-size: 8px;
		    top: 19px;
	}
}