::selection
{
  background-color: #2196F3;
  color: #fff;
}

/* scrollbar*/
::-webkit-scrollbar
{
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track
{
  background: rgba(0,0,0,0.1);
}

/* Handle */
::-webkit-scrollbar-thumb
{
  background: #c0c1c2;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover
{
  background: #c0c1c2;
}

/* placeholders */
::-webkit-input-placeholder
{
  font-size: 13px;
  font-weight: 100;
}

:-moz-placeholder
{
  font-size: 13px;
  font-weight: 100;
}

::-moz-placeholder
{
  font-size: 13px;
  font-weight: 100;
}

:-ms-input-placeholder
{
  font-size: 13px;
  font-weight: 100;
}

body
{
  position: relative;

  overflow: hidden;

  background-color: #fafbfc; /*fafbfc*/
  color: #2a333a;
}

h1, h2, h3, h4, h5, h6
{
  font-weight: bold;
}

.disabled
{
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed !important;
}

/* section */
.section
{
  display: block;
  position: relative;
}

.section > .block
{
  width: 100%;
  max-width: 1160px;

  position: relative;

  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px)
{
  .section > .block
  {
    padding: 0 16px;
  }
}

@media screen and (min-width: 768px)
{
  .section > .block
  {
    padding: 0 32px;
  }
}
/* section */

.body-wrapper
{
  display: flex;
  width: 100vw;
  height: 100vh;

  /*width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  overflow: hidden;*/
}

.body-wrapper > .sidebar
{
  height: 100vh;
  z-index: 1;
}

@media screen and (max-width: 768px)
{
  .body-wrapper > .sidebar
  {
    min-width: 50px;
  }
}

@media screen and (min-width: 768px)
{
  .body-wrapper > .sidebar
  {
    min-width: 56px;
  }
}

.body-wrapper > .content
{
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 100vh;

  z-index: 0;
}

.body-wrapper > .content > .body .frame
{
  padding-left: 16px;
  padding-right: 16px;
}

.body-wrapper > .content > .header
{
  min-height: 50px;
}

.body-wrapper > .content > .body
{
  flex: 1;
  overflow-y: auto;
  /*padding-bottom: 40px;*/
  position: relative;
}

.body-wrapper > .content > .body h1.title
{
  font-size: 18px;
  margin: 24px 0;
}

.body-wrapper > .content > .body h2.subtitle
{
  font-size: 13px;
  font-weight: 400;
  color: #8c8c8c;
  border-left: 8px solid #c0c1c2;
  padding-left: 5px;
  line-height: 9px;
  margin: 12px 0;
}

.bounceInLeft
{
  animation: bounceInLeft 1s infinite;
}

@keyframes bounceInLeft {
   0% {
      opacity: 0;
      transform: translateX(-100px);
   }
   60% {
      opacity: 1;
      transform: translateX(40px);
   }
   80% {
      transform: translateX(-10px);
   }
   100% {
      transform: translateX(0);
   }
}

/*.body-wrapper > .content > .body h2.subtitle::after
{
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgba(0,0,0,0.1);
  position: absolute;
  top: 50%;
  margin-left: 6px;
}*/

.body-wrapper > .content > .footer
{
  height: 32px;
  min-height: 32px;
  color: #7e8488;
  font-weight: 100;
  border-top: 1px solid rgba(0,0,0,0.1);
  background-color: #f6f8f9;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
