.calculator-sector {
    margin:100px auto;
    padding:0 20px;
}
.calculator-inner {
    max-width:1366px;
    margin:0 auto;
}
.calculator-inner h2 {
    text-align:center;
    font-family: "GothamProMedium";
    font-size:25px;
    color:#333;
}
.calculator {
    max-width: 1024px;
    margin:40px auto;
    width: 100%;
    background: #d38c8c;
    border-radius: 20px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25), 0 8px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.2s ease;
}
.calc-inner {
    padding:50px 50px;
}
.test-selector {
    margin-bottom:25px;
}
.label-block {
    margin-bottom:20px;
    color: #fff;
}
.label-block span:first-child {
    font-size:20px;
    font-family: "GothamProMedium";
    font-weight:normal;
}
select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 1.8rem;
    border: 1px solid #f6f6f6;
    background: #fefefe;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%233a6ea5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.1rem;
}
select:focus {
    border-color: #333;
}

.patients-field {
margin-bottom: 1.8rem;
}

.counter-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.2rem;
}

.counter-header label {
    font-size:20px;
    font-family: "GothamProMedium";
    font-weight:normal;
    color:#fff;
}

.patients-value {
    font-size:45px;
    font-weight: 800;
    background: none;
    padding: 0.2rem 0.9rem;
    color: #fff;
}
.slider-container {
    width: 100%;
    margin:20px 0 50px 0;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}
input[type="range"]:focus {
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 50%;
    border:4px solid #d38c8c;
    cursor: pointer;
    margin-top: -15px;
    transition: 0.1s;
}

input[type="range"]::-webkit-slider-thumb:hover {
transform: scale(1.2);
background: #eaf6ff;
}

input[type="range"]::-webkit-slider-runnable-track {
height: 6px;
background: #333;
border-radius: 10px;
}

input[type="range"]::-moz-range-thumb {
width: 22px;
height: 22px;
background: white;
border: 2px solid #2a6f97;
border-radius: 50%;
cursor: pointer;
}

.profit-block {
    padding: 20px 0;
    margin: 20px 0;
}
.profit-header {
    display: flex;
    flex-direction:column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.profit-title {
    font-size:20px;
    font-family: "GothamProMedium";
    font-weight:normal;
    color:#fff;
}
.profit-note {
    font-size:14px;
    color: #fff;
    max-width: 468px;
    line-height: 1.35;
    padding:10px 0;
    border-radius: 30px;
}

.profit-sum {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    row-gap: 0.3rem;
    margin-top: -110px;
}

.profit-number {
    font-size:100px;
    font-family: "GothamProMedium";
    color: #fff;
    line-height: 1;
    word-break: break-word;
}

.profit-currency {
    color: #fff;
    font-size:30px;
    font-family: "GothamProMedium";
}
.footnote {
    color:#fff;
    font-size:14px;
}

.tooltip-info {
display: inline-flex;
align-items: center;
cursor: help;
border-bottom: 1px dotted #8d9bb0;
}

.small-note {
font-size: 0.7rem;
color: #2c6280;
}

hr {
margin: 0.5rem 0 1rem;
border: none;
border-top: 1px solid #e4ecf3;
}
@media (max-width: 968px) {
    .profit-sum {
        justify-content: flex-start;
        margin-top: 20px;
    }
}
@media (max-width: 540px) {
    .calc-inner {
        padding: 1.4rem;
    }
    .profit-number {
        font-size: 2.4rem;
    }
    .profit-currency {
        font-size: 1.4rem;
    }
    .profit-header {
        flex-direction: column;
    }
    .profit-note {
        max-width: 100%;
    }
}