Dropdown menu CSS in mobile view

#1. Decrease the font size in the drop-down menu in the mobile view
Use this code to Custom CSS box

@media screen and (max-width:767px) {
    div.header-menu-controls~div.container * {
    font-size: 10px;
}}

#2. Change the color of the dropdown menu links
Use this to Custom CSS box

@media screen and (max-width:767px) {
    div.header-menu-controls~div.container * {
    color: #f1f
}}

#3. Change the color of the dropdown menu background
Use this to Custom CSS box

@media screen and (max-width:767px) {
    [data-folder="root"]~[data-folder] {
    background-color: #f1f !important;
}}