body {
    margin: 0;
    padding: 0;
    display: flex;
}

/* .sidenav {
    height: 500px;
    width: 0;
    position: absolute;
    z-index: 6;
    margin-top: 5em;
    margin-left: 3em;
    background-color: var(--sidebar-bg);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: var(--popup-box-shadow)
} */
.sidenav {
    z-index: 6;
    height: auto;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f1f1f1;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    padding-bottom: 30px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #111;
    display: block;
    transition: 0.3s;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
}

#contentSection {
    margin-left: 10px;
    padding: 10px;
    transition: 0.5s;
    color: #111;
    height: 95vh;
    overflow: scroll;

    p {
        font-weight: 300;
        font-size: 1.2rem;
        font-family: "Nunito Sans", sans-serif;
        /* font-family: var(--font-family); */

    }
}

.data-container-popup {
    height: auto;
    width: 250px;
    /* Ensure it's visible */
    position: absolute;
    z-index: 9999;
    /* Ensure it's on top */
    bottom: 1em;
    right: 6em;
    background-color: var(--sidebar-bg);
    overflow: hidden;
    transition: 0.5s;
    padding: 15px;
    box-shadow: var(--popup-box-shadow);
    border-radius: 10px;
    display: none;
    /* Force visibility */
}

/* Ensure the pop-up is visible during printing */
@media print {
    .data-container-popup {
        display: block !important;
        /* Force visibility */
        position: absolute !important;
        bottom: 1em !important;
        right: 6em !important;
        background: white !important;
        color: black !important;
        padding: 15px !important;
        font-size: 14px !important;
        width: auto !important;
        height: auto !important;
        border: 1px solid black !important;
        box-shadow: none !important;
    }

    /* Ensure the pop-up does not get hidden */
    .leaflet-popup,
    .leaflet-popup-content-wrapper {
        display: block !important;
    }
}

.sidenav a,
.data-container-popup a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: var(--sidebar-color);
    display: block;
    transition: 0.3s;
}

.sidenav a:hover,
.data-container-popup a:hover {
    color: var(--sidebar-hover-color);
}

.sidenav .closebtn,
.data-container-popup .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.left-sidebar {
    width: 490px;
    overflow: scroll;
    /* height: 100vh; */
    max-height: 94vh;
    position: absolute;
    border-radius: 4%;
    transition: transform 0.3s ease-in-out;
    scroll-behavior: smooth;
    /* Smooth scrolling (optional) */
    scroll-padding-top: 1rem;
    /* Optional: padding for anchor jumps */
}

.left-sidebar::-webkit-scrollbar {
    display: none;
}

.left-sidebar.hidden {
    transform: translateX(-92%);
}

.minimize-btn {
    position: absolute;
    right: 0px;
    top: 8px;
    background-color: #02726e;
    color: white;
    border: none;
    border-radius: 33%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .main-nav .project-title {
        font-size: 3em;
    }

    .left-sidebar {
        max-width: 100vw;
        width: 100vw;
        /* Ensure it takes full width */
        border-radius: 0;
        margin-left: 0px !important;
    }

    .minimize-btn {
        display: block;
    }

}

#logo-footer {
    transition: height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#left-sidebar {
    transition: max-height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Container for the navigation bar */
.navbar {
    display: flex;
    align-items: center;
    background-color: #00857f;
    padding: 10px 20px;
    border-radius: 20px;
}

/* Individual items in the navbar */
.nav-item {
    color: var(--text-color);
    font-family: Arial, sans-serif;
    text-decoration: none;
    margin: 0 15px;
    display: flex;
    align-items: center;
}

/* Icon styles */
.nav-icon {
    margin-right: 5px;
    font-size: 18px;
}

/* Hover effect for items */
.nav-item:hover {
    opacity: 0.8;
}

/* Specific styles for selected language */
.language-selector {
    font-weight: bold;
}


.nav-item i {
    margin-right: 5px;
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.main-nav {
    color: var(--text-color);
    padding: 20px 20px 0 20px;
    text-align: center;
    background-size: cover;
    background-position: 50%;
    --tw-bg-opacity: 1;
    background-color: var(--background-color);
    /* background-image: url('assets_2/images/location-bg.svg'); */
    background-image: url('../images/stacked-waves-haikei-il.svg');
    z-index: 14 !important;
    /* background-image: url('../images/layered-waves-haikei.svg'); */
    filter: drop-shadow(2px 4px 6px gray);

    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.main-nav h1 {
    font-size: 5rem;
    letter-spacing: 10px;
    font-style: normal;
    /* font-weight: 100; */
    font-family: var(--font-family);
    /* font-family: "Big Shoulders Inline Text", serif; */
    /* font-optical-sizing: auto; */
    font-weight: 900;
    font-style: normal;
    transition: all 0.3s ease-in-out;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.widget-btn {
    /* background-color: #00a2a2; */
    background-color: var(--background-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.widget-btn:hover {
    background-color: var(--background-color);
    color: var(--text-color);
}

.main-nav-footer {
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px; */
    filter: drop-shadow(2px 4px 6px gray);
    z-index: 13 !important;

    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    background-color: #49c9c2;
    border: 2px solid #49c9c2;

    padding: 9px;
    font-size: 15px;
    text-align: justify;
    font-family: 'Nunito Sans';
}

.main-nav-footer button {
    background-color: var(--text-color);
    color: var(--background-color);
    /* font-size: .85rem; */
    margin: 0;
    /* border: 1px solid #008c8c; */
}

.menu-items {
    color: var(--text-color);
    text-decoration: none;

    span {
        font-size: .85rem;
    }
}



.accordian-container {
    max-width: 600px;
    margin: 20px auto -30px;
    background: var(--text-color);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 3px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    position: relative;
}

.accordian-container .card {
    border: 2px solid var(--border-color);
    /* transition: border 0.3s ease-in-out; */
    transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Active card border highlight */
.accordian-container .card.active {
    border-color: var(--active-green);
}

/* Smooth content reveal */
.accordian-container .card .content {
    display: none;
    padding: 10px;
    transition: max-height 0.3s ease-in-out;
}

/* Open state */
.accordian-container .card.open .content {
    display: block;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.tools {
    display: flex;
    align-items: center;
}

button {
    margin-left: 10px;
    padding: 5px 10px;
    border: none;
    background-color: var(--background-color);
    color: var(--text-color);
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: var(--background-color);
}

.content {
    margin-top: 20px !important;
}

strong {
    color: var(--background-color);
}

.chart {
    margin: 20px 0;
}

.progress {
    background-color: #e0e0e0;
    border-radius: 5px;
    height: 20px;
    overflow: hidden;
}

.filled {
    background-color: var(--background-color);
    height: 100%;
}

.details {
    margin: 10px 0;
}

.footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.data-applicability {
    font-size: 0.8em;
    color: gray;
    text-align: center;
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    text-align: center;
    line-height: 0;
    color: var(--background-color);
    border: 1px solid;

    i {
        font-size: 12px;

    }

}

.btn-circle:hover,
.btn-circle.active {
    background-color: var(--background-color);
    color: var(--text-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    margin-left: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--background-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--background-color);
}

input:checked+.slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}



/* Map Controls */
.map-controls {
    position: absolute;
    bottom: 75px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.map-control-button {
    width: 40px;
    height: 40px;
    /* background-color: rgb(41, 50, 60); */
    border: none;
    color: #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-size: 22px;
    background: var(--text-icon-bg);
    /* border: 1px solid; */
    line-height: 0;
    padding: 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.map-control-button:hover,
.map-control-button.active {
    background-color: #555;
}

.legend-popup {
    display: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    cursor: move;
    height: 300px;
}

.popup {
    /* display: none; */
    position: absolute;
    bottom: 40px;
    right: 90px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    z-index: 1000;
    width: 220px;
}

.popup h6 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #333;
    font-weight: 400;
}

.popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup li {
    margin-bottom: 5px;
}

#change-map-popup {
    top: unset !important;
    bottom: 10px;
}

.map-option {
    width: 100%;
    padding: 8px 10px;
    text-align: left;
    border: none;
    background: #f8f9fa;
    color: #333;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
    margin: 0;
}

.map-option:hover,
.map-option.active-map {
    background: var(--background-color);
    color: white;
}

.leaflet-pane_selectedFeature-pane canvas {
    pointer-events: none;
}

.popup_analyze {
    width: 240px;
    max-width: 240px;
    /* transform: translate(0px, -50%) translate(888px, 553px); */
    /* flex-direction: row; */
    /* display: flex; */
    left: 0;
    /* pointer-events: none; */
    /* position: absolute; */
    /* top: 0; */
    will-change: transform;
}

.popup_analyze {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    padding: 10px 10px 15px;
    pointer-events: unset;
    border-radius: 20px !important;
    padding: 0 !important;
}


.backdrop-blur-sm,
.backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-white\/70 {
    background-color: hsla(0, 0%, 100%, .7);
}

.rounded-r-\[20px\] {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.justify-end {
    justify-content: flex-end;
}

.items-center {
    align-items: center;
}

.cursor-pointer {
    cursor: pointer;
}

.w-10 {
    width: 2.5rem;
}

.h-11 {
    height: 2.75rem;
}

.top-8 {
    top: 2rem;
}

.-right-\[40px\] {
    right: -40px;
}

.absolute {
    position: absolute;
}

.pt-6 {
    padding-top: 1.5rem;
}

.p-6 {
    padding: 1.5rem;
}

.border-slate-100 {
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249 / var(--tw-border-opacity));
}

.border-t {
    border-top-width: 1px;
}

.rounded-3xl {
    border-radius: 1.25rem;
}

.cursor-pointer {
    cursor: pointer;
}

.w-full {
    width: 100%;
}

:disabled {
    cursor: default;
}

[role=button],
button {
    cursor: pointer;
}

[type=button],
[type=reset],
[type=submit],
button {
    appearance: button;
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

.font-semibold {
    font-weight: 600;
}

.uppercase {
    text-transform: uppercase;
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem;
}

.font-sans {
    font-family: var(--font-sans), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.gap-4 {
    gap: 1rem;
}

.grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid {
    display: grid;
}

.text-brand-800 {
    --tw-text-opacity: 1;
    color: rgb(0 133 127 / var(--tw-text-opacity));
}

.text-black\/85 {
    color: rgba(0, 0, 0, 85%);
}

.leading-5 {
    line-height: 1.25rem;
}

.font-light {
    font-weight: 300;
}

.text-xxs {
    font-size: .625rem;
}

.col-span-3 {
    grid-column: span 3 / span 3;
}

.col-span-7 {
    grid-column: span 7 / span 7;
}

#popup-content-locations button {
    /* background: #dedede !important; */
    /* padding: 1px 10px; */

    :hover {
        color: #fff;
    }
}

.hover-none {
    pointer-events: none;
}

.img-duk-logo {
    max-width: 180px;
}

.bottom-logo {
    position: absolute;
    bottom: 0;
    left: 14px !important;
    /* width: auto; */

    /* border-top: 1px solid; */
    /* padding-top: 10px; */
    /* background: #fff; */
    /* margin-bottom: 1px; */
    /* border-radius: 10px; */
    /* background: #00807b; */
    /* color: #fff; */
    /* /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
}

.main-nav h1 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 300
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    margin-top: 15px;
}

.checkbox-label:hover,
.checkbox-label input:hover {
    cursor: pointer;
}

.legend-box {
    width: 40px;
    height: 20px;
    border: 1px solid #000;
    flex-shrink: 0;
}


/* Custom Dropdown */
/* .custom-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
    z-index: 9999999999999;
}

.custom-dropdown-toggle {
    font-weight: bold;
    color: #49c9c2;
    text-decoration: underline;
    cursor: pointer;
    z-index: 9999999999999;
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    min-width: 80px;
    padding: 5px 0;
    list-style: none;
    z-index: 999999999999;
}

.custom-dropdown-menu li {
    padding: 8px 12px;
    cursor: pointer;
    text-align: center;
    color: #333;
}

.custom-dropdown-menu li:hover {
    background: #49c9c2;
    color: white;
} */

.custom-dropdown {
    font-weight: bold;
    color: #007c89;
    text-decoration: underline;
    cursor: pointer;
    position: relative;
    padding: 10px
}

/* Styling the select dropdown */
select.custom-dropdown {
    border: none;
    background: none;
    font-size: 16px;
    color: #007c89;
    /* text-decoration: underline; */
    text-decoration: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 3px;
    font-weight: 900;
}

select.custom-dropdown:focus {
    outline: none;
}

/* Arrow styling */
.custom-dropdown-wrapper {
    display: inline-block;
    position: relative;
}

/* .custom-dropdown-wrapper::after {
    content: "▼";
    position: absolute;
    right: 30px;
    top: 35px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #007c89;
    pointer-events: none;
} */

.custom-dropdown-wrapper::after {
    content: "▼";
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    /* margin-inline: auto; */
    width: fit-content;
    top: 3em;
    /* transform: translateY(-50%); */
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #007c89;
    pointer-events: none;
}

.main-nav-footer .custom-dropdown-wrapper::after {
    left: unset !important;
    top: 0.9em !important;
    height: unset !important;

}

.header-title,
.header-title select {
    font-size: 20px;
}

.leaflet-control-graphicscale-inner.filled {
    background: rgba(0, 0, 0, 0) !important;
}


.feature-popup {
    width: 521px !important;
    max-width: 521px !important;
}


.feature-popup .leaflet-popup-content {
    width: 500px !important;
}

.tools {
    position: relative;
    /* so popup can be positioned inside */
}

.transparency-popup {
    position: absolute;
    right: 40px;
    background: #fff;
    /* match gear hover color */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
    color: white;
    border: 1px solid var(--background-color);
    /* text inside is white */
}

.transparency-popup.show {
    opacity: 1;
    pointer-events: auto;
}

/* Arrow pointing right toward gear */
.transparency-popup::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    /* stick out from the right side */
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid rgb(0 175 167 / 1);
    /* arrow color same as popup */
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1));
    /* subtle shadow */
}

/* Label text */
.transparency-popup label {
    display: block;
    margin-bottom: 5px;
    color: #000;
    text-align: center;
    /* font-weight: bold; */
}

/* Range track styling */
.transparencyRange {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--background-color);
    outline: none;
}

/* Track for WebKit (Chrome, Edge, Safari) */
.transparencyRange::-webkit-slider-runnable-track {
    height: 6px;
    background: linear-gradient(to right,
            var(--background-color) var(--value, 50%),
            #ddd var(--value, 50%));
    border-radius: 3px;
}

/* Thumb for WebKit */
.transparencyRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--background-color);
    cursor: pointer;
    margin-top: -4px;
}

/* Track for Firefox */
.transparencyRange::-moz-range-track {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

/* Progress (filled) for Firefox */
.transparencyRange::-moz-range-progress {
    background: var(--background-color);
    height: 6px;
    border-radius: 3px;
}

/* Thumb for Firefox */
.transparencyRange::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--background-color);
    cursor: pointer;
}

.transparencyRange::-webkit-slider-thumb:hover,
.transparencyRange::-moz-range-thumb:hover {
    background: var(--background-color);
    border: 2px solid white;
}

.transparencyRange::-webkit-slider-runnable-track {
    transition: background 0.1s ease;
}


select.custom-dropdown {
    padding: 0 5px;
}

.custom-dropdown-wrapper::after {
    height: 50px;
}






.boundary-popup-wrapper .leaflet-popup-content {
    margin: 6px 8px;
}

.boundary-name {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}


/* Minimized Main Nav */
.main-nav {
    transition: all 0.3s ease-in-out;
}

.main-nav.minimized .dep-name,
.main-nav.minimized .main-nav-heading {
    display: none !important;
}

.main-nav.minimized .project-title {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    font-size: 2.5rem;
}

.main-nav.minimized {
    padding-bottom: 10px;
}

.main-nav-footer {
    transition: top 0.3s ease-in-out;
}

.main-nav.minimized~.main-nav-footer {
    top: 70px !important;
}