 
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #374151;
    background: #438081 !important;
    }
    
    .min-h-screen {
    min-height: 100vh;
    }
    
    .bg-gradient {
    background: linear-gradient(135deg, #f0fdfa 0%, #dbeafe 100%);
    padding: 1rem;
    }
    
    /* Hero Section */
    .hero-section {
    text-align: center;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    }
    
    .hero-container {
    max-width: 48rem;
    margin: 0 auto;
    }
    
    .hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    }
    
    .hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1rem;
    }
    
    .hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    }
    
    .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #14b8a6;
    font-weight: 500;
    }
    
    .feature-item i {
    width: 1.25rem;
    height: 1.25rem;
    }
    
    /* Progress Header */
    .progress-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #f1f1f1;
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    padding: 10px;
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
    /*border: 2px solid #14b8a6;*/
    }
    
    .progress-container {
    max-width: 28rem;
    margin: 0 auto;
    }
    
    .progress-title {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    }
    
    .progress-title h1 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    }
    
    .step-indicator {
    font-size: 0.875rem;
    color: #fff;
    } 
    
    .progress-bars {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .progress-step {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .progress-step small{
        color: #fff;
    }
    
    .step-circle {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        font-weight: 600;
        background: #fff;
        color: #000;
        transition: all 0.3s ease;
    }
    
    .step-circle.active {
        background: #de810a;
        color: white;
    }
    
    .step-circle.completed {
        background: #de810a;
        color: white;
    }
    
    .progress-line {
        height: 0.25rem;
        flex: 1;
        background: #e5e7eb;
        border-radius: 0.125rem;
        transition: all 0.3s ease;
    }
    
    .progress-line.completed {
    background: #14b8a6;
    }
    
    /* Form Container */
    .form-container {
    max-width: 28rem;
    margin: 0 auto 1rem auto;
    }
    
    .form-card {
    background: #457373;
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    /*box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);*/
    /*border: 2px solid #bbb9b7;*/
    }
    
    /* Step Content */
    .step-content {
    /*display: none;*/
    animation: fadeIn 0.3s ease-out;
    }
    
    .step-content.active {
    display: block;
    }
    
    @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
    
    .step-header { 
    margin-bottom: 1.5rem;
    }
    
    .step-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    }
    
    .step-header p {
    color: #fff;
    }
    
    /* Form Fields */
    .form-fields {
    display: flex;
    flex-direction: column; 
    }
    
    .field-group {
    display: flex;
    flex-direction: column;
    }
    
    .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    }
    
    label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
    }
    
    .input-wrapper {
    position: relative;
    }
    
    .input-wrapper svg {
    position: absolute;
    left: 10px;
    top: 15px;
    /* transform: translateY(-50%); */
    color: #9ca3af;
    width: 1.25rem;
    height: 1.25rem;
    }
    
    input,select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    }
    
    .input-wrapper input,.input-wrapper select {
    padding-left: 3rem;
    height: 3rem;
    }
    
    input:focus,select:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    }
    
    input::placeholder {
    color: #9ca3af;
    }
    
    input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }
    
    .error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
    }
    
    /* Loan Calculator */
    .loan-calculator {
    background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #99f6e4;
    }
    
    .loan-calculator h3 {
    color: #0f766e;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem; 
    }
    
    .calculator-fields {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 1.5rem;
    }
    
    .calc-field {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    display: flex;
    align-items: center;
    }
    
    .calc-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f766e;
    }
    
    .calc-field input[type="range"] {
    width: 70%;
    height: 3px;
    border-radius: 3px;
    background: #d1d5db;
    outline: none;
    -webkit-appearance: none;
    padding: 3px;
    }
    
    .calc-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #14b8a6;
    cursor: pointer;
    }
    
    .calc-field input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #14b8a6;
    cursor: pointer;
    border: none;
    }
    
    .calc-field span {
    font-weight: 600;
    color: #0f766e;
    text-align: center;  
    border-radius: 0.5rem; 
    }
    
    .calculator-result {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .calc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    }
    
    .calc-result-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #0f766e;
    }
    
    .calc-result-item span:first-child {
    color: #6b7280;
    font-size: 0.875rem;
    }
    
    .calc-result-item span:last-child {
    font-weight: 600;
    color: #1f2937;
    }
    
    /* Loan Summary Card */
    .loan-summary-card {
    background: linear-gradient(135deg, #245958 0%, #0f766e 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
    border: 2px solid #fff;
    }
    
    .loan-summary-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    }
    
    .loan-summary-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .loan-summary-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    }
    
    .loan-summary-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    }
    
    .loan-summary-info p {
    opacity: 0.9;
    font-size: 0.875rem;
    }
    
    .loan-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    }
    
    .loan-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .loan-detail-row:last-child {
    border-bottom: none;
    }
    
    .loan-detail-row span:first-child {
    opacity: 0.9;
    }
    
    .loan-detail-row span:last-child {
    font-weight: 600;
    }
    
    .highlight-rate {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    }
    
    /* Payment Section */
    .payment-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    }
    
    .payment-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    border-radius: 1rem;
    z-index: -1;
    animation: shimmer 2s ease-in-out infinite alternate;
    }
    
    @keyframes shimmer {
    0% {
        opacity: 0.5;
    }
    
    100% {
        opacity: 1;
    }
    }
    
    .payment-header h3 {
    color: #92400e;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    }
    
    .payment-header p {
    color: #a16207;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    }
    
    .payment-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    }
    
    .payment-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #92400e;
    }
    
    .payment-amount .amount {
    font-size: 3rem;
    font-weight: bold;
    color: #92400e;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .payment-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    }
    
    .payment-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a16207;
    font-size: 0.875rem;
    font-weight: 500;
    }
    
    .payment-feature i {
    width: 1rem;
    height: 1rem;
    color: #f59e0b;
    }
    
     .pay-button {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #fff;
  width:100%;
  border: none;
  padding: 0.65rem 2.2rem;
  border-radius: 999px; /* pill shape */
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.35);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pay-button i {
  width: 1.3rem;
  height: 1.3rem;
}

/* Shine effect */
.pay-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.pay-button:hover::before {
  left: 130%;
}

.pay-button:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.45);
}

.pay-button:active {
  transform: scale(0.97);
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.25);
}

.pay-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.4);
}

    
    /* Review Cards */
    .review-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    }
    
    .review-card {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid;
    }
    
    .review-card.teal {
    background: #fff;
    border-color: #c0c2c2;
    }
    
    .review-card.blue {
    background: #fff;
    border-color: #c0c2c2;
    }
    
    .review-card h3 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    }
    
    .review-card.teal h3 {
    color: #115e59;
    }
    
    .review-card.blue h3 {
    color: #1e40af;
    }
    
    .review-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    }
    
    .review-item:last-child {
    margin-bottom: 0;
    }
    
    .review-item span:first-child {
    color: #1a1c20;
    }
    
    .review-item span:last-child {
    font-weight: 500;
    }
    
    /* Navigation Buttons */
    .navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6; */
    }
    
    .spacer {
    flex: 1;
    }
    
    .btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    height: 3rem;
    width: 100%;
    justify-content: center;
    }
    
    .btn-back {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
    }
    
    .btn-back:hover {
    background: #f9fafb;
    }
    
    .btn-next {
    background: #14b8a6;
    color: white;
    }
    
    .btn-next:hover {
    background: #0f766e;
    }
    
    .btn-submit {
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    color: white;
    padding: 0.75rem 2rem;
    }
    
    .btn-submit:hover {
    background: linear-gradient(135deg, #0f766e 0%, #2563eb 100%);
    }
    
    .btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    }
    
    .btn i {
    width: 1rem;
    height: 1rem;
    }
    
    /* Loading Spinner */
    .spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
    }
    
    /* ... keep existing code (Info Section, Partners Section, FAQ Section, Footer) */
    
    /* Info Section */
    .info-section {
    background: white;
    padding: 1rem 1rem;
    margin: 1rem 0;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .info-container {
    max-width: 64rem;
    margin: 0 auto;
    }
    
    .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 1rem;
    }
    
    .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    }
    
    .info-card {
    text-align: center;
    padding: 2rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    transition: transform 0.2s ease;
    }
    
    .info-card:hover {
    transform: translateY(-5px);
    }
    
    .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #14b8a6, #3b82f6);
    border-radius: 50%;
    margin-bottom: 1rem;
    }
    
    .info-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
    }
    
    .info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    }
    
    .info-card p {
    color: #6b7280;
    line-height: 1.6;
    }
    
    /* Partners Section */
    .partners-section {
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    margin: 2rem 0;
    }
    
    .partners-container {
    max-width: 64rem;
    margin: 0 auto;
    }
    
    .partners-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    }
    
    .partners-slider::-webkit-scrollbar {
    height: 8px;
    }
    
    .partners-slider::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
    }
    
    .partners-slider::-webkit-scrollbar-thumb {
    background: #14b8a6;
    border-radius: 4px;
    }
    
    .partner-slide {
    flex: none;
    width: 200px;
    height: 100px;
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    }
    
    .partner-slide:hover {
    transform: scale(1.05);
    }
    
    .partner-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.25rem;
    }
    
    /* FAQ Section */
    .faq-section {
    background: white;
    padding: 4rem 1rem;
    margin: 2rem 0;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .faq-container {
    max-width: 48rem;
    margin: 0 auto;
    }
    
    .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    }
    
    .faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
    }
    
    .faq-item:hover {
    border-color: #14b8a6;
    }
    
    .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    background: #f8fafc;
    transition: background 0.2s ease;
    }
    
    .faq-question:hover {
    background: #f0fdfa;
    }
    
    .faq-question span {
    font-weight: 500;
    color: #1f2937;
    }
    
    .faq-question i {
    width: 1.25rem;
    height: 1.25rem;
    color: #14b8a6;
    transition: transform 0.2s ease;
    }
    
    .faq-item.active .faq-question i {
    transform: rotate(180deg);
    }
    
    .faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    }
    
    .faq-item.active .faq-answer {
    padding: 1.25rem;
    max-height: 200px;
    }
    
    .faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    }
    
    /* Footer */
    .footer {
    background: #1f2937;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 1rem 1rem 0 0;
    margin-top: 2rem;
    }
    
    .footer-container {
    max-width: 64rem;
    margin: 0 auto;
    }
    
    .footer a {
    color: #14b8a6;
    text-decoration: none;
    }
    
    .footer a:hover {
    text-decoration: underline;
    }
    
    /* Responsive Design */
    @media (max-width: 640px) {
    .bg-gradient {
        padding: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 10px;
    }
     
    
    .field-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .progress-title h1 {
        font-size: 1.125rem;
    }
    
    .step-header h2 {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .partners-slider {
        gap: 1rem;
    }
    
    .partner-slide {
        width: 150px;
        height: 75px;
    }
    
    .payment-features {
        gap: 1rem;
        font-size: 0.75rem;
    }
    
    .payment-amount .amount {
        font-size: 2.5rem;
    }
    
    .loan-calculator {
        padding: 1rem;
    }
    } 
    
    
    
    
    
    
    
    
    
    
    form .lbl {
    font-weight: bold;
    color: #333
}

.bg-profile-info .row {
    margin-bottom: 15px;
    border-bottom: 1px solid #dfdfdf;
}

.bg-profile-info .row .lbl {
    font-weight: bold;
    color: #000
}


.newBox {
    background: #084C3F;
    padding: 20px;
    color: #fff;
    border-radius: 15px;
}

.newBox h2 {
    color: #fff;
}

.newBox input.number {
    letter-spacing: 3px;
    font-size: 20px !important;
} 
.newBox input.form-control, .newBox select.form-control {
    color: #093c33 !important;
    background: #fff !important;
    font-size: 18px !important;
    text-transform: capitalize;
    box-shadow: none !important;
    outline: none !important;
}

.newBox input.form-control:focus, .newBox select.form-control:focus {
    color: #093c33 !important;
    background: #fff !important;
    font-size: 18px !important;
    box-shadow: none !important;
    outline: none !important;
    text-transform: capitalize;
}
.form-control:focus{
    box-shadow: none !important;
    outline: none !important; 
}
.newBox .range-slider__range{
    background:#d7dcdf !important;
}
.newBox select.form-control {
    color: #093c33 !important;
    background: #FFF !important;
}

.newBox input::placeholder {
    color: #ccc !important;
    letter-spacing: 0px;
}

.userDataTable {
    text-transform: capitalize;
}

.offerBox {
    border: 2px dashed #14b8a6;
    padding: 7px;
    border-radius: 20px;
    color: #000;
}

.newEmiBox{
   padding: 0;
   margin: 0;
   list-style: none;
}
.newEmiBox label {
    cursor: pointer;
    margin-bottom: 0;
}

.newEmiBox li {
    background: #f4f4f4;
    padding: 5px;
    margin-bottom: 3px;
    color: #000;
    border-radius: 30px;
    cursor: pointer;
    border: 1px solid #999;
}

.newEmiBox li:hover {
    background: #14b8a6;
    color: #fff;
}

.newEmiBox li:focus {
    background: #14b8a6;
}

.showUserData li {
    color: #000;
    text-transform: capitalize;
}





.range-slider {
    width: 100%;
}

.range-slider__range {
    -webkit-appearance: none;
    width: calc(100% - 113px);
    height: 10px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
}

.range-slider__range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2c3e50;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
}

.range-slider__range::-webkit-slider-thumb:hover {
    background: #1abc9c;
}

.range-slider__range:active::-webkit-slider-thumb {
    background: #1abc9c;
}

.range-slider__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: #2c3e50;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
}

.range-slider__range::-moz-range-thumb:hover {
    background: #1abc9c;
}

.range-slider__range:active::-moz-range-thumb {
    background: #1abc9c;
}

.range-slider__range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c;
}

.range-slider__value {
    display: inline-block;
    position: relative;
    width: 100px;
    color: #2c3e50;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #2c3e50;
    padding: 5px 10px;
    margin-left: 8px;
}

.arrowCustom {
    position: relative;
}

.arrowCustom:after {
    position: absolute;
    top: 3px;
    left: -109px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid #2c3e50;
    border-bottom: 10px solid transparent;
    content: "";
    z-index: 999;
}

::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}

.range-slider__range::-moz-focus-inner, .range-slider__range::-moz-focus-outer {
    border: 0;
}


.plans {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    max-width: 970px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    border-radius: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.plans .plan input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plans .plan {
    cursor: pointer;
    width: 48.5%;
    margin-bottom: 20px;
}

.plans .plan .plan-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #e1e2e7;
    border-radius: 10px;
    -webkit-transition: -webkit-box-shadow 0.4s;
    transition: -webkit-box-shadow 0.4s;
    -o-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
    transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
    position: relative;
}

.plans .plan .plan-content img {
    margin-right: 30px;
    height: 72px;
}

.plans .plan .plan-details span {
    margin-bottom: 10px;
    display: block;
    font-size: 20px;
    line-height: 24px;
    color: #252f42;
}

.plans .title {
    font-size: 20px;
    font-weight: 500;
    color: #252f42;
    margin-bottom: 20px;
}

.plans .plan .plan-details p {
    color: #646a79;
    font-size: 14px;
    line-height: 18px;
}

.plans .plan .plan-content:hover {
    -webkit-box-shadow: 0px 3px 5px 0px #e8e8e8;
    box-shadow: 0px 3px 5px 0px #e8e8e8;
}

.plans .plan input[type="radio"]:checked + .plan-content:after {
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    background: #216fe0;
    right: 20px;
    top: 20px;
    border-radius: 100%;
    border: 3px solid #fff;
    -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
    box-shadow: 0px 0px 0px 2px #0066ff;
}

.plans .plan input[type="radio"]:checked + .plan-content {
    border: 2px solid #216ee0;
    background: #eaf1fe;
    -webkit-transition: ease-in 0.3s;
    -o-transition: ease-in 0.3s;
    transition: ease-in 0.3s;
}

@media screen and (max-width: 991px) {
    .plans {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 10px;
    }

    .plans .plan {
        width: 50%;
    }

    .plan.complete-plan {
        margin-top: 20px;
    }

    .plans .plan .plan-content .plan-details {
        width: 70%;
        display: inline-block;
    }

    .plans .plan input[type="radio"]:checked + .plan-content:after {
        top: 45%;
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@media screen and (max-width: 767px) {
    .plans .plan .plan-content .plan-details {
        width: 60%;
        display: inline-block;
    }

    .breadcrumbstwo {
        height: 200px !important;
    }

    .breadcrumbstwo .img-area {
        width: 80%;
    }
}

@media screen and (max-width: 540px) {
    .plans .plan .plan-content img {
        margin-bottom: 20px;
        height: 56px;
        -webkit-transition: height 0.4s;
        -o-transition: height 0.4s;
        transition: height 0.4s;
    }

    .plans .plan input[type="radio"]:checked + .plan-content:after {
        top: 20px;
        right: 10px;
    }

    .plans .plan .plan-content .plan-details {
        width: 100%;
    }

    .plans .plan .plan-content
    .breadcrumbstwo {
        height: 200px !important;
    }

    .breadcrumbstwo .img-area {
        width: 80%;
    }
}


input[type=checkbox], input[type=radio] {
    position: relative;
    border: 1px solid #DFE0E4;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    line-height: 1; 
        width: 20px;
}