
/*
// CSS Classes  below can be populated and changed to modify your calculator deployment.
// IMPORTANT: Do Not Modify the KJE.css file!  The KJE.css file is replaced during the update process
// All CSS customization must be done in this file (you can override KJE.css classes)
//
// For information on customizing this file please see:
// https://www.dinkytown.net/money/V3customize.html
*/

#KJEAllContent {
}

#KJECalculatorTable {
}

#KJETitle {
}

.KJECommandButton, .KJEMoreButton {
}

/* 2021 Command Button Example */
/*  Command Buttons */
#KJEAllContent .KJECommandButton
{
    border: 2px solid #00824a;
    background-color: #00824a;
    color: #FFF;
    border-radius: 1.5rem;
    padding: .6rem 1.5rem;
    margin: .2rem .5rem .2rem 0;
    line-height: 1;
    transition: all .5s ease;
}

#KJEAllContent .KJECommandButton:active,
#KJEAllContent .KJECommandButton:focus 
{
    background: #00824a;
    border-color: #de3e26;
    outline: none;
}

#KJEAllContent .KJECommandButton:hover 
{
    background: #de3e26;
    border-color: #de3e26;
}

