.investment-simulator {
    padding: 100px 0;
    background: #fff;
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    color: #222;
}

.investment-simulator .form-wrap {
    width: 100%;
    max-width: 950px;
    padding: 15px;
    margin: 0 auto;
    position: relative;
}

.investment-simulator .form-group {
    margin-bottom: 25px;
}

.investment-simulator .form-group > label {
    display: block;
    font-size: 14px;
    color: #000;
    margin-bottom: 0px;
}

.investment-simulator .custom-control-label {
    color: #000;
    font-size: 16px;
}

.investment-simulator .form-group {
    display: flex;
    align-items: center;
}

.investment-simulator .form-group label {
    margin-right: 10px;
}

.investment-simulator .info-icon {
    margin-left: 5px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}

.investment-simulator .info-icon .info-text {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    width: 200px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.investment-simulator .info-icon:hover .info-text {
    display: block;
}

.investment-simulator .form-group input[type="number"] {
    flex: 1 1 30%;
}

.investment-simulator .form-control {
    height: 50px;
    background: #ecf0f4;
    border-color: transparent;
    padding: 0 15px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.investment-simulator .form-control:focus {
    border-color: #00bcd9;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.investment-simulator textarea.form-control {
    height: 160px;
    padding-top: 15px;
    resize: none;
}

.investment-simulator .btn {
    padding: .657rem .75rem;
    font-size: 18px;
    letter-spacing: 0.050em;
    transition: all 0.3s ease-in-out;
}

.investment-simulator .btn-primary {
    color: #fff;
    background-color: #00bcd9;
    border-color: #00bcd9;
}

.investment-simulator .btn-primary:hover {
    color: #00bcd9;
    background-color: #ffffff;
    border-color: #00bcd9;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.investment-simulator .btn-primary:focus, .btn-primary.focus {
    color: #00bcd9;
    background-color: #ffffff;
    border-color: #00bcd9;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.investment-simulator .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.investment-simulator .show > .btn-primary.dropdown-toggle {
    color: #00bcd9;
    background-color: #ffffff;
    border-color: #00bcd9;
}

.investment-simulator .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.investment-simulator .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.investment-simulator .range-group {
    display: flex;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

.investment-simulator .range-group input[type="range"] {
    width: 100%;
    height: 5px;
    appearance: none;
    background: linear-gradient(to right, #4caf50 50%, #d3d3d3 50%);
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity .15s ease-in-out;
}

.investment-simulator .range-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e96f20;
    cursor: pointer;
    transition: background .15s ease-in-out;
}

.investment-simulator .range-group input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e96f20;
    cursor: pointer;
    transition: background .15s ease-in-out;
}

.investment-simulator .input-with-symbol,
.investment-simulator .input-with-symbol-percent, 
.investment-simulator .input-with-symbol-mois {
    display: flex;
    align-items: center;
    position: relative;
}

.investment-simulator .input-with-symbol::after {
    content: "€";
    position: absolute;
    right: 50px;
    pointer-events: none;
    color: #666;
}

.investment-simulator .input-with-symbol-percent::after {
    content: "%";
    position: absolute;
    right: 50px;
    pointer-events: none;
    color: #666;
}

.investment-simulator .input-with-symbol-mois::after {
    content: "ans";
    position: absolute;
    right: 50px;
    pointer-events: none;
    color: #666;
}

.investment-simulator .separator-line {
    border-top: 3px solid white;
}

.investment-simulator .center-icon {
    text-align: center;
}
.btn-center {
    display: flex;
    justify-content: center;
}