#mySidebar {
    z-index: 1000000000000;
    position: relative;
}
.media_screen_bars {
    display: none;
}
.media_screen_bars button {
    grid-gap: 5px;
    display: grid;
    cursor: pointer;
    padding: 13px 10px;
}
.media_screen_bars button span {
    background: #3c3c3c;
    border-radius: 100px;
    display: block;
    height: 2px;
    width: 22px;
    left: 0;
    -webkit-transition: all 0.3s 0s ease;
    -moz-transition: all 0.3s 0s ease;
    -o-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
    position: relative;
}
.media_screen_bars button:hover span:nth-child(2) { 
    left: 2px;
    -webkit-transition: all 0.3s 0s ease;
    -moz-transition: all 0.3s 0s ease;
    -o-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}
.media_screen_bars button:hover span:first-child,
.media_screen_bars button:hover span:last-child { 
    left: -2px;
    -webkit-transition: all 0.3s 0s ease;
    -moz-transition: all 0.3s 0s ease;
    -o-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}
.menu-open {
    overflow: hidden;
}
.menu-open div#media-screen-menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 3;
    
}
.main_menu_before {
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 0;
    position: absolute;
    -webkit-backdrop-filter: blur(3px) saturate(60%);
    backdrop-filter: blur(3px) saturate(60%);
    background: rgba(67,80,108,.5);
    opacity: 0;
    animation-name: backdrop_filter_media_screen;
    animation-duration: 0.2s; 
}
.menu-open .main_menu_before { 
    display: block;
    opacity: 1; 
}
@keyframes backdrop_filter_media_screen {
    from {opacity: 0;}
    to {opacity: 1;}
}
nav.navMediaScreen {
    display: none;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    position: absolute; 
    overflow: hidden;
    height: 100vh;
    width: 360px;
    left: -360px; 
    background: #FFF;
    border-radius: 0 30px 30px 0px;
    box-shadow: 0 0 30px 1px rgb(0 0 0 / 3%), 0 0 5px 0 rgb(79 112 149 / 30%);
    animation-name: media_screen_animate;
    animation-duration: 0.2s; 
}
.menu-open nav.navMediaScreen { 
    display: flex;
    flex-direction: column; 
    justify-content: space-between;  
    left: 0;
    gap: 0; 
}
nav.navMediaScreen .menu-list {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    height: auto; 
    padding-top: 50px;
    overflow-y: auto; 
    animation: desplegarMenuList 0.5s cubic-bezier(.4,0,.6,1) forwards;
}
@keyframes desplegarMenuList {
    from {opacity: 0; height: 0;}
    to {opacity: 1; height: 80vh;}
}
.navMediaScreen.dropdown-open .menu-list {
    width: 100%;
    display: block;
    animation: none;
}
nav.navMediaScreen .menu-list .menu-item {
    padding: 13px 31px;
}
@keyframes media_screen_animate {
    from {left: -360px;}
    to {top: 0;}
}
span.navbar-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    height: 50px;
    padding: 10px 30px;
    background: #FFF;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .1), 0 0 60px 0 rgb(39 102 149 / 8%);
    z-index: 1;
}
.navMediaScreen button.close_media_screen_menu {  
    padding: 5px;
    font-size: 14pt;
    cursor: pointer;
}
.navMediaScreen button.back-to-menu {  
    overflow: hidden;
    opacity: 0;
    padding: 5px;
    font-size: 14pt;
    cursor: pointer;
    pointer-events: none;
}
.navMediaScreen.dropdown-open button.back-to-menu {
    overflow: visible;
    pointer-events: visible;
}
.navMediaScreen button.back-to-menu:hover {
    transform: scale(1);
    animation-name: close_menu;
    animation-duration: 0.6s; 
}
 
.navMediaScreen button.close_media_screen_menu:hover {
    transform: scale(1);
    animation-name: close_menu;
    animation-duration: 0.6s; 
}
@keyframes close_menu {
    0% {transform: scale(1.1);}
    50% {transform: scale(1.2);}
    100% {transform: scale(1);}
}
.navMediaScreen .menu-item button, .navMediaScreen .menu-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 16pt;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}
.navMediaScreen .menu-item button:hover, .navMediaScreen .menu-item > a:hover { 
    color: #007ae6;
}
.navMediaScreen .menu-item > a::after {
    content:'\e8cb';
}
.navMediaScreen .menu-item button::after {
    content:'\e806';
}
.navMediaScreen .menu-item button::after, .navMediaScreen .menu-item > a::after { 
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.navMediaScreen .menu-item button:hover span, .navMediaScreen .menu-item > a:hover span {
    text-decoration: underline;
}
nav.navMediaScreen .submenu {
    display: grid;
    grid-gap: 20px;
}
nav.navMediaScreen .submenu.submenu-simple {
    display: block;
}
.navMediaScreen a.mainNavMenu_dropdownBox_link {
    color: #3c3c3b;
    font-size: 12pt;
    font-weight: 700;
    letter-spacing: 1px;
}
.navMediaScreen a.mainNavMenu_dropdownBox_link:hover {
    color: #007ae6;
} 
.navMediaScreen a.mainNavMenu_dropdownBox_link.active {
    color: #007ae6;
}
@media only screen and (max-width: 980px){  
    .media_screen_bars {
        display: block;
    } 
    .myMenu {
        display: none;
    }
    
}
@media only screen and (max-width:520px) {
    li.formSearch {
        padding: 13px 10px;
    }
}
@media only screen and (max-width:480px) { 
    nav.navMediaScreen {  
        position: fixed;
        width: 100%;
        height: 80vh; 
        bottom: 0;
        left: 0; 
        border-radius: 30px 30px 0px 0px; 
        animation-name: media_screen_animate;
        animation-duration: 0.2s; 
    }
    span.navbar-tools {
        margin-top: auto; 
    } 
    @keyframes media_screen_animate {
        from {bottom: -80vh;}
        to {bottom: 0;}
    } 
    nav.navMediaScreen .menu-list { 
        overflow-y: auto;   
    }
    
}  
.navMediaScreen .dropdown-panel-menu  { 
    display: none;
 } 
.navMediaScreen li button { 
    display: block;
}
.navMediaScreen.dropdown-open li button, .navMediaScreen.dropdown-open li.menu-item{
    display: none;
}
.navMediaScreen li.select-menu-item .dropdown-panel-menu, .navMediaScreen li.menu-item.select-menu-item  {
    display: block;
}  
.navMediaScreen li.menu-item.select-menu-item  { 
    animation: desplegarMenu 0.3s cubic-bezier(.4,0,.6,1) forwards;
}
@keyframes desplegarMenu {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
span.navbar-tools {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    width: 100%;
    padding: 20px 35px ; 
    border-top: 1px solid rgba(0, 0, 0, 2%);
    background: #eff2f5; 
    align-self: flex-end; 
    flex-shrink: 0;
}
span.navbar-tools a, span.navbar-tools button {
    display: flex;
    align-items: flex-end;
    color: #252833;
    font-size: 16pt;
    cursor: pointer;
}
span.navbar-tools button { 
    display: flex; 
}
span.navbar-tools button span {
    display: flex;
    width: 17px;
    height: 17px;
    align-items: center;
    position: relative;
    top: 8px;
    bottom: -6px;
    padding: 10px;
    border-radius: 50%;
    justify-content: center;
    line-height: .8;
    font-family: Roboto Condensed, sans-serif;
    font-size: 7pt;
    font-weight: 900;
    background: #c22d1b;
    color: #fff;
}
span.navbar-tools span.navbar-login {
    font-size: 9pt;
}
span.navbar-tools a:hover, span.navbar-tools button:hover {
    color: #007ae6;
}