:root {
	--cyan400: #00c1c4;
	--white: #ffffff;
	--grey100:  #f5f5f5;
	--grey300:  #e0e0e0;
}

body {
	font-family: "Roboto", sans-serif;
	margin: 0;
	padding: 0;
	background: #F9F9F9;
}

.web-screen-relevant {
	display: none!important;	
}

.main {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
	box-sizing: border-box;
}

.main-container {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white);
	box-shadow: 0px 2px 13px 2px rgba(34,60,80,.05);
	width: 100%;
	max-width: 1700px;
	height: 900px;
	box-sizing: border-box;
	border-radius: 30px;
	padding: 50px;
}

.phone {
	display: flex;
	overflow: hidden auto;
	border-radius: 39px;
	--app-color-accent: #666666;
	box-shadow: 0 0 0 5px #151515, 0 0 0 6px var(--app-color-accent), 0 -7.5px 1.5px rgba(255, 255, 255, 0.4), 7.5px 0 1.5px rgba(255, 255, 255, 0.25), -7.5px 0 1.5px rgba(255, 255, 255, 0.4), 0 7.5px 1.5px rgba(255, 255, 255, 0.25), 0 0 0 9px var(--app-color-accent), 6px 8px 16px rgba(0, 0, 0, 0.25), 20px 32px 72px rgba(0, 0, 0, 0.2);
	width: 330px;
	height: 680px;
}

.phone-screen {
	width: 100%;
	position: relative;
	display: flex;
	flex-flow: column;
	overflow: hidden;
}

.phone-header {
	width: 100%;
	z-index: 20;
}

.phone-status-bar {
	position: relative;
}

.phone-status-bar__img {
	box-sizing: border-box;
	width: 100%;
	padding: 0px 8px 0px 2px;
	margin-bottom: -4px;
}

.phone-nav-bar {
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding-inline: 16px;
	max-height: 100%;
	min-height: 48px;
	-webkit-box-align: center;
	align-items: center;
	border-bottom: 1px solid var(--grey300);
	overflow-y: auto;
	background: var(--white);
}

.phone-nav-bar__container {
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	flex: 1 1 0%;
}

.phone-nav-bar__app-name {
	margin-left: 10px;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	flex: 1 1 0%;
}

.phone-nav-bar__back {
	padding: 0;
}

.phone-nav-bar__home,
.phone-nav-bar__back {
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: none;
	border: none;
	width: 36px;
	height: 36px;
	margin: 0px;
	outline: none;
	cursor: pointer;
	transition: background-color 0.2s;
}

.phone-nav-bar__home:hover {
	background-color: rgba(158, 158, 158, 0.2);
}

.phone-content {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	position: relative;
}


.loader {
	width: 50px;
	height: 50px;
	border: 3px solid var(--cyan400);
	border-top: 3px solid var(--grey100);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loader-container {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
	background-color: var(--white);
}

.content-container {
    width: 100%;
    height: 100%;
}

@media (max-width: 1580px) {
	.main-container {
		height: 830px;
		padding: 30px;
    }
}


@media (max-width: 768px) {
	.main {
		min-height: initial;
		padding: initial;
		box-sizing: border-box;
	}

	.main-container {
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: initial;
		box-shadow: initial;
		width: 100%;
		max-width: inherit;
		height: initial;
		box-sizing: border-box;
		border-radius: initial;
		padding: initial;
	}

	.phone {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100vh;
		overflow: hidden;
		box-shadow: initial;
		border-radius: initial;
	}

	.phone-screen {
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	.phone-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background-color: var(--white);
	}

	.phone-content {
		flex-grow: 1;
		overflow-y: auto;
		margin-top: 48px;
	}

	.phone-status-bar {
		display: none;
	}
}

/* */
.block_general___main_block__ {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scrollbar-gutter: stable;
}

.block_general___main_block__::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.scrollbar {
  position: absolute;
  top: 0;
  right: 2px;
  bottom: 0;
  width: 4px;
  background: transparent;
  pointer-events: none;
}

.thumb {
  position: absolute;
  top: 0;
  width: 100%;
  height: 40px;
  background: rgba(128, 128, 128, 0.6);
  border-radius: 3px;
  pointer-events: auto;
  cursor: pointer;
  z-index: 999;
}
/* */


/*
div.block_general___main_block__ {
  scrollbar-width: thin;
}
div.block_general___main_block__::-webkit-scrollbar {
  width: 8px;
}
*/