.custom-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer {
    position: inherit !important;
}

.card-body {
    padding: 15px 25px;
}

body {
    height: 100vh;
    font-size: 16px;
    font-weight: 400;
    background-color: #00000008;
}

.custom-label {
    font-size: 1.1em;
    color: #000338;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
}

.custom-prop {
    font-size: 1.0em;
    color: #4B4C4E;
}

main {
    padding: 30px 0px 30px 0px;
    overflow: inherit !important;
}

.menu-element {
    padding: 0px 10px 0px 10px;
    margin: 0px 5px 0px 5px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    background: #ffffff;
    -webkit-box-shadow: 8px 8px 10px #e0e0e0, -8px -8px 10px #ffffff;
    box-shadow: 8px 8px 10px #e0e0e0, -8px -8px 10px #ffffff;
    border: 1px solid #f0f0f0;
}

.menu-element i {
    margin: 0px 2px 0px 2px;
}

nav {
    min-height: 70px;
    background: white;
    -webkit-box-shadow: 12px 12px 24px #b2c9c7, -12px -12px 24px #f0ffff;
    box-shadow: 10px 10px 20px #b2c9c7, -10px -10px 20px #f0ffff;
}

header {
    grid-area: header;
}

main {
    grid-area: main;
    overflow: auto;
}

footer {
    grid-area: footer;
    min-height: 70px;
    display: flex;
    align-items: center;
    background: white;
    -webkit-box-shadow: 12px 12px 24px #b2c9c7, -12px -12px 24px #f0ffff;
    box-shadow: 12px 12px 24px #b2c9c7, -12px -12px 24px #f0ffff;
}

.grid-container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        'header'
        'main'
        'footer';
    gap: 2px;
    width: 100%;
    height: 100%;
}

.card {
    margin: 20px;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    transition: 0.25s;
}

.dropdown-menu {
    background-color: transparent;
    border: 0px !important;
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
}

.dropdown-element {
    margin: 5px 0px 5px 0px;
    background-color: white;
    border: 1px solid black;
    border-radius: 20px;
    font-size: 16px;
    transition: 0.25s;
}

.dropdown-element:hover,
.dropdown-item:hover {
    border-radius: 20px;
    transform: scale(1.1);
    background-color: white;
    border: 1px solid black;
}

.right-rounded {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

@keyframes growDown {
    0% {
        transform: scaleY(0)
    }

    80% {
        transform: scaleY(1.1)
    }

    100% {
        transform: scaleY(1)
    }
}
