.calculator {
            background: white;
            padding: 0px;
            border-radius: 15px;
            width: 100%;
            max-width: 500px;
        }

        h4 {
            color: #ab0c2f;
            margin-bottom: 10px;
            text-align: left;
        }

        .input-group {
            margin-bottom: 10px;
        }

        label {
            display: block;
            margin-bottom: 5px;
            color: #161619;
            font-weight: bold;
        }

        input[type="range"] {
            width: 100%;
            height: 10px;
            background: #ecf0f1;
            border-radius: 5px;
            outline: none;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 50px;
            height: 50px;
            background: #ab0c2f;
            border-radius: 100%;
            cursor: pointer;
        }

        .value-display {
            font-size: 22px;
            color: #161619;
            font-weight: bold;
            margin-top: 10px;
        }

        .results {
            background: #ffbf8e;
            padding: 10px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 18px;
            color: #161613;
        }

        .result-item span:last-child {
            color: #ab0c2f;
            font-weight: bold;
        }

        .highlight {
            color: #ab0c2f;
            font-size: 12px;
            margin-top: 15px;
            text-align: center;
        }



#canadaMap {
 	width: 60vw;
 	margin: 0 auto;
 	display: block;
 	padding-top:10vh;
 }
svg {
	fill: lightgrey;
}

g:hover{ 
	fill:#d71440;
	cursor: pointer;
 }
.province_text{
	font-size:11px;
	fill:black;}
.st2{fill:none;}
.st3{font-family:'MyriadPro-Regular';}
.st5{fill:#FFFFFF;}
.st6{fill:black;}
.fa-check-square:before {
   color: #00CC70;
	font-size: 22px;
}
.fa-window-close:before {
	color: #F51414;
	font-size: 22px;
}