/* Личный стиль сайта */
body {
	background-color: blueviolet;
}

.xportal-menu {
	list-style: none;
	margin: 40px 0 5px;
	padding: 25px 0 5px;
	text-align: center;
	background: white;
}

/* Кнопка скопировать IP */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Скопировать IP */
input {
	width: 100%;
	padding: 12px 20px;
	box-sizing: border-box;
	border: 2px solid red;
	background-color: #3CBC8D;
	color: white;
}

.ip {
	display: inline-block;
	box-sizing: border-box;
	padding: 0 16px;
	margin: 0 15px 15px 0;
	outline: none;
	border: none;
	border-radius: 4px;
	height: 30px;
	line-height: 30px;
	font-size: 12.5px;
	font-weight: normal;
	text-decoration: none;
	vertical-align: top;
	color: #55677d;
	background-color: #dfe6ed;
	cursor: pointer;
	user-select: none;
	appearance: none;
	touch-action: manipulation;
	overflow: hidden;
}

.ip:focus-visible {
	box-shadow: 0 0 0 3px lightskyblue;
}

.ip:hover {
	opacity: 0.88;
}

.ip:active {
	line-height: 32px;
}

.ip:disabled {
	pointer-events: none;
	opacity: 0.65;
}
 