.sidebarBody {
    width: 20%;
    height: 100%;
    background-color: #1c9dda;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 30px;
    opacity: 1;
}
.sidebarBody {
    transition: width 0.5s ease;
    -webkit-transition: width 0.5s ease;
    -moz-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
}
.sidebarLogo {
    width: 150px;
    height: 150px;
    border-radius: 24px;
    background-color: #ffffff;
    align-self: center;
    overflow: hidden;
}
.menu {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
.menuItem {
    display: flex;
    align-items: center;
}
.logo {
    width: 150px;
    height: 150px;
}
.menuItemIcon {
    height: 24px;
    width: 24px;
}
.menuDropDownIcon {
    background: none;
    border: none;
    padding: 0;
    margin-left: auto;
}
.menuItemText {
    margin-left: 15px;
    margin-top: 2px;
    margin-bottom: 2px;
    font-size: 20px;
    color: #ffffff;
}
.menuItemSeperator {
    width: "100%";
    height: 0.5px;
    background-color: #ffffff;
    opacity: 0.25;
    margin-top: 10px;
    margin-bottom: 10px;
}
.menuChildContainer {
    opacity: 1;
    height: auto;
    transition: opacity 1s ease-out;
}
.menuChildText {
    font-size: 16px !important;
}
.menuChild {
    margin-top: 5px;
}
.hide {
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-out;
}
.hideSidebar,
.hideSidebar > * {
    /* opacity: 0; */
    /* height: 0; */
    width: 0;
    overflow: hidden;
    transition: width 0.5s ease;
    -webkit-transition: width 0.5s ease;
    -moz-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
}
