PanelSwitcher
{
width: 100%;
height: 100%;
position: relative;
flex-shrink: 0;
flex-grow: 0;
}
PanelSwitcher > *
{
position: absolute;
left: 0px;
right: 0px;
width: 100%;
height: 100%;
flex-shrink: 0;
flex-grow: 0;
opacity: 1;
transition: all 0.2s ease;
}
PanelSwitcher > .hidden
{
opacity: 0;
transform: translateX( -40px );
transition: all 0.1s ease;
}