.tabber {
overflow: hidden;
}
.tabber .tabber-handle {
color: #999;
cursor: pointer;
display: block;
float: left;
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
.tabber .tabber-handle.active {
color: #333;
}
.tabber .tabber-handle.mobile {
display: none;
float: none;
}
.tabber .tabber-tab {
clear: both;
display: none;
}
.tabber .tabber-tab.active {
display: block;
}
.tabber.mobile .tabber-handle {
display: none;
}
.tabber.mobile .tabber-handle.mobile {
display: block;
}
