/*
 *
 * Special CSS in order to remove any LimeSurvey branding from the admin theme
 *
 */
 
 
/* 2023-11-21 Trivender Singh: Hide logo in login/welcome screen. */
.login .sidebar-l .box-left .logo {
    display: none;
}

/* 2023-11-21 Trivender Singh: Hide Help in first screen. */
nav.navbar ul.nav li:nth-child(3).dropdown {
    display: none;
}

 2023-11-21 Trivender Singh: Hide LimeSurvey branding in footer. 
.footer div:nth-child(1) a:nth-child(1) {
    display: none;
}

/* Trivender Singh: Hide Donation button in footer. */
.footer div:nth-child(1) a:nth-child(3) {
    display: none;
}

/* 2023-08-29 Marcel Minke: Hide update notification */
#update-container{
    display: none;
}