/* 1973252 */
ul.page-switcher {
margin: 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
background-color: rgba(255, 255, 255, 0.1);
}
ul.page-switcher li {
display: block;
width: 50%;
text-align: center;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
ul.page-switcher li a {
display: block;
padding: 12px;
color: rgba(255, 255, 255, 0.75);
font-size: 14px;
line-height: 20px;
text-decoration: none;
}
ul.page-switcher li a:active {
color: rgba(255, 255, 255, 0.75);
}
ul.page-switcher li a:hover {
text-decoration: none;
color: #FFF;
}
ul.page-switcher li.active {
border-bottom: 4px solid #4E86FF;
pointer-events: none;
}
ul.page-switcher li.active a {
color: #FFF;
}