* {
	margin: 1;
	padding: 1;
	box-sizing: border-box;
}

a, a:visited, a:hover, a:active {
    color: inherit;
}

body {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #27272b;
	font-family: 'Roboto', sans-serif;
	border: 1px solid #ffadad; /* Толщина, стильи цвет рамки */
	padding: 50px; /* Отсступ от рамки */
	border-color: #36363b;
	border-radius: 12px;
	color: #2e1515e5;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
}

button {
	border: none;
	outline: none;
	background: #9db8fac9;
	border: 2px solid #9db8fac9;
	padding: 6px 15px;
	color: #000000;
	font-size: 20px;
	font-weight: 900;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
	position: relative;
	z-index: 1;
	border-radius: 9px;
	transition: .2s linear;
}

button:hover {
    box-shadow: 0 0 0 1px #7499f7c9, 0 0 0 1px #7499f7c9;
}

button2 {
	border: none;
	outline: none;
	background: #fff06e;
	border: 2px solid #ebd831;
	padding: 6px 15px;
	color: #000000;
	font-size: 20px;
	font-weight: 900;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
	position: relative;
	left: 332px;
	z-index: 1;
	border-radius: 9px;
	transition: .2s linear;
}


button2:hover {
    box-shadow: 0 0 0 1px #ebd831, 0 0 0 1px #ebd831;
}

.wrapper {
	pointer-events: none;
	border: 2px solid #36363b;
	border-radius: 5px;
	border-width: 2px;
	position: absolute;
	top: 200px;
	margin-left: -250px;
	left: -270px;
  	display: grid;
  	grid-template-columns: 1fr 10px;
  	grid-gap: 10px;
  	grid-auto-rows: minmax(100px, auto);
}

.border-style-solid {
	border: 2px solid #ffadad; /* Толщина, стильи цвет рамки */
	padding: 25px; /* Отсступ от рамки */
	border-color: #ff7a7a72;
	background-color: #ffa8a863;
	border-radius: 12px;
	color: #2e1515e5;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	/*border-left: 6px solid #cc5c5cce; слева отспуп*/
}

.left-image { /* Иконка воскл. */
  float: left; /* Выравнивание по левому краю */
  margin-right: 10px; /* Отступ справа от изображения */
  width: 60px; /* Задайте ширину изображения */
  height: 60px; /* Задайте высоту изображения */
}

.info {
  float: right; /* Выравнивание по левому краю */
  margin-right: -15px; /* Отступ справа от изображения */
  width: 20px; /* Задайте ширину изображения */
  height: 20px; /* Задайте высоту изображения */
  margin-top: -18px;
}

.tooltiped {
  position: relative;
}

.tooltiped .tooltip {
  position: absolute;
  left: 105%; top: -30px;
  visibility: hidden;
  opacity: 0;
  transition: ease .5s;
}
.tooltiped:hover .tooltip {
  padding-top: 2em;
  visibility: visible;
  opacity: 1;
}
.tooltiped .tooltip .tooltip-content {
  max-width: 500px;
  padding: 0.5em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  background: #fff9c28f;
  border: 2px solid #ffadad; /* Толщина, стильи цвет рамки */
	padding: 25px; /* Отсступ от рамки */
	border-color: #ffe60567;
	background-color: #ffe60567;
	border-radius: 12px;
	width: 300px;
	color: #2e1515e5;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
}
.tooltiped .tooltip .tooltip-content,
.tooltiped .tooltip .tooltip-content a {
  color: #fff;
}

.warning {
	padding: 10px; /* Отсступ от рамки */
	border-color: #ff7a7a72;
	background-color: #ffa8a863;
	border-radius: 10px;
	color: #000000;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
  border-left: 6px solid #cc5c5cce; /*слева отспуп*/
}

.success {
		padding: 10px; /* Отсступ от рамки */
		border-color: #ff7a7a72;
		background-color: #ddffddc7;
		border-radius: 10px;
		color: #000000;
		font-size: 15px;
		font-family: 'Roboto', sans-serif;
  	border-left: 6px solid #588758c7; /*слева отспуп*/
}

.infonotify {
    background-color: #bfe0ff;
    border-left: 6px solid #7ebaf2;
    padding: 10px; /* Отсступ от рамки */
		border-color: #7ebaf2;
		border-radius: 10px;
		color: #000000;
		font-size: 15px;
		font-family: 'Roboto', sans-serif;
}

.online {background-color: #4CAF50; /*зеленый цвет в квадрате*/
	position: absolute;
  left: -61%; top: 425px;
} 