input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#chart_div {
    height: 300px;
}
@media only screen and (min-width : 768px) {
    #chart_div {
        height: 350px;
    }

}

#wuymStory .btn {
    margin-top: 40px;
}

#wuymDashboard .btn {
    margin-top: 12px;
}

#wrapper .btn-outline {
    color: #870930;
}

.storyLine span {
    font-size: 1.8rem;
    line-height: 4.2rem;
    display: inline-block;
}

.storyLine input,
.storyLine select {
    width: 100px;
    border-width: 0;
    border-bottom: 2px solid #addfe4;
    line-height: 1.8rem;
    background-color: #fff;
}

.storyLine input.percentage {
    width: 40px;
}

button.tooltipBtn.inline {
    margin-left: 0;
}

.inputWrapper {
    display: inline-block;
}

.altColor {
    color: #870930;
}

#wrapper #wuymDashboard .card {
    margin-top: 20px;
}

#wrapper #wuymDashboard p {
    font-size: 1.4rem;
}

#wrapper #wuymDashboard .row {
    padding-top: 0;
}

#wrapper #wuymDashboard label {
    display: flex;
    height: 35px;
    align-items: flex-end;
}

#wrapper #wuymDashboard .form-control {
    padding-right: 25px;
}


.investType {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

#wrapper div.investTypeCopy {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.investTypeCopy svg,
label svg {
    margin-left: 5px;
}

.units {
    position: absolute;
    right: 25px;
    top: 45px;
}

.tooltipBtn {
    border: 0;
    background-color: transparent;
    padding: 0;
    display: inline-block;
    margin-left: 10px;
    color: #ff6600;
    font-size: 1.8rem;
    line-height: 2rem;
}

.toggleInflation {
    display: flex;
    justify-content: center;
    margin-left: 50px;  
}

.toggleInflation span {
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 2.4rem;
}

#wrapper #wuymDashboard label.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    margin: 0 5px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #addfe4;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .2s;
}

input:checked + .slider {
    background-color: #addfe4;
}

input:focus + .slider {
    box-shadow: 0 0 1px #addfe4;
}

input:checked + .slider:before {
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

