@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
span,
table,
tr,
td,
p {
    font-family: "Poppins", sans-serif !important;
}


body {
    background-color: #dc35450f;
}

nav {
    background: none !important;
}

.br-1{
    border-radius:1px
}
.br-2 {
    border-radius: 2px
}
.br-3 {
    border-radius: 3px
}
.br-4 {
    border-radius: 4px
}
.br-5 {
    border-radius: 5px
}
.br-6 {
    border-radius: 6px
}
.br-7 {
    border-radius: 7px
}
.br-8 {
    border-radius: 8px
}
.br-9 {
    border-radius: 9px
}
.br-10 {
    border-radius: 10px
}
.br-20 {
    border-radius: 20px
}
.br-30 {
    border-radius: 30px
}

.box{
    border-radius:30px
}

.section {
    padding: 1.5rem;
}

.add-new {
    z-index: 10000;
    position: fixed;
    bottom: 0;
    background: gainsboro;
    padding: 1rem;
    width: 100%;
}

    .add-new > * {
        display: block;
        max-width: 800px;
        margin: auto;
    }

fieldset {
    padding: 0 1rem 1rem;
}

.level {
    margin-top: 1rem;
    align-items: stretch;
}

.level-item {
    flex-shrink: 1;
    flex-basis: 0;
    align-items: flex-start;
    flex-direction: column;
}

.level button {
    height: calc(100% - 8px);
    margin-top: 8px;
    margin-bottom: 0;
}

.notification {
    position: fixed;
    bottom: 0.5rem;
    left: 50%;
    margin: -100px 0 0 -150px;
    /* right: 0.5rem; */
    z-index: 100;
    animation: slidein 2s 1;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.3);
    max-width: 600px;
    background-color: whitesmoke;
    border-radius: 4px;
    padding: 1.25rem 2.5rem 1.25rem 1.5rem;
}

@keyframes slidein {
    0% {
        transform: translateY(150%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeout {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(0);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes slideout {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(110%);
        opacity: 0;
    }
}

.notification p{
    padding:0 10px
}

.menu-list a {
    padding: 1rem 1.4rem;
    border-radius: 30px;
}