@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');


:root {
    --primary-color: #D7B263;
    --secondary-color: #DE4900;
    --black-color: #121212;
    --grey-color: #979797;
    --white-color: #FFFFFF;
    --light-black-color: #17181D;
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    font-family: "Poppins", sans-serif;
    color: var(--white-color);
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    background-color: var(--black-color);
}

.text-white {
    color: var(--white-color);
}

.text-grey {
    color: var(--grey-color);
}

.text-small {
    font-size: 13px;
}

.text-very-small {
    font-size: 10px;
}

.menubar {
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--light-black-color);
    bottom: 0;
    /* width: 100%; */
    /* height: 60px; */
    left: 0;
    right: 0;
    padding: 0.8rem 1rem;
    margin: 20px 16px;
    position: fixed;
    box-shadow: 0px 8px 20px 0px rgba(18, 18, 18, 0.50);
    border-radius: 50px;
}

.menubar .menu-icon {
    text-align: center !important;
    width: 30px;
}

.menubar .icon {
    width: 24px;
    height: 24px;
}

.menubar a.active .icon {
    filter: invert(55%) sepia(100%) saturate(50);
}

.menubar .menu-icon p {
    font-size: 10px;
    color: var(--primary-color);
    margin-top: 3px;
}

.menubar a.active p {
    color: var(--secondary-color);
}

.master .header {
    z-index: 1;
    position: relative;
}

.master .header .img-profile {
    width: 52px;
    height: 52px;
    border-radius: 50px;
    border: 1px solid;
    padding: 2px;
}

.master .header .img-profile img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50px;
}

.master .header .img-profile .badge-level {
    background-color: var(--primary-color);
    width: 100%;
    height: 13px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -24px;
}

.master .header .img-profile .badge-level span {
    font-size: 7px;
    color: var(--white-color);
}

.master .header .input-group select {
    background-color: transparent;
    border: 0;
    color: var(--white-color);
    padding: 0;
}

.master .header .input-group .input-group-text {
    background-color: transparent;
    color: var(--white-color);
    border: 0;
    padding: 0;
    font-size: 13px;
}

.main-content {
    padding-bottom: 6rem;
}
