:root {
    --card-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.20);
    --card-border-radius: 15px;
}

body {
    background: #f3f2ef;
    min-height: 94vh;
    position: relative;
    margin: 0;
    padding-bottom: 100px;
    box-sizing: border-box;
}

footer {
    position: absolute;
    bottom: 0;
}

.navbar .nav-link.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle::after {
    display: none !important;
}

.sticky-header.scrolled {
    background-color: #fff !important;
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.20);
    color: #000;
}

/* border radius */
.card-border-radius {
    border-radius: var(--card-border-radius) !important;
}

.card-border-radius .card-header {
    border-radius: var(--card-border-radius) var(--card-border-radius) 0 0 !important;
}

.card-border-radius .card-footer {
    border-radius: 0 0 var(--card-border-radius) var(--card-border-radius) !important;
}

/* card shadow */
.card-shadow {
    box-shadow: var(--card-shadow);
}


.footer,
.navbar {
    background: #f8f9fa;
}

.footer a {
    color: #5f6368 !important;
}