body {
    position: relative;
    margin: 0;
    padding: 0;
}

body:after {
    content: "В разработке";
    position: absolute;
    left: -100px;
    top: 40px;
    width: auto;
    z-index: 100000000;
    background: rgb(220, 0, 0);
    border: 1px solid rgba(255,0,0, 0.5);
    box-shadow: 0 0 10px black, inset 0 0 20px rgba(0,0,0,0.5);
    font-family: 'Comfortaa', cursive;
    color: white;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.5);
    padding: 7px 100px 5px 100px;
    font-size: 14px;
    transform: rotateZ(-45deg);
}

div { box-sizing: border-box;}

#vk_groups {
	position: fixed;
	right: 5px;
	top: 5px;
	width: 250px;
	height: 250px;
}

.APP {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #2e3436;
	background-image: url(../img/bg.png);
	margin: 0;
	padding: 0;
	user-select: none;
	font-family: 'Comfortaa', cursive;
}

.MP {
	position: absolute;
	left: 100px;
	top: 100px;
	font-size: 20px;
	color: white;
	text-shadow: 0 0 10px #4f9ad5, 0 0 3px #4f9ad5;
	z-index: 1000;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: rgba(0,0,0,0);
}

::-webkit-scrollbar
{
	width: 6px;
	height: 6px;
	background-color: rgba(0,0,0,0);
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #4f9ad5;
}

.Frame {
	position: absolute;
	display: none;
	top: 100px;
	left: calc(50vw - 25%);
	width: 50vw;
	border-radius: 5px;
	background: rgba(0,0,0,0.8);
	box-shadow: 0 5px 10px 2px rgba(0,0,0,1);
	z-index: 9999;
	font-family: 'Comfortaa', cursive;
	padding: 5px 15px 15px 15px;
}

.BG.Frame:before {
	content: "";
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.7);
	z-index: 0;
}

.Frame > .Header {
	position: relative;
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	text-shadow: 0 0 10px #4f9ad5, 0 0 3px #4f9ad5;
	padding: 10px;
}

.Frame > .Header > .title, .Frame > .Header > .close {
	font-size: 12px;
	text-shadow: 0 0 10px #4f9ad5, 0 0 3px #4f9ad5;
	color: #fff;
}

.Frame .Header .close { cursor: pointer; }
.Frame .Header .close:hover { color: #4f9ad5 }

.Frame .Body {
	position: relative;
	z-index: 9999;
}

.Frame.GammasFrame .Body {
	display: flex;
	height: 0;
	transition: all 0.5s;
	overflow: hidden;	
}

.Frame.GammasFrame:hover .Body {
	height: 100px;
}

.Frame .TabsList {
	display: flex;
	width: 100%;
	border-bottom: 2px solid rgba(255,255,255,0.2);
	padding: 0 0 5px 0;
	justify-content: space-between;
}

.Frame .TabsList .TabItem {
	position: relative;
	text-align: center;
	width: calc(100% / 12);
	--padding: 0 20px;
	font-size: 14px;
	text-shadow: 0 0 10px #4f9ad5, 0 0 3px #4f9ad5;
	color: #4f9ad5;
	cursor: pointer;
}
.Frame .TabsList .TabItem.Active { color: #fff }
.Frame .TabsList .TabItem.Active:after {
	content: "";
	position: absolute;
	display: block;
	bottom: -7px;
	width: 100%;
	height: 2px;
	background: #fff;
	box-shadow: 0 0 10px #4f9ad5, 0 0 3px #4f9ad5, 0 0 3px #4f9ad5, 0 0 3px #4f9ad5;
	z-index: 1;
}
.Frame:hover .Body .Gamma {
	display: flex;
	min-width: fit-content;
	max-width: 64px;
	height: 64px;
	margin: 5px;
	font-size: 80%;
	text-shadow: 0 0 10px #4f9ad5;
	color: #4f9ad5;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 3px;
	box-sizing: border-box;
	border-radius: 5px;
}
.Frame:hover .Body .Gamma:hover {
	background: rgba(255,255,255,0.2);
}
.Frame:hover .Body .Gamma.Active {
	background: rgba(255,255,255,0.2);
	border-radius: 5px;
	box-shadow: 0 0 5px #fff;
	color: #fff;
}

.GammaVariantFrame {
	position: absolute;
	display: flex;
	width: 60px;
	top: 65%;
	color: white;
	left: calc(50vw - 30px);
	justify-content: space-between;
	align-items: center;
}

.GammaVariantFrame > .Variant {
	display: flex;
	width: 25px;
	height: 25px;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	font-family: 'PT Sans Narrow', sans-serif;
	color: #000;
	text-shadow: 0 1px 1px #fff;
	border-radius: 25px;
	box-shadow: 0 0 5px 1px black;
	background: url(../img/white.png);
	cursor: pointer;
	z-index: 1000;
}

.GammaVariantFrame > .Variant.active {
	background: url(../img/note.png);
}



