.cmm_flex {
    width: 100%;
    height: 100%;
    display:flex;
}
.cmm_flex:last-child {
    flex-grow: 1;
}
.cmm_flex > div {
    margin: 0px;
}
#side_bar {
    color:rgb(150, 150, 150);
    background-color:rgb(24, 24, 24);
    border-style:solid;
    border-width: 0px 1px 0px 0px;
    border-color: rgb(43, 43, 43);
    font-size: 0.9em;
    width:30%;
}
#tab_bar {
    border-style:solid;
    border-width: 0px 0px 1px 0px;
    border-color: rgb(43, 43, 43);
    background-color:rgb(24, 24, 24);
    color:rgb(150, 150, 150);
    height:4%;
    overflow-x: auto;
}
#content {
    overflow:auto;
    max-height: 96%;
}
 ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: rgb(79,79,79);
}
#cmm_container {
    padding-left: 15%;
    padding-right: 15%;
}
#cmm_flex {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
#cmm_left {
    margin:auto;
    text-align: left;
}
.cmm_page {
    width:80%;
    margin: auto;
    color:rgb(150, 150, 150);
    text-align: center;
    padding-bottom: 100px;
}


.cmm_icon_sidebar {
    display:inline-flex;
    padding-right: 15px;
    width: 85%;
    height:25px;
    padding-left: 0px;
    user-select: none; 
    transition: 0.3s;
    cursor: pointer;
    border-radius: 3px;
}
.cmm_icon_sidebar >p {
    text-align: left;
    padding-left: 10px;
    margin: auto;
    margin-left: 0px;
}
.cmm_icon_sidebar>img {
    margin: 0px;
    margin-left: 10px;
    width:24px;
    height:24px;
}
.cmm_icon_sidebar_inactive:hover {
    background-color: rgb(42, 45, 46);
}
.cmm_icon_sidebar_active {
    background-color: rgb(51,51,61);
}
.cmm_icon_sidebar_active>p{
    color: white;
}

.cmm_icon_header {
    display:inline-flex;
    padding-left: 15px;
    padding-right: 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-style:solid;
    border-width: 1px;
    border-color: rgb(43, 43, 43);
    user-select: none;
    cursor: pointer;
}
.cmm_icon_header >img {
    margin:auto;
    width:24px;
    height:24px;
}
.cmm_icon_header >p {
    text-align: center;
    margin: auto;
}
.cmm_icon_header_active {
    border-top-color: rgb(0, 120, 212);
    border-top-width: 3px;
    color: white;
    background-color: rgb(31, 31, 31);
}
.cmm_icon_header_inactive {
    background-color:rgb(24, 24, 24);
    transition: 0.3s;
}
.cmm_icon_header_inactive:hover {
    background-color: rgb(31, 31, 31);
}
.cmm_display_image {
    background-color: rgb(55, 55, 61, 0.0);
    border-radius: 10px;
    transition: 0.3s;
    width: 100%;
    margin:auto;
    padding: 10px;
}
.cmm_display_image:hover {
    background-color: rgb(55, 55, 61);
}
.cmm_display_image >img {
    width: 100%;
    margin:auto;
}
.cmm_c_logo {
    filter: invert(54%) sepia(42%) saturate(481%) hue-rotate(153deg) brightness(94%) contrast(92%);
}

.cmm_dropdown {
    user-select: none;
    margin-left: 10px;
    margin-top: 5px;
    display:flex;
    flex-direction: row;
    padding-top:5px;
    padding-bottom:5px;
    cursor: pointer;
}
.cmm_dropdown:hover {
    background-color: rgb(29, 31, 32);
}
.cmm_dropdown>img {
    transition: 0.3s;
    width: 16px;
    height:16px;
    margin: 0px;
}
.cmm_dropdown>p {
    text-align: left;
    margin:0px;
    margin-left:5px;
    font-weight: bold;
    color:white;
}
.cmm_dropdown:hover img {
    transform: rotate(90deg);
}
.cmm_dropdown_active>img {
    transform: rotate(90deg);
}

.cmm_dropdown_box {
    overflow: hidden;
    transition-property: max-height;
    transition-duration: 0.2s;
    margin-left:5px;
}
.cmm_dropdown_box_inactive {
    max-height: 0px;
}
.cmm_dropdown_box_active {
    max-height: 100%;
}
#text_input:enabled {
    border-color: rgba(0, 0, 0, 0);
}
.cmm_icon_button {
    transition: 0.3s;
}
.cmm_icon_button:hover {
    filter: brightness(0) saturate(100%) invert(97%) sepia(0%) saturate(7500%) hue-rotate(75deg) brightness(105%) contrast(103%);
}