* {
  box-sizing: border-box;
  font-family: sans-serif;
  color: #d2d2d2; }

html {
  height: 100%;
  min-height: 100%; }

body {
  margin: 0 auto;
  background: #151c21;
  height: 100%;
  min-height: 100%; }

::-webkit-scrollbar {
  width: 6px;
  background: #455865; }

::-webkit-scrollbar-thumb {
  transition: 0.3s;
  border-radius: 0px;
  background: #7895a8; }
  ::-webkit-scrollbar-thumb:hover {
    background: #7e9aac; }

::-webkit-scrollbar-corner {
  margin: 2px;
  background: transparent; }

.app {
  margin: 0 auto;
  height: 100%; }

.window {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  margin-top: 10px;
  width: 1200px;
  height: 700px;
  background: #262f36;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column; }
  .window .window-title {
    height: 30px;
    background: #44545e;
    display: flex;
    align-items: center;
    padding-left: 7px;
    border-bottom: 1px solid #1a2228; }
  .window .window-content {
    background: #262f36;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto; }

#MessengerContentWrapper {
  height: 100%;
  overflow: hidden;
  display: flex; }
  #MessengerContentWrapper .channelsList {
    width: 400px;
    min-width: 400px;
    overflow-y: auto; }
    #MessengerContentWrapper .channelsList .channel {
      height: 70px;
      border-bottom: 1px solid #151c21;
      margin: 0;
      padding: 7px; }
  #MessengerContentWrapper .chatView {
    width: 100%;
    background: #27323a;
    display: flex;
    flex-direction: column; }
    #MessengerContentWrapper .chatView .messagesWrapper {
      height: 100%;
      overflow-y: auto;
      overflow-x: hidden; }
      #MessengerContentWrapper .chatView .messagesWrapper .message {
        margin: 0;
        padding: 10px 15px; }
    #MessengerContentWrapper .chatView .inputWrapper {
      min-height: 40px; }
      #MessengerContentWrapper .chatView .inputWrapper input {
        color: white;
        background: #2d3840;
        border: 0;
        outline: none;
        display: block;
        width: 100%;
        height: 100%;
        padding: 3px 7px; }

#GameWin {
  width: 100%;
  height: 600px;
  background: #576875; }

#chat {
  padding: 0 5px;
  border: 0; }

#input {
  background: #2d3840;
  color: white;
  outline: none;
  padding: 12px 7px;
  border: 0;
  font-size: 16px; }
