.switch-toggle {
	 --width: 20%;
	 --height: 2.5rem;
	 --offset: 2px;
	 --radius: 100px;
     --gray: #0B0A09;
     --white: #FFFFFF;
	 position: relative;
	 width: var(--width);
	 height: var(--height);
	 padding: var(--offset);
	 background: #E0E0E0;
	 border-radius: var(--radius);
	 font-size: 18px;
	 font-weight: 500;
	 line-height: 24px;
	 font-style: normal;
     align-self: end;
     min-width: 120px;
}
.switch-toggle input[type="checkbox"] {
	 cursor: pointer;
	 position: absolute;
	 inset: 0;
	 appearance: none;
	 z-index: 2;
}
 .switch-toggle input[type="checkbox"]:checked + label.switch-toggle-label:before {
	 translate: 128% 0;
}
 .switch-toggle input[type="checkbox"]:checked + label.switch-toggle-label span:nth-child(1) {
	 color: var(--gray);
}
 .switch-toggle input[type="checkbox"]:checked + label.switch-toggle-label span:nth-child(2) {
	 color: var(--white);
}
 .switch-toggle input[type="checkbox"] + label.switch-toggle-label {
	 position: absolute;
	 inset: var(--offset, 0);
	 /*padding: 10px 0;*/
	 display: block;
	 user-select: none;
	 
	 display: grid;
	 gap: 2px;
	 grid-auto-flow: column;
	 grid-auto-columns: 1fr;
	 place-items: center;
}
 .switch-toggle input[type="checkbox"] + label.switch-toggle-label:before {
	 content: "";
	 position: absolute;
	 width: 40%;
	 inset: 0;
	 background: #000;
	 border-radius: calc(var(--radius) - var(--offset));
	 box-shadow: 0px 10px 20px 0px rgba(16, 39, 68, 0.1);
	 translate: 0 0;
	 transition: translate 250ms cubic-bezier(0.93, 0.26, 0.07, 0.69);
     margin: 5px;
}
 .switch-toggle input[type="checkbox"] + label.switch-toggle-label span {
	 position: relative;
	 transition: 200ms linear;
}
 .switch-toggle input[type="checkbox"] + label.switch-toggle-label span:nth-child(1) {
	 color: var(--white);
}
 .switch-toggle input[type="checkbox"] + label.switch-toggle-label span:nth-child(2) {
	 color: var(--gray);
}

.switch-toggle input[type="checkbox"] {
    width: 100%;
    height: 100%;
}

.input-wrapper{
    display: flex;
    align-items: center;
    flex-direction: row !important;
    cursor: pointer;
    padding: 0px 5px;
}

.input-wrapper:hover {
  background: #F0F0F0;
} 

.input-wrapper span{
	width: 100%;
	display: flex;
	gap: 0.5rem;
    align-items: center;
    font-weight: 500;
    color: var(--gray);
}

.input-wrapper span input{
	width: 100%;
}

.calculators-all-container table{
	width: 100%;
}

.calculators-all-container input::placeholder {
    color: #B1B3B3;
}

.calculators-all-container input {
    border: 1px solid transparent; /* bordo nero spesso 2px */
    outline: none; /* rimuove il bordo blu predefinito dei browser */
}


.calculators-all-container input:focus {
    /* border: 1px solid #2D2926;  bordo nero spesso 2px */
    outline: none; /* rimuove il bordo blu predefinito dei browser */
}

.calculators-all-container table td{
	gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

.calculators-all-container span input{
    border-radius: 100px;
	border: 1px solid #E0E0E0;
	padding: 0.5rem 1rem;
}

.calculators-all-container .result-data-container{
	justify-content: space-between;
}

.calculators-all-container .result-data-container span{
	width: fit-content !important;
}

.calculators-all-container .result-data-container img{
	margin-left: 40px;
}

.calculators-all-container div{
	gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

.calculators-all-container > div{
	gap: 2rem;
}

.calculators-all-container .normal-text{
    gap: 1rem;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.calculators-all-container .normal-text span{
    width: fit-content;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.divider{
	background: #E0E0E0;
    height: 1px;
}

.input-wrapper .result-data-container span{
	width: fit-content !important;
}

@media(max-width: 768px){
    #calculators-wrapper #results-wrapper .input-wrapper span{
        width: fit-content !important;
    }

    #calculators-wrapper #results-wrapper .input-wrapper{
        justify-content: space-between;
    }
    
    #calculators-wrapper #results-wrapper .input-wrapper .result-data-container img{
        margin-left: 0px;
    }
    
}