body {
	font-family: Calibri, sans-serif;
	background: #e3e3e3;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	box-shadow: inset 0 -479px 150px -300px rgba(0, 0, 0, 0.26);
}

.button-login {
	width: 115px;
	height: 37px;
	font-size: 14px;
	font-family: Calibri, sans-serif;
	border-radius: 5px;
	border: 1px solid;
	border-color: #9e9e9e;
	background-color: #f9f9f9;
	box-shadow: inset 0px -56px 12px -39px rgba(167, 167, 167, 0.49);
	color: #6c6c6cb0;
	margin-top: 10px;
	margin-right: 10px;
}

.button-login:hover {
	filter: brightness(0.9);
	cursor: pointer;
}

.button-login:active {
	box-shadow: inset 0px 56px 12px -38px rgba(167, 167, 167, 0.49);
	transform: scale(0.94);
}

.minitext-login {
	font-size: 17px;
	margin-top: 3px;
	margin-right: 9px;
	white-space: nowrap;
	color: #aaaaaa87;
}

.div-login {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-left: auto;
	width: max-content;
}

.box-login {
	display: flex;
	padding: 11px;
}

.menu-site {
	display: flex;
	justify-content: center;
	gap: 22px;
	width: max-content;
	margin: 0 auto;
	position: absolute;
	top: 28px;
	right: 0;
	left: 0;
}

@media screen and (max-width: 1030px) {
	.menu-button-block {
		justify-content: flex-start !important;
		height: auto !important;
		padding-top: 125px !important;
		gap: 23px !important;
	}
	
	.menu-site {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		
	}
	
	.menu-item {
		margin-top: -2px !important;
		display: block;
	}
}

@media screen and (max-width: 1199px) and (max-width: 1200px) {
	.menu-site {
		display: flex !important;
		position: absolute !important;
		transform: translateX(calc(-50% + 100px)) !important;
		margin: 0 !important;
		left: 525px !important;
		right: auto !important;
		width: max-content !important;
	}
	
	.menu-button-block {
		justify-content: flex-start !important;
		height: auto !important;
		padding-top: 125px !important;
		gap: 23px !important;
	}
	
	.menu-item {
		margin-top: -2px !important;
		display: block;
	}
}

@media screen and (max-width: 1400px) {
	.menu-button-block {
		justify-content: flex-start !important;
		height: auto !important;
		padding-top: 116px !important;
		gap: 23px !important;
	}
}

@media screen and (max-width: 1024px) {
	.menu-item {
		margin-top: -2px !important;
		display: block;
	}
}

.button-menu {
	font-size: 26px;
	font-family: Segoe Print, sans-serif;
	text-decoration: none;
	color: #578bff;
}

.button-menu:hover {
	text-decoration: underline;
	color: #00aaff;
}

.button-menu:active {
	transform: scale(0.88);
}

.wand {
	width: 2px;
	height: 34px;
	background-color: #aaaaaa47;
	align-self: center;
}

.button-settings {
	width: 50px;
	height: 49px;
	border-radius: 5px;
	border: 1px solid;
	border-color: #9e9e9e;
	background-color: #f9f9f9;
	box-shadow: inset 0px -62px 16px -39px rgba(167, 167, 167, 0.49);
	color: #6c6c6cb0;
	position: absolute;
	top: 24px;
	left: 27px;
	z-index: 9999 !important;
}

.button-settings:hover {
	filter: brightness(0.9);
	cursor: pointer;
}

.button-settings:active {
	box-shadow: inset 0px 62px 16px -39px rgba(167, 167, 167, 0.49);
	transform: scale(0.94);
}

.png-settings {
	width: 36px;
	height: 32px;
	display: block;
	object-fit: contain;
}

.logo-onegame {
	height: 56px;
	width: auto;
	object-fit: contain;
	display: block;
}

.logo-onegame:hover {
	filter: brightness(80%);
	cursor: pointer;
}

.img-bob {
	height: 56px;
	margin-right: 15px;
	width: auto;
	object-fit: contain;
	display: block;
	cursor: pointer;
}

.header-block {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: max-content;
	position: absolute;
	top: 21px;
	left: 144px;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: #ebebeb;
}

.block-menu {
	background: #ededed;
	position: fixed;
	top: 0;
	left: 0;
	width: 360px;
	height: 100vh;
	z-index: 5000;
	transform: translateX(-100%);
	transition: transform 0.3s linear;
}

.block-menu.open {
	transform: translateX(0);
}

.block-site {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(35, 35, 35, 0.17);
	z-index: 4000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s linear, visibility 0.3s;
}

.block-site.open {
	opacity: 1;
	visibility: visible;
}

.text-menu {
	position: fixed;
	top: 19px;
	left: 145px;
	font-family: Franklin Gothic Medium, sans-serif;
	font-weight: bold;
	font-size: 50px;
	color: #c9c9c961;
	z-index: 6000;
	pointer-events: none;
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.3s linear, transform 0.3s linear;
}

.text-menu.open {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 0s;
}

.menu-button-block {
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	height:85%;
	padding: 25px;
	gap: 22px;
}

.block-button {
	font-size: 25px;
	padding-left: 47px;
	font-family: Calibri, sans-serif;
	text-decoration: none;
	color: #bdbdbd;
}

.block-button:hover {
	text-decoration: underline;
	color: #78c0ff;
}

.block-button:active {
	transform: scale(0.93);
}

.text-error-account {
	position: absolute;
	color: #ff0000cc;
	font-size: 14px;
	font-weight: bold;
	margin-top: -24px;
	margin-left: 3px;
	display: none;
}

.indentation {
	margin-bottom: -15px;
}

.line-site {
	height: 2px;
	background-color: #b9b9b930;
	width: 100%;
	position: relative;
	top: -17px;
}

.menu-item {
	position: relative;
	display: inline-block;
}

.box-block {
	position: absolute;
	bottom: -488px;
	left: 50%;
	transform: translateX(-50%);
	width: 295px;
	height: 402px;
	border: 1px solid #898989;
	border-radius: 15px 15px 0 0;
	background: #ffffff;
	box-shadow: inset 0px -145px 79px -79px rgba(119, 119, 119, 0.59);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	overflow: hidden;
}

.box-block-elements {
	padding: 20px;
}

.button-search-icon {
	width: 35px;
	height: 35px;
	border-radius: 5px;
	border: 1px solid;
	border-color: #9e9e9e;
	background-color: #f9f9f9;
	box-shadow: inset 0px -56px 9px -39px rgba(167, 167, 167, 0.49);
	color: #6c6c6cb0;
	position: absolute;
	top: 24px;
	left: 27px;
	z-index: 9999 !important;
	display: flex;
	margin-left: 191px;
	margin-top: -4px;
}

.button-search-icon:hover {
	filter: brightness(0.9);
	cursor: pointer;
}

.button-search-icon:active {
	box-shadow: inset 0px -56px 9px -39px rgba(167, 167, 167, 0.49);
	transform: scale(0.94);
}

.search-icon {
	width: 28px;
	height: 29px;
	display: flex;
	margin-left: -3px;
	margin-top: 1px;
	object-fit: contain;
}

.search-find {
	border-radius: 5px;
	border: 1px solid #b2b2b291;
	font-family: Calibri, sans-serif;
	font-size: 16px;
	padding: 7px;
	width: fit-content;
	flex-shrink: 1;
	margin-left: 16px;
}

.search-find:focus {
	outline: none;
	border: 1px solid #189efeb5;
}

.search-find.limit-reached {
	border: 1px solid #ff2222a8 !important;
}

.line-site-02 {
	height: 2px;
	background: #bdbdbd3d;
	width: 250px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 13px;
}

.block-no-list {
	display: none;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-top: -15px;
	flex-shrink: 0;
}

.no-list-img {
	margin-top: 24px;
}

.no-list-text {
	font-size: 22px;
	margin-top: -13px;
	color: #8c8c8c8f;
}

.no-list-text-02 {
	font-size: 14px;
	margin-top: 3px;
	color: #a2a2a27d;
}

.block-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	width: 100%;
	margin-top: -45px;
}

.loading-img {
	width: 115px;
	opacity: 0.3;
}

.loading-text {
	font-size: 17px;
	color: #a7a7a791;
	margin-top: 13px;
}

.main-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.select-container {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	position: relative;
	cursor: pointer;
}

.select-header {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 6px;
	border: 1px solid black;
	background: #fff;
	z-index: 2;
}

.flag-border {
	display: flex;
	border: 1px solid #58585899;
}

.flag-border:hover {
	border-color: #2581fb;
}

.flag-border:active {
	transform: scale(0.87);
}

.dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 19px;
	padding: 6px;
	border: 1px solid #000;
	background: white;
	border-top: none;
	z-index: 10;
}

.dropdown.open {
	display: flex !important;
}

.option {
	display: flex;
	justify-content: center;
	cursor: pointer;
}