body {
    width: 100%;
    overflow-x: hidden;
}

.chart-section {
    padding-top: 100px !important;
}

.chart-container {
    width: 900px;
    height: 516px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chart-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
}

.chart__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.chart__label--red {
    color: #e53232;
}

.chart__label--blue {
    color: #2443ac;
}

.gridline{
    stroke: black;
    shape-rendering: crispEdges;
    stroke-opacity: .2;
}

.gridline-y {
    stroke: #e53232;
    shape-rendering: crispEdges;
    stroke-opacity: .2;
}

.gridline-x {
    stroke: #2443ac;
    shape-rendering: crispEdges;
    stroke-opacity: .2;
}

.drag-point-data {
    width: 200px;
    padding: 8px;
    border: 1px solid rgb(218, 218, 218);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 8px;
}

.drag-point-data__item {
    display: flex;
    gap: 16px;
}

.drag-point-data__item:not(:last-child) {
    margin-bottom: 8px;
}

.form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: black;
    background-color: white;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    appearance: none;
}

.form-select:focus {
    border-color: #2f55d4;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

.dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.calculator-faq {
    margin-top: 100px !important;
}