.o-wrapper__content {
    padding-left: 245px;
    margin-top: 35px;
}
.collapsed .o-wrapper__content {
    padding-left: 75px;
}
.o-wrapper__content--auth {
    margin-top: 35px;
}

.o-processing__wrapper {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    position: fixed;
    z-index: 99;
    background-color: rgba(255,255,255,0.8);
    display: none;
}
.o-processing {
    position: absolute;
    top: 30%;
    left: 50%;
}
.o-processing--img {
    width: 50px;
    height: 50px;
    background-image: url(../img/icon_processing.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-animation: spin 6s linear 0s infinite normal;
    -moz-animation: spin 6s linear 0s infinite normal;
    -ms-animation: spin 6s linear 0s infinite normal;
    -o-animation: spin 6s linear 0s infinite normal;
    animation: spin 6s linear 0s infinite normal;
}
.o-processing--text {
    margin-top: 70px;
    margin-left: -10px;
}
@keyframes spin {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}
@-webkit-keyframes spin {
  0% {-webkit-transform: rotate(360deg); }
  100% { -webkit-transform: rotate(0deg); }
}
@-ms-keyframes spin {
  0% {-ms-transform: rotate(360deg); }
  100% { -ms-transform: rotate(0deg); }
}
@-moz-keyframes spin {
  0% { -moz-transform: rotate(360deg); }
  100% { -moz-transform: rotate(0deg); }
}
@-o-keyframes spin {
  0% { -o-transform: rotate(360deg); }
  100% { -o-transform: rotate(0deg); }
}