 .calc-wrapper {
     background-color: transparent;
     color: #ffffff;
     
     border-radius: 12px;
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
     max-width: 100%;
     margin: 0 auto;
 }

 .calc-header {
     font-size: 24px;
     font-weight: 600;
 }

 .input-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 20px;
     gap: 20px;
	 flex-direction:row;
 }



 .input-label {
     font-size: 16px;
     color: #a1a3b5;
     flex-shrink: 0;
 }

 .revenue-field-group {
     display: flex;
     align-items: center;
     gap: 15px;
     flex-grow: 1;
     justify-content: flex-end;
 }

 .revenue-input-container {
     border: 2.67px solid #9197AE;
     border-radius: 30px;
     padding: 13px 32px;
     background: rgba(255, 255, 255, 0.03);
     display: flex;
     align-items: center;
/*      min-width: 320px; */
     /* Szerszy input */
 }

 .revenue-input-container input {
     background: transparent;
     border: none;
     color: white;
     text-align: right;
     font-size: 20px;
     width: 100%;
     outline: none;
     font-weight: 500;
 }

 /* Ukrycie strzałek (spinnerów) we wszystkich przeglądarkach */
 input::-webkit-outer-spin-button,
 input::-webkit-inner-spin-button {
     -webkit-appearance: none;
     margin: 0;
 }

 input[type=number] {
     -moz-appearance: textfield;
	 border:none;
 }

#rev_input{
	border: none!important;
	padding: 0px;
	max-width: 120px;
}
 .currency-label {
     color: #fff;
     font-weight: 600;
     font-size: 16px;
     white-space: nowrap;
 }

 /* --- Suwak --- */
 .range-container {
     position: relative;
/*      padding-top: 50px; */
     margin: 10px 10px;
 }

 .range-tooltip {
     position: absolute;
     top: 0;
     transform: translateX(-50%);
     background: #8e94aa;
     color: white;
     padding: 8px 15px;
     border-radius: 12px;
     display: none !important;
	 white-space: nowrap;
     font-weight: bold;
     pointer-events: none;
     transition: left 50ms ease-out;
	 
	 font-size: clamp(16px, calc(0.625vw + 1rem), 20px);
  font-weight: 700;/*var( --e-global-typography-fc02340-font-weight );*/
  text-transform: var( --e-global-typography-fc02340-text-transform );
  line-height: var( --e-global-typography-fc02340-line-height );
  letter-spacing: var( --e-global-typography-fc02340-letter-spacing );
 }

.range-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: var(--arrow-left, 50%);
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #8e94aa;
}

 #rev_range {
     width: 100%;
     -webkit-appearance: none;
	 appearance: none;
/* 	 background: linear-gradient(90deg, #34C759 0%, #C5EB2D 100%); */
	background:rgba(64, 194, 128, 0.38);

     height: 10px;
     border-radius: 10px;
     outline: none;
 }
/* Chrome, Edge, Safari */
#rev_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: rgba(64, 194, 128, 1);
    border-radius: 50%;
    cursor: pointer;
	border-color:rgba(64, 194, 128, 1);
}

/* Firefox */
#rev_range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: rgba(64, 194, 128, 1);
    border-radius: 50%;
    cursor: pointer;
	border-color:rgba(64, 194, 128, 1);
}
 

 .range-limits {
     display: flex;
     justify-content: space-between;
     margin-top: 15px;
     font-size: 14px;
     color: #8e94aa;
 }



 .package-price-wrapper {
     display: flex;
     flex-direction: row;
     gap: 5px;
 }

 .package {
     font-family: var(--e-global-typography-primary-font-family), Sans-serif;
     font-size: var(--e-global-typography-primary-font-size);
     font-weight: var(--e-global-typography-primary-font-weight);
     line-height: var(--e-global-typography-primary-line-height);
     letter-spacing: var(--e-global-typography-primary-letter-spacing);
 }



 .calc-wrapper .calc-header {
     font-family: var(--e-global-typography-c0c59a4-font-family), Sans-serif;
     font-size: var(--e-global-typography-c0c59a4-font-size);
     font-weight: var(--e-global-typography-c0c59a4-font-weight);
     line-height: var(--e-global-typography-c0c59a4-line-height);
     color: var(--e-global-color-c945545);
 }

 .calc-wrapper .input-label,
 .calc-wrapper .currency-label {
     font-family: var(--e-global-typography-text-font-family), Sans-serif;
     font-size: var(--e-global-typography-text-font-size);
     font-weight: var(--e-global-typography-text-font-weight);
     line-height: var(--e-global-typography-text-line-height);
     color: var(--e-global-color-c945545);
 }



.pricing-card {
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease;
}

.pricing-card.is-active {
  background-color: var(--e-global-color-accent)!important;
  transform: translateY(-20px);
	box-shadow:
    0px 7px 15px rgba(82, 255, 189, 0.15),
    0px 27px 27px rgba(82, 255, 189, 0.13),
    0px 61px 37px rgba(82, 255, 189, 0.08),
    0px 109px 44px rgba(82, 255, 189, 0.02),
    0px 171px 48px rgba(82, 255, 189, 0.00);
}
.pricing-card:not(.is-active):hover {
  transform: scale(1.05);
}


@media screen and (max-width: 768px) {
	.input-row{
		flex-direction: column;
	}
	.revenue-input-container{
		min-width: 100px;
	}
	.revenue-input-container{
		padding: 6px 16px;	
	}
}