/*This rule removes the yellow background from configurable messages*/
.tdg-content .config-message-background
{
    background-color: transparent;
}
/*Next rule was added to resolve FSR scrolling issue */
.tdg-content.main-page-content

 


{

 

    
overflow:visible !important;

 


}
/*This rule sets the Accounts List icon size and position on small screens*/
@media (max-width:575px)
{
    .system-comdev, .system-land, .system-dogs, .system-utility, .system-licensing
    {
        background-size: 25px 25px;
        background-position:  left top;
    }
}
/*This rule sets the Accounts List icon size and position on large screens*/
@media (min-width:576px)
{
    .system-comdev, .system-land, .system-dogs, .system-utility, .system-licensing
    {
        background-size: 30px 30px;
        background-position: 5px center;
        padding-left: 10px;
    }
}

/*Set the icon for DOGS accounts*/
.system-dogs {
    /*Default Tempest icon
    background-image: url(../../Images/DOGS.png);
    */
    /*Remove icon
        background-image: none;
    */
}

/*Set the icon for TAX accounts*/
.system-land
{
    /*Default Tempest icon
    background-image: url(../../Images/LAND.png);
    */
    /*Remove icon
        background-image: none;
    */
}

/*Set the icon for UTILITY accounts*/
.system-utility
{
    /*Default Tempest icon
    background-image: url(../../Images/UTILITY.png);
    */
    /*Remove icon
        background-image: none;
    */
}

/*Set the icon for VACANCY TAX accounts*/
.system-vacancytax
{
    /*Default Tempest icon
    background-image: url(../../Images/EMPTY_HOME_TAX.png);
    */
    /*Remove icon
        background-image: none;
    */
}

/*  Set the icon for COMDEV folders
    NOTE: icons can be customized for each folder category and type
    see below for how this can be done.
*/
.system-comdev {
    /*Default Tempest icon
    background-image: url(../../Images/COMDEV.png);
    */
    /*Remove icon
        background-image: none;
    */
}

/*CUSTOMIZE COMDEV FOLDER ICONS
This rule can be used to customize icons for a specific folder category and type combination.
Spaces are not allowed in css rules thus all spaces in the category name or folder type will be replaced with hyphens
.system-comdev .category-[FOLDER CATEGORY HERE] .type-[FOLDER TYPE HERE]
{
}
*/

/*  Set the icon for LICENSING accounts
    NOTE: icons can be customized for each licensing category
    see below for how this can be done.
*/
.system-licensing {
    /*Default Tempest icon
    background-image: url(../../Images/LICENSING.png);
    */
    /*Remove icon
        background-image: none;
    */
}
/*CUSTOMIZE LICENSING ACCOUNT ICONS
This rule can be used to customize icons for a specific licensing category.
Spaces are not allowed in css rules thus all spaces in the category will be replaced with hyphens
.system-licensing .category-[LICENSING CATEGORY HERE]
{
}
*/