
.select_app_container {
    width: 276px;
    max-height: 300px;
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
    border-radius: 6px;
    position: absolute;
    z-index: 1001;
    overflow: hidden;
    background: white;
    overflow: auto;
    transform-origin: 25% 0% 0;
}
.select_app_container .app_list_container { 
    padding-top: 6px;
    padding-bottom: 6px;
    width: 100%;
}
.select_app_container .select_app_cell {
    cursor: pointer;
    position: relative; 
    transition: background-color 0.25s ease;
}
.select_app_container .select_app_cell:hover {
    background-color: rgba(0, 121, 255, 0.1);
}   
.select_app_container .select_app_cell.selected {
    background-color: rgba(0, 121, 255, 0.15);
} 
.select_app_container .select_app_cell > a {
   text-decoration: none;
}
.select_app_container .select_app_cell .avatar {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 18px; 
    left: 14px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    object-fit: cover;
    box-shadow: 0px 1px 4px 2px rgba(0, 0, 0, .08);
}
.select_app_container .select_app_cell .title {
    padding: 16px 12px 16px 64px;
    font-family: Montserrat-Bold;
    font-size: 14px; 
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 0.64);
}

.main-bot {
    margin-left: 8px;
}
.main-account {
    position: relative; 
    padding: 14px 13px 14px 53px;
    margin-right: 16px; 
    border-radius: 7px;
    cursor: pointer;
    transition: 0.2s all;
    letter-spacing: 0px;
} 
.main-account:hover { 
    /* background: #cde5ff;  */
    transform: scale(1.016) translate(0px, -2px);
} 
.main-account img,
.main-account .initial {
    object-fit: cover;
    position: absolute;
    width: 31px;
    height: 31px;
    top: 0px;
    bottom: 0px;
    left: 13px;
    margin: auto;
    border-radius: 19px;
    box-shadow: 0px 1px 4px 0px rgb(0 0 0 / 12%);
} 
.main-account .initial { 
    line-height: 31px;
    color: white;
    text-align: center;
    font-family: Montserrat-Bold; 
    font-size: 11px; 
    background: linear-gradient(135deg, #2e64ff, #00ef4a);
}
.main-account p {
    font-family: Montserrat-Bold;
    color: #46657a;
    font-size: 13px;
}

#error_container { 
    font-size: 13px;
    margin-top: 70px; 
    position: fixed;
}
#error_container p {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #eb4d4b;
    border-top: 0px;
    border-radius: 0px 0px 6px 6px;
    color: #eb4d4b;
    background-color: #ffefef;
    font-size: 14px;  
    font-family: Inter-Medium;
    max-width: 70%;
}
 
.category_suggestion {
    box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.03), 0px 2px 20px 0px rgba(0, 0, 0, 0.06);
    background-color: white;
    border-radius: 8px;
    width: calc(100% - 2 * 40px);
    margin: 0px 0px 0px 0px;
    height: 10px;
    padding: 10px 0px;
    transition: all 0.1s;
    overflow: hidden;
}
.category_suggestion .category_suggestion_cell { 
    cursor: pointer;
    font-family: Inter-Medium;
    font-size: 13px;
    color: #666666;
    height: 32px;
    line-height: 30px;
    padding: 0px 13px;
    margin: 0px 5px;
    border-radius: 6px;
    transition: all 0.2s;
}
.category_suggestion .category_suggestion_cell:hover { 
    background-color: #f3f3f3;
}
 
.new_button {
    cursor: pointer; 
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background-color: white;
    padding: 10px; 
    transition: all 0.1s ease-in-out;
}
.new_button:hover {
    background-color: #f2f2f2;
} 

.pop_up_caret {
    margin: auto;
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}
.pop_up_caret.up { 
    top: -8px; 
    bottom: auto;
    border-top: 0px solid #fff;
    border-bottom: 8px solid #fff;
}
.pop_up_caret.up {
    transform: translateY(1px);
}
.pop_up_caret.down {
    transform: translateY(-1px);
}



.dark_mode_button {
    position: relative;
    display: inline-block;
    margin-right: 6px; 
    width: 50px;
    height: 42px;
    padding: 0px 0px;
    text-align: center;
    cursor: pointer;
}
.dark_mode_button .icon {
    display: inline-block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 16px;
    width: 19px;
    height: 42px;
    transition: 0.2s all;

    object-fit: contain;
    background-image: url(/assets/dark_mode_disabled.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.dark_mode_button:hover { 
    /* height: 12px; */
}  
@media (hover: hover) {
    .dark_mode_button:hover .icon {
        background-image: url("/assets/dark_mode_enabled.svg");
        height: 29px;
    }  
    .dark_mode_button.selected:hover .icon {
        background-image: url("/assets/dark_mode_enabled.svg");
    }  
    .dark_mode_button:hover p {
        opacity: 1;
    }
}
.dark_mode_button.selected .icon {
    background-image: url("/assets/dark_mode_enabled.svg");
}  
.dark_mode_button p {
    position: absolute;
    font-family: Inter-Semibold;
    font-size: 9px;
    bottom: 0px;
    transition: 0.2s all;
    opacity: 0;
    color: #747474;
}


@media (max-width: 768px) { 

.main-bot {
    max-width: calc(100% - 127px);
}
.select_app_container {
    margin-left: -16px;
}

.main-account p.name { 
    display: none;
}
.main-account { 
    padding-right: 0px;
    margin-right: 4px; 
}
 
.select_app_container .select_app_cell .avatar { 
    width: 26px;
    height: 26px;
    border-radius: 13px; 
    left: 10px; 
}
.select_app_container .select_app_cell .title {
    padding: 14px 6px 14px 48px; 
    font-size: 13px;  
}

} 