* {
    padding: 0;
    margin: 0;
    transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1);
    user-select: none;
    -webkit-user-drag: none;
}

a {
    text-decoration: none;
    color: unset;
}

#messageBox {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(133, 128, 128, 0.527);
    z-index: 50;
    height: 100vh;
    width: 100vw;
}

#messageBox .box {
    position: relative;
    margin: auto;
    border-radius: 20px;
    padding: 20px;
    color: White;
    font-size: large;
    font-weight: 500;
    width: max-content;
    height: max-content;
    background-color: rebeccapurple;
}

main {
    display: flex;
    height: max-content;
    width: 100vw;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

main .sidebar {
    height: 100vh;
    width: 25%;
    background-color: rgb(30, 16, 109);
}

main .sidebar header {
    height: 10%;
    background-color: rgba(40, 122, 230, 0.829);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

main .sidebar ul li {
    padding: 10px;
    border-bottom: 1px solid black;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
}

main .sidebar ul li:hover .submenuContent {
    height: max-content;
    opacity: 1;
}

main .sidebar ul li:hover .fa-chevron-down {
    transform: rotate(180deg);
}

main .sidebar ul li .submenuContent {
    margin: 0 10px;
    padding: 0 30px;
    border-left: 1px solid #ffffff5c;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

main .sidebar ul li .submenuContent div {
    margin: 10px 0;
}

main .contentMain {
    height: 100vh;
    width: 100%;
    background-color: rgb(255, 255, 255);
}

main .contentMain header {
    display: flex;
    height: 10%;
    background-color: rgba(146, 140, 140, 0.363);
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}

main .contentMain header .SidebarBtn {
    display: flex;
    width: 50px;
    font-size: 40px;
    text-align: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

main .contentMain header .AssetsContent {
    display: flex;
    flex-direction: row;
    align-items: center;
}

main .contentMain header .AssetsContent p,
main .contentMain header .AssetsContent div {
    margin: 10px;
    font-size: large;
    color: blue;
    font-weight: 600;
}

main .contentMain header .AssetsContent .img {
    margin: 2px 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    background-position: center;
    background-image: url(../images/users.png);
    background-size: contain;
    background-repeat: no-repeat;
}

main .contentMain header .AssetsContent .dropdownOption {
    position: absolute;
    right: 0;
    top: 5vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    background-color: yellowgreen;
    align-items: flex-start;
    cursor: pointer;
    height: max-content;
    width: 160px;
    border-radius: 20px;
    padding: 20px;
    transform: scale(0);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 100000;
}

main .contentMain header .AssetsContent .dropdownOption div {
    padding: 5px;
    margin: 0px;
    width: 100%;
    border-bottom: 1px solid rgba(139, 134, 134, 0.418);
}

main .contentMain header .AssetsContent .dropdownOption div:last-child {
    border-bottom: none;
}

main .contentMain header .AssetsContent .dropdownOption p {
    font-family: sans-serif;
    color: red;
}

main .contentMain header .AssetsContent .img:hover .dropdownOption {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.EUMR {
    width: 25vw;
    height: 30vh;
    text-align: center;
    padding: 10px;
    color: white;
    background-color: #110d7c;
    margin: 35px;
    border-radius: 10px;
    font-weight: 700;
}

.EUMR p {
    font-size: x-large;
    text-decoration: underline;
}

.EUMR .quantity {
    font-size: 100px;
    font-weight: 800;
    color: white;
    font-family: sans-serif;
}

.mar-10 {
    margin: 10px;
}

.col-black {
    color: black;
}

.horizontal-null {
    width: 0 !important;
    padding: 0;
    margin: 0;
}

.hide {
    display: none !important;
}