  /* Cost Calculator Styles - Uncompiled for Readability */

/* Main Calculator Container */
#cost-calculator {
    margin: 0 0 40px;
    background: #592c88;
    font-family: "Manrope", sans-serif;
    color: #fff;
    border-radius: 3px;
    max-width: 100%!important;
}

/* Section Layout */
.section-one {
    padding: 10px 0;
    float: none;
}

.title-container {
    padding: 10px 40px 0;
}

.input-container {
    padding: 10px 40px;
    float: none;
    width: auto;
    position: static;
}

.secondary-container {
    background: #582277;
}

/* Typography */
#cost-calculator h2 {
    margin: 0 0 10px;
    font-weight: 600;
    font-size: 30px;
    padding-top: 10px;
    color: #fff;
    font-family: "p22-mackinac-pro", serif;
}

#cost-calculator hr {
    border: none;
    border-top: 1px solid #aa76e0;
    margin: 0;
}

#cost-calculator h3 {
    margin: 0;
    font-weight: 600;
    font-family: "p22-mackinac-pro", serif;
    color: #fff;
    font-size: 1.17em;
    float: none;
    line-height: normal;
}

/* Input Groups */
#cost-calculator .input-group,
#cost-calculator .input-group-hours {
    display: inline-block;
    margin: 3px 14px 3px 0;
    float: none;
    width: auto;
}

#cost-calculator .input-container .input-group:last-child {
    margin-right: 0;
}

/* Radio Button Styling */
#cost-calculator [type=radio]:checked,
#cost-calculator [type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
}

#cost-calculator [type=radio]:checked + label,
#cost-calculator [type=radio]:not(:checked) + label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    line-height: 18px;
    display: inline-block;
    font-weight: 500;
    font-size: 100%;
    color: #fff;
}

#cost-calculator [type=radio]:focus + label {
    outline: 1px dotted #212121;
    outline: 5px auto -webkit-focus-ring-color;
}

/* Radio Button Visual Elements */
#cost-calculator [type=radio]:checked + label:before,
#cost-calculator [type=radio]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    border-radius: 100%;
    background: #fff;
}

#cost-calculator [type=radio]:checked + label:after,
#cost-calculator [type=radio]:not(:checked) + label:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #592c88;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

#cost-calculator [type=radio]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

#cost-calculator [type=radio]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Total Container */
.total-container {
    background: #c1a875;
    padding: 15px 40px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

#cost-calculator .total-container h3 {
    color: #343434;
}

#cost-calculator .total-container .total-cost {
    font-size: 34px;
    color: #343434;
    margin: 0;
    font-family: "p22-mackinac-pro", serif;
    font-weight: 600;
    line-height: 45px;
}

/* Font Styles */
#cost-calculator .number-font,
#cost-calculator p.full-time-twelve {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

#cost-calculator .total-cost .total-font {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-left: 2px;
}

/* Disclaimer Text */
#cost-calculator .disclaimer {
    color: #343434;
    margin: 5px 0 0;
    font-size: 10px;
    line-height: normal;
    font-weight: 500;
    text-transform: uppercase;
}

#cost-calculator .input-container .disclaimer {
    color: #fff;
    margin: 0;
}

/* Utility Classes */
.no-float {
    float: none;
    box-sizing: content-box;
}

/* Mobile Responsive */
@media (max-width: 370px) {
    .title-container {
        padding: 10px 20px 0;
    }
    
    #cost-calculator .input-group {
        width: 100%;
    }
    
    .input-container {
        padding: 10px 20px;
    }
    
    .total-container {
        padding: 15px 20px;
    }
}
#cost-calculator .container {
    padding: 30px;
}