img {
	-webkit-user-drag: none;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.abs {
	position: absolute;
	top: 0;
	left: 0;
}

.modal-animate {
	transition: 0.5s;
}

.modal-animate-el {
	transition: 0.5s;
	transform: translateY(300%);
}

.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flexStart {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.flexColumn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.flexJustStart {
	display: flex;
	justify-content: flex-start;
}

.flexJustEnd {
	display: flex;
	justify-content: flex-end;
}

.flexSpace {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.gridRowStart {
	display: grid;
	grid-row-gap: 16px;
}

.container {
	max-width: 952px;
}

.hundred {
	width: 100%;
	height: 100%;
}

.icon {
	width: 18px;
	height: 18px;
}

body {
	color: white;
	min-height: 100vh;
	font-family: 'GT Walsheim Pro';
	overflow-y: auto;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;
}

main {
	width: 100%;
	flex: 1;
}

.grid-circles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 16px;
}

.header {
	width: 100%;
	background: rgba(16, 16, 16, 0.82);
	backdrop-filter: blur(42px);
	-webkit-backdrop-filter: blur(42px);
	padding: 32px 15px;
	position: fixed;
	top: 0;
	z-index: 100;
}

.header_menu-abs {
	overflow: hidden;
	transition: 1s;
	opacity: 0;
	display: flex;
	justify-content: flex-start;
	height: 0;
	width: 100%;
	left: 0;
}

.header_menu-abs a {
	margin-right: 0 !important;
	font-size: 16px;
	line-height: 18px;
}

.header_menu-abs nav {
	transition: 1s;
	margin-top: 64px;
	display: grid;
	justify-items: center;
	align-items: center;
	grid-template-rows: 18px;
	grid-row-gap: 64px;
	height: fit-content;

}



.header-mob__user {
	display: none;
	height: 48px;
	width: 48px;
	background: #242424;
	border-radius: 50%;

}

.header-container {
	align-items: center;
	max-width: 952px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.header_menu a,
.header_menu-abs a {
	margin-right: 64px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	transition: all .30s;
}

.header_menu a.active {
	color: #ea4f3d;
}

.header_menu a:last-child {
	margin-right: 0;
}

.header_menu a:hover:not(.header_menu a.active) {
	color: #fff;
	transition: all .30s;
}

.header_login_btns {
	display: flex;
}

.header_login_download a {
	position: relative;
	transition: all .30s;
}

.header_login_download .download_btn_helper {
	position: absolute;
	bottom: -36px;
	left: -46px;
	padding: 4px 8px;
	background: #EA4F3D;
	box-shadow: 0px 8px 16px rgba(234, 79, 61, 0.16);
	border-radius: 4px;
	min-width: 116px;
	font-size: 12px;
	line-height: 14px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	transition: all .30s;
}

.header_login_download .download_btn_helper:before {
	content: '';
	position: absolute;
	top: -8px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #EA4F3D;
}

.header_login_download a>svg rect,
.header_login_download a>svg path {
	transition: all .30s;
}

.header_login_download a:hover>svg rect {
	fill: #fff;
	transition: all .30s;
}

.header_login_download a:hover>svg path {
	stroke: #000;
	transition: all .30s;
}

.header_login_download a:hover .download_btn_helper {
	visibility: visible;
	opacity: 1;
	transition: all .30s;
	bottom: -46px;
}

.header_login_button button {
	margin-left: 8px;
	background: #EA4F3D;
	border-radius: 11.5px;
	padding: 5px 12px;
	border: none;
	outline: none;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .30s;
}

.header_login_button button:hover {
	background: #FF8D80;
	transition: all .30s;
}

.header_user_inlogin {
	display: flex;
	align-items: center;
	padding: 4px 8px 4px 4px;
	margin-left: 8px;
	background: #242424;
	border-radius: 11.5px;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: 2px;
	transition: all .30s;
}

.header_user_inlogin img {
	height: 16px;
	width: 16px;
	border-radius: 50%;
	margin-right: 4px;
}

.header_user_inlogin:hover {
	background: #EA4F3D;
	transition: all .30s;
}

.footer {

	width: 100%;
	padding: 24px 15px 30px;
	background: #090909;
}

.footer_container {
	max-width: 952px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer_menu {
	display: flex;
	width: 526px;
	justify-content: space-between;
	align-items: center;
}

.footer_menu a {
	color: rgba(255, 255, 255, 0.45);
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .30s;
}



.footer_menu a:hover {
	color: #fff;
	transition: all .30s;
}

.footer_social a {
	display: inline-block;
	height: 28px;
	width: 28px;
	background: #242424;
	text-align: center;
	border-radius: 50%;
	line-height: 28px;
	margin-right: 16px;
	transition: all .30s;
}

.footer_social a:first-child:hover {
	background: #2789F6;
	transition: all .30s;
}

.footer_social a:last-child:hover {
	background: #7289da;
	transition: all .30s;
}

.input input:focus {
	border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.input:focus-within span {
	color: #FFFFFF !important;
}

.input {
	width: 100%;
}

.input input {

	font-size: 16px;
	line-height: 18px;
	color: #FFFFFF;
	padding: 6px 0;
	border: none;
	outline: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-sizing: border-box;
	background: none;
	width: 100%;
}

.input span {

	font-size: 12px;
	line-height: 14px;
	color: rgba(255, 255, 255, 0.45);
}


/*  modals */
.account-modals {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	background: rgba(16, 16, 16, 0.9);
}

.modals-el {
	position: relative;
	box-sizing: border-box;
	background: #191919;
	border-radius: 19px;
	padding: 32px ;
}

.modals-el-content {
	margin-top: -15px;
	width: 100%;
	height: 100%;
}

.modals-title {
	font-weight: bold;
	font-size: 24px;
	line-height: 27px;
}

.modals-close {
	min-height: 30px;
	transition: 0.2s;
	cursor: pointer;
	width: 30px;
	height: 30px;
	background: #242424;
	border-radius: 50%;
	align-self: flex-end;
	position: absolute;
	top: 16px;
	right: 16px;
}
.logo-span{
	font-family: GT Walsheim Pro;
	font-style: italic;
font-size: 12px;
line-height: 14px;
letter-spacing: 0.1em;
}
.modals-close:hover {
	background: white;
}

.modals-close:hover img {
	filter: invert(1);
}

.modals-close img {
	position: relative;
}
.modals-close-restore {
	min-height: 30px;
	transition: 0.2s;
	cursor: pointer;
	width: 30px;
	height: 30px;
	background: #242424;
	border-radius: 50%;
	align-self: flex-end;
	position: absolute;
	top: 16px;
	right: 16px;
}

.modals-close-restore:hover {
	background: white;
}

.modals-close-restore:hover img {
	filter: invert(1);
}

.modals-close-restore img {
	position: relative;
}

.modals-btn {
	height: 46px;
	min-height: 46px;
	width: 100%;
	background: #EA4F3D;
	box-shadow: 0px 2px 8px rgba(234, 79, 61, 0.24), 0px 14px 32px -16px rgba(234, 79, 61, 0.64);
	border-radius: 320px;
	font-weight: bold;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 0.1em;
	margin-top: auto;

}
.maxpad{
	padding: 16px;
}
.colorPicker {
	padding: 16px 0px 32px 0px ;
}

.modals-subtitle {
	font-size: 16px;
	line-height: 18px;
	color: rgba(255, 255, 255, 0.7);

}

.notification {
	padding: 8px 20px;
	box-sizing: border-box;
	border-radius: 35px;
	font-weight: 500;
	font-size: 18px;
	line-height: 21px;
}

.notif-green {
	background: rgba(101, 196, 102, 0.5);
	border: 2px solid #65C466;
	filter: drop-shadow(0px 3px 10px rgba(101, 196, 102, 0.75));
}

.notif-red {
	background: rgba(218, 0, 0, 0.5);
	border: 2px solid #DA0000;
	filter: drop-shadow(0px 3px 10px rgba(218, 0, 0, 0.75));
}