.page {
  position: relative;
  background-color: #000;
}

.page-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: 50%;
}

.page.bg .page-background {
  -webkit-transform: none;
  transform: none;
}

.page ::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.page ::-webkit-scrollbar-track {
  background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(0, 0, 0, .2)), to(rgba(0, 0, 0, .12)));
  background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .12));
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, .35);
  border-radius: 0;
}

.page ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .4);
  border-radius: 0px;
  background-clip: padding-box;
}

.page-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.page-content {
  padding: 25px 25px 0 25px;
}

.page-content-inner :last-child {
  margin-bottom: 0;
}

.page-footer {
  padding: 10px 25px;
  text-align: right;
  line-height: 1;
  font-size: 10px;
  color: #555;
}

.page-logo {
  display: block;
  width: 235px;
  height: 224px;
  margin: 0 auto;
  padding: 25px;
  background-color: rgba(255, 255, 255, .95);
}

.page-main {
  background-color: rgba(255, 255, 255, .95);
}

.page-title {
  text-transform: uppercase;
}

.page-not-found:not(.active) {
  display: none;
}

@media (min-width: 750px) {
/*  .pages,
  .page {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }*/

/*  .page {
    padding: 50px;
    overflow: hidden;
  }*/

/*  .page-inner {
  }*/

/*  .page-background {
    position: absolute;
  }*/

  .page-inner {
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .page-sidebar,
  .page-main {
    height: 520px;
  }

  .page-sidebar {
    width: 28%;
    padding-right: 10px;
  }

  .page-logo {
    width: auto;
    margin: 0;
  }

  .page-main {
    width: 72%;
  }

  .page-content {
    height: -webkit-calc(100% - 30px);
    height: calc(100% - 30px);
    padding-left: 20px;
  }

  .page-content-inner {
    height: 100%;
    padding-right: 20px;
    overflow: auto;
  }
}