* {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  word-break: break-word;
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

hr {
  border: 1px solid #F3F3F4;
  margin: 20px 0;
  width: 100%;
}

body {
  border: none;
  margin: 0;
  padding: 0;
  line-height: inherit;
  background-color: #FFFFFF;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;

  /* for scroll */
  width:100vw;
  overflow-x:hidden;
}

::-webkit-scrollbar {
  position: absolute;
  width: 6px;
  height: 200px;
  left: 0px;
  top: 0px;

} 

::-webkit-scrollbar-thumb {
  background: rgba(90, 95, 109, 0.4); /* цвет фона у дорожки */
  border-radius: 100px; /* скругление углов */

}

@media (max-width: 768px){
  ::-webkit-scrollbar {
    display: none;
  }

  table {
    width: 100% !important;
  }
}
