.verSwitcher {
    position: relative;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: center;
    align-content: center;
    background: #fff; }
.verSwitcher-item {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
.verSwitcher-item--old {
    background: repeating-linear-gradient(-45deg, #fff, #fff 3px, #eee 0px, #eee 25%);
    background-size: 0.75em 0.75em;
    color: #878787; }
.verSwitcher-item--old--main .verSwitcher-label {
    background-color: #fb443c; }
.verSwitcher-item--old--main .verSwitcher-label:before, .verSwitcher-item--old--main .verSwitcher-label:after {
    background-color: #fb443c; }
.verSwitcher-item--reborn {
    background: #ee8e37;
    color: #fff; }
.verSwitcher-item--reborn .verSwitcher-label {
    background-color: #fff;
    color: #ee8e37; }
.verSwitcher-item--reborn .verSwitcher-label:before, .verSwitcher-item--reborn .verSwitcher-label:after {
    background-color: #fff; }
.verSwitcher a.verSwitcher-item--old:hover {
    background: repeating-linear-gradient(-45deg, #fff, #fff 3px, rgba(238, 142, 55, 0.5) 0px, rgba(238, 142, 55, 0.5) 25%);
    background-size: 0.75em 0.75em; }
.verSwitcher a.verSwitcher-item--reborn:hover {
    background: #df7413; }
.verSwitcher-label {
    position: absolute;
    left: 0;
    top: calc(100% - 12px - 6px);
    height: 12px;
    width: 48px;
    background-color: #8d8d8d;
    color: #fff;
    font-size: 7px;
    text-align: center;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0%, 0, 0) rotateZ(-45deg);
    transform: translate3d(0%, 0, 0) rotateZ(-45deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
.verSwitcher-label:before, .verSwitcher-label:after {
    content: '';
    position: absolute;
    display: block;
    background-color: #8d8d8d;
    width: 9px;
    height: 4px; }
.verSwitcher-label:before {
    right: calc(100% - 4px);
    bottom: 0;
    -webkit-transform: translate3d(0%, 0, 0) rotateZ(-45deg);
    transform: translate3d(0%, 0, 0) rotateZ(-45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom; }
.verSwitcher-label:after {
    left: calc(100% - 4px);
    bottom: 0;
    -webkit-transform: translate3d(0%, 0, 0) rotateZ(45deg);
    transform: translate3d(0%, 0, 0) rotateZ(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom; }
.verSwitcher-title {
    position: absolute;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-family: robotomedium;
    max-width: calc(100% - 40px); }
.window > .verSwitcher .verSwitcher-title {
    font-family: Arial;
    font-weight: bold; }
.window > .verSwitcher {
    margin-bottom: 10px; }