@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
	--bg: #23262F;
	--color: #ffffff;
	--color-dark: #494b55;
	--bg-form: ;
	--btn-bg: #393B43;
	--btn-bg-hover: #494b53;
	--btn-bg-2: #FDDD2D;
	--btn-bg-2-hover: #c9b025;
	--footer-btn: #4C4E55;
	--footer-btn-hover: #61636A;
	--input-bg: rgb(0 0 0 / 21%);
	--input-span: rgb(255 255 255 / 5%);
	--input-span-color: #fffffff2;
	--input-check: #a1a1a1e8;
	--input-focus: rgb(0 0 0 / 41%);
	--shadow: #0000002b;
	--logo: #ffffff;
	--logo-hover: #ffffffb8;
	--service-hover: #4d5059;
	--select-bg: rgb(45 47 53);
	--rez-bg: #313339;
	--rez-btn: #393b43;
	--rez-btn-hover: #484b55;
}

body.light {
	--bg: #ffffff;
	--color: #535252;
	--color-dark: #ffffff;
	--bg-form: ;
	--btn-bg: #F5F5F5;
	--btn-bg-hover: #f1f1f1;
	--btn-bg-2: #407BFF;
	--btn-bg-2-hover: #96B6FF;
	--footer-btn: #ffffff;
	--footer-btn-hover: #ebebeb;
	--input-bg: rgb(255 255 255);
	--input-span: rgb(255 255 255);
	--input-span-color: #232222b8;
	--input-check: #23222261;
	--input-focus: rgb(255 255 255 / 41%);
	--shadow: #1f1f1f2b;
	--logo: #535252;
	--logo-hover: #535252c4;
	--service-hover: #e7e7e7;
	--select-bg: #ffffff;
	--rez-bg: #efefef;
	--rez-btn: #ffffff;
	--rez-btn-hover: #f3f4f5;
}

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
    font-family: "Rubik", serif;
}

html {
	font-family: "Rubik", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.5);
}

body {
    margin: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    justify-content: space-between;
}
body.scroll-locked {
    overflow: hidden
}

*::selection {
	background: var(--btn-bg-2);
	color: var(--color-dark);
}

body::-webkit-scrollbar {
    width: 0;
}

body.scroll-locked {
    overflow: hidden
}
button {
	background: transparent;
	border: none;
	color: var(--color);
	cursor: pointer;
	transition: .3s;
}
a {
	transition: .3s;
	text-decoration: none;
}
input, textarea {
	outline:none;
	resize: none;
}
input[type="number"] {
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	appearance: textfield;
}
 
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	display: none;
}
.shadow {
	box-shadow: 0 2px 2px var(--shadow);
}
.wrapper {
    width: 1250px;
    margin: 0 auto;
    flex: 1 0 auto;
}
.wrapper.result {
}
header {
    padding: 1.5rem 0rem;
}
header>.top-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
header>.top-menu>.logotype>a {
    display: block;
    color: var(--logo);
}
header>.top-menu>.logotype>a:hover {
	color: var(--logo-hover);
}
header>.top-menu>.logotype>a>svg {
    height: 2.4rem;
    width: 15rem;
}
header>.top-menu>ul {
    /* position: relative; */
    display: flex;
    align-items: center;
    gap: .7rem;
}
header>.top-menu>ul>li>button {
    display: flex;
    gap: .6rem;
    background: var(--btn-bg);
    padding: .6rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    align-items: center;
    color: var(--color);
}
header>.top-menu>ul>li>button>svg {
    width: 1.4rem;
    height: 1.4rem;
}
header>.top-menu>ul>li>button>span {
    height: 1.6rem;
    line-height: 1.6rem;
}
header>.top-menu>ul>li>button>.arrow {
    width: .8rem;
    height: .8rem;
    position: relative;
    top: 2px;
}
header>.top-menu>ul>li>button:hover {
	 background: var(--btn-bg-hover);
}
header>.top-menu>ul>li>[data-id="theme"] {
    border-radius: 50%;
    padding: .7rem .7rem;
}
header>.top-menu>ul>li>[data-id="theme"]>svg{
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
    top: 1px;
}
header>.top-menu>ul>li>[data-id="auth"] {
    background: var(--btn-bg-2);
    color: var(--color-dark);
    box-shadow: none;
    position: relative;
}
header>.top-menu>ul>li>[data-id="auth"]:hover {background: var(--btn-bg-2-hover);}
header>.top-menu>ul>li>[data-id="auth"]>.premium {
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: -12px;
    top: -12px;
    background: var(--btn-bg-hover);
    padding: .5rem;
    border-radius: 50%;
    color: var(--btn-bg-2);
}

header>.top-menu>ul>li.login.active .dropdown-menu.social {
	max-height: 500px;
    transition: max-height .2s ease-in-out;
}

header>.top-menu>ul>li:hover .dropdown-menu {
    max-height: 500px;
    transition: max-height .2s ease-in-out;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    max-height: 0;
    transition: max-height .2s ease-in-out;
    overflow: hidden;
    z-index: 9;
}
.dropdown-menu.show {
	max-height: 500px;
    transition: max-height .2s ease-in-out;
}
.dropdown-menu>div {
	margin-top: .5rem;
	background: var(--btn-bg);
	width: 100%;
	border-radius: 1.5rem;
	padding: 1rem;
	margin-bottom: 5px;
}

.dropdown-menu.social {
    width: 23rem;
}
.dropdown-menu.social>div>p {
    text-align: center;
    color: var(--color);
    padding-bottom: .5rem;
    line-height: 1.1rem;
}
.dropdown-menu.social>div>section {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-direction: row;
    padding-top: .5rem;
}
.dropdown-menu.social>div>section>a {
    display: flex;
    color: var(--color);
    padding: .7rem 1rem;
    background: var(--footer-btn);
    border-radius: 1.5rem;
    gap: .5rem;
    width: 100%;
    justify-content: center;
}
.dropdown-menu.social>div>section>a>svg {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    top: 2px;
}
.dropdown-menu.social>div>section>a:hover {
    background: var(--footer-btn-hover);
}
.dropdown-menu.social>div>.form-email {
	display: none;
    padding-top: 1rem;
}
.dropdown-menu.social>div>.form-email.show {
	display: block;
}
.dropdown-menu.social>div>.form-email>p {
    font-size: .9rem;
    line-height: 1.1rem;
    color: var(--color);
}
.dropdown-menu.social>div>.form-email>.form-group {
    width: 100%;
    padding: 1rem 0rem;
}
.dropdown-menu.social>div>.form-email>.form-group>lable {
    display: block;
    color: var(--color);
    padding-bottom: .2rem;
}
.dropdown-menu.social>div>.form-email>.form-group>.input>input {
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 2rem;
    border: 1px solid transparent;
    background: var(--input-bg);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color);
    transition: .3s;
}
.dropdown-menu.social>div>.form-email>.btn {
    display: flex;
    gap: .6rem;
    padding: .9rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    align-items: center;
    width: 100%;
    justify-content: center;
    background: var(--btn-bg-2);
    color: var(--color-dark);
}
.dropdown-menu.social>div>.form-email>.btn:hover {
	background: var(--btn-bg-2-hover);
}
.dropdown-menu.social>div>.form-email>.btn:disabled {
    background: var(--background-color);
    cursor: no-drop;
}
.dropdown-menu.menu {
    width: 75%;
}
.dropdown-menu.menu>div {
    padding: 1.5rem;
}
.dropdown-menu.menu>div>ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
}
.dropdown-menu.menu>div>ul>li>a {
    display: block;
    padding: 0.8rem;
    border-radius: 1.5rem;
}
.dropdown-menu.menu>div>ul>li>a:hover {
    background: var(--bg);
}
.dropdown-menu.menu>div>ul>li>a>.top {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-bottom: .5rem;
}
.dropdown-menu.menu>div>ul>li>a>.top>.svg {
    width: 2.5rem;
    height: 2.5rem;
}
.dropdown-menu.menu>div>ul>li>a>.top>.svg>svg {
    color: var(--btn-bg-2);
    padding: .5rem;
    border-radius: .5rem;
    background: var(--bg);
    width: 2.5rem;
    height: 2.5rem;
}
.dropdown-menu.menu>div>ul>li>a>.top>h1 {
    font-size: 1.1rem;
    color: var(--color);
    line-height: 1.2rem;
}
.dropdown-menu.menu>div>ul>li>a>p {
    color: var(--color);
    font-size: .8rem;
    line-height: 1.3rem;
}


.dropdown-menu.user {
    
}
.dropdown-menu.user>div {
    
display: flex;
    
flex-direction: column;
    
gap: .5rem;
}
.dropdown-menu.user>div>a {
    
color: var(--color);
    
display: flex;
    
align-items: center;
    
gap: .5rem;
    
background: var(--footer-btn);
    
padding: .5rem 1rem;
    
border-radius: 1rem;
    
width: max-content;
}
.dropdown-menu.user>div>a:hover {
    
background: var(--footer-btn-hover);
}
.dropdown-menu.user>div>a>svg {
    
width: 1.4rem;
    
height: 1.4rem;
}

footer {
	width: 1250px;
	margin: 0px auto 1rem auto;
	padding-top: 2rem;
}
.footer {
    background: var(--btn-bg);
    padding: .9rem 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer>.logotype>a {
    color: var(--logo);
    display: block;
}
.footer>.logotype>a>svg {
    height: 2.4rem;
    width: 13rem;
}
.footer>.logotype>a:hover {
    color: var(--logo-hover);
}
.footer>.center {
    position: relative;
    width: 100%;
    margin-left: 1rem;
    padding: .5rem 0rem .5rem 1rem;
}
.footer>.center:after {
	content: "";
	position: absolute;
	width: 1px;
	background: var(--color);
	height: 100%;
	opacity: .1;
	top: 0;
	left: 0;
}
.footer>.center>.menu {
	display: flex;
	gap: 1rem;
	padding-bottom: .2rem;
}
.footer>.center>.menu>a {
	color: var(--color);
	font-weight: 600;
}
.footer>.center>.menu>a:hover {
	opacity: .7;
}
.footer>.center>.copyright {
    font-size: .8rem;
    color: var(--color);
    font-weight: 500;
    opacity: .8;
}
.footer>.right {
	display: flex;
	align-items: flex-end;
	gap: 2rem;
}
.footer>.right>.contact {
    position: relative;
}
.footer>.right>.contact:hover .hidden {
	display: block;
}
.footer>.right>.contact>a {
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    padding: .6rem 1rem;
    background: var(--footer-btn);
    color: var(--color);
    border-radius: 1.5rem;
    font-weight: 600;
}
.footer>.right>.contact>a.copy::before {
	content: attr(data-title);
	position: absolute;
	bottom: 110%;
	right: 0;
	background: var(--btn-bg-2);
	padding: .2rem .5rem;
	color: var(--color-dark);
	border-radius: 1.5rem;
	font-size: .8rem;
	z-index: 3;
}

.footer>.right>.contact>a:hover {
	background: var(--footer-btn-hover);
}
.footer>.right>.contact>a>svg {
    width: 1.4rem;
    height: 1.4rem;
}
.footer>.right>.contact>.hidden {
    position: absolute;
    bottom: 100%;
    margin-bottom: .5rem;
    left: 0;
    padding: .7rem;
    border-radius: 1rem;
    background: var(--footer-btn);
    color: var(--color);
    display: none;
}
.footer>.right>.contact>.hidden>p {
    font-size: .8rem;
    line-height: 1.1rem;
    width: 300px;
}
.footer>.right>.share {
    display: grid;
    gap: .3rem;
}
.footer>.right>.share>p {
    white-space: nowrap;
    font-size: .9rem;
    color: var(--color);
}
.footer>.right>.share>.social-link {
    display: flex;
    gap: .5rem;
}
.footer>.right>.share>.social-link>a {
    padding: .6rem;
    background: var(--footer-btn);
    color: var(--color);
    border-radius: 50%;
}
.footer>.right>.share>.social-link>a:hover {
    background: var(--footer-btn-hover);
}
.footer>.right>.share>.social-link>a>svg {
    width: 1.4rem;
    height: 1.4rem;
}


.wrap-center {
    display: flex;
    gap: 2rem;
    padding-top: 5rem;
    justify-content: space-between;
}
.wrap-center.other {
    padding-top: 1rem;
    height: 720px;
}
.wrap-center>section {
    width: 790px;
}
.wrap-center>section>h1 {
    color: var(--color);
    font-size: 2.5rem;
    line-height: 3rem;
    padding-bottom: 2rem;
}
.wrap-center>section>p {
    color: var(--color);
    font-weight: 500;
    width: 70%;
    filter: brightness(75%);
}
.wrap-center>form {
	width: 420px;
	background: var(--btn-bg);
	padding: 1.5rem 2rem;
	border-radius: 1.5rem;
	color: var(--color);
	display: flex;
	flex-direction: column;
	height: max-content;
}
.wrap-center>form>h1 {
    color: var(--color);
    line-height: 1.5rem;
    font-size: 1.5rem;
    padding-bottom: .8rem;
}
.wrap-center>form>h1>span {
    font-size: .8rem;
    opacity: .5;
    font-weight: 400;
}
.wrap-center>[data-type="password"]>.grap-form, .wrap-center>[data-type="promocodes"]>.grap-form, .wrap-center>[data-type="name"]>.grap-form {
    display: grid;
    gap: .3rem;
    padding-bottom: .3rem;
}
.wrap-center>form>.name-category {
	padding-top: .4rem;
}
.wrap-center>form>.grap-form {
    display: grid;
    gap: 1.3rem;
    padding-bottom: 1.3rem;
    align-items: flex-end;
}
.wrap-center>form>.grap-form.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
}
.wrap-center>form>.grap-form.flex {
    gap: 1rem;
}
.wrap-center>form>.grap-checkbox {
    display: grid;
    gap: .9rem;
    padding-bottom: 1.3rem;
}
.wrap-center>[data-type="numbers"]>.grap-checkbox, .wrap-center>[data-type="number"]>.grap-checkbox {
    padding-top: 1rem;
}
.wrap-center>form>button {
    display: flex;
    gap: .6rem;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    align-items: center;
    width: 100%;
    justify-content: center;
    background: var(--btn-bg-2);
    color: var(--color-dark);
    box-shadow: none;
}
.wrap-center>[data-type="name"]>button {
    margin-top: .5rem;
}
.wrap-center>form>button:hover {
    background: var(--btn-bg-2-hover);
}
.form-group {}
.form-group>.inputRange {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    padding: .8rem 0 0.5rem 0;
    width: 100%;
}
.form-group>.inputRange::-webkit-slider-runnable-track {
	border-radius: .5rem;
	height: 12px;
	background-color: var(--input-bg);
	box-shadow: 0 2px 2px var(--shadow);
}
.form-group>.inputRange::-webkit-slider-thumb {
	background: var(--btn-bg-2);
	border-radius: .5rem;
	cursor: pointer;
	width:13px;
	height: 23px;
	-webkit-appearance: none;
	margin-top: -6px;
}

.form-group>.inputRange::-moz-range-track {
	border-radius: .5rem;
	height: 12px;
}
.form-group>.inputRange::-moz-range-thumb {
	background: var(--btn-bg-2);
	border-radius: .5rem;
	cursor: pointer;
}
	
.form-group>lable {
    font-weight: 500;
    color: var(--color);
}
.form-group>.two {
    display: flex;
    gap: .5rem;
    justify-content: space-between;
}
.form-group .input {
    display: flex;
}
.form-group .input>span {
    display: flex;
    padding: .5rem 1rem;
    background: var(--input-span);
    align-items: center;
    color: var(--input-span-color);
    font-weight: 500;
    white-space: pre;
}
.form-group .input>input {
    width: 100%;
    padding: .7rem 1rem;
    border-radius: 1.5rem;
    border: 1px solid transparent;
    background: var(--input-bg);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color);
    transition: .3s;
    text-align: center;
}
.form-group .input>input::placeholder {
	color: var(--color);
	opacity: .3;
}
.form-group .input>input:focus, .form-group .input>input:hover {background: var(--input-focus);}
.form-group .input.left>input {
    border-radius: 0 1.5rem 1.5rem 0;
}
.form-group .input.left>span {
    border-radius: 1.5rem 0 0 1.5rem;
}
.wrap-center>[data-type="promocodes"]>.grap-form.two>.form-group>.input.left>span {
	padding: 0.5rem .8rem;
}
.wrap-center>[data-type="promocodes"]>.grap-form.two {
	padding-bottom: 0.5rem;
}
.wrap-center>[data-type="promocodes"] .form-checkbox {
	width: 100%;
}
.form-group .input.right>input {
    border-radius: 1.5rem 0 0 1.5rem;
}
.form-group .input.right>span {
    border-radius: 0 1.5rem 1.5rem 0;
}

.form-group .input.center>input {
    border-radius: 0;
}
.form-group .input.center>span:first-child {
    border-radius: .5rem 0 0 0.5rem;
}
.form-group .input.center>span:last-child {
    border-radius: 0 .5rem .5rem 0;
}
.form-group .input.select {
    flex-direction: column;
    position: relative;
}
.form-group .input.select>input {
    background: transparent;
    color: transparent;
    cursor: context-menu;
}
.form-group .input.select>.input-title {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--input-bg);
    left: 0;
    top: 0;
    cursor: pointer;
    border-radius: 1.5rem;
    transition: .3s;
}
.form-group .input.select>.input-title:hover {
    background: var(--input-focus);
}
.form-group .input.select>.selector {
	position: absolute;
	top: 100%;
	max-height: 0;
	transition: max-height .2s ease-in-out;
	overflow: hidden;
	z-index: 5;
	margin-left: -4px;
}
.form-group .input.select>.selector.show {
	max-height: 500px;
    transition: max-height .2s ease-in-out;
}
.form-group .input.select>.selector>section {
    background: var(--select-bg);
    padding: 1rem;
    border-radius: .5rem;
    display: grid;
    gap: .1rem;
    margin: 6px 4px 4px 4px;
}
.form-group .input.select>.selector>section>div {
    height: 2.5rem;
    padding: 0rem 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: .5rem;
    transition: .3s;
    font-weight: 600;
}
.form-group .input.select>.selector>section>div:hover {
    background: var(--btn-bg);
}
.form-group .input.select>.selector>section>div.active {
	background: var(--btn-bg-2);
    color: var(--color-dark);
}
.form-checkbox {
    display: flex;
    gap: 0.1rem;
    background: var(--input-span);
    width: max-content;
    padding: 0.5rem .8rem .5rem 0.8rem;
    border-radius: 1.5rem;
    flex-direction: column;
    font-size: .95rem;
}
.form-checkbox.width {
    width: 100%;
}
.form-checkbox.password {
	margin-bottom: 1.3rem;
}
.form-checkbox>input {
	display: none;
}
.form-checkbox>label {
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
    color: var(--color);
    cursor: pointer;
    transition: .3s;
}
.form-checkbox>label:hover {
    opacity: .8;
}
.form-checkbox.password>label>span, .form-checkbox.promocodes>label>span {
    position: absolute;
    left: -0.5rem;
    top: 2.3rem;
    width: max-content;
    font-size: .8rem;
    opacity: .5;
    font-weight: 300;
    letter-spacing: 1px;
}
.form-checkbox>span {
    font-size: .8rem;
    color: var(--input-check);
}
.form-checkbox>input[type="checkbox"]:checked+label:before {
	outline: 7px solid var(--btn-bg-2);
	outline-offset: -6px;
}
.form-checkbox>input[type="checkbox"]+label:before {
    content: '';
    height: 1.2rem;
    width: 1.2rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 3px solid var(--input-check);
    -webkit-transition: outline 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: outline 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: outline 0.15s ease-in-out, color 0.15s ease-in-out;
}


.form-group.donate {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}
.form-group.donate>textarea {
    width: 100%;
    border-radius: .5rem;
    background: var(--input-bg);
    border: none;
    padding: 1rem;
    color: var(--color);
    scrollbar-color: var(--btn-bg-2) transparent;
    scrollbar-width: thin;
    margin-right: .2rem;
    transition: .3s;
    font-size: 1rem;
}
.form-group.donate>textarea:focus, .form-group.donate>textarea:hover {
    background: var(--input-focus);
}
.form-group.donate>p {
    width: 100%;
    font-size: .8rem;
    opacity: .5;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1rem;
    padding-top: .5rem;
}



.service {
    padding: 2rem 0rem 0 0rem;
}
.service>h1 {
    color: var(--color);
    font-size: 1.3rem;
}
.service>.box {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem 0rem 0rem 0rem;
}
.service>.box>a {
    display: block;
    padding: 0.8rem;
    border-radius: 1.5rem;
    background: var(--btn-bg);
}
.service>.box>a:hover {
    background: var(--service-hover);
    box-shadow: 0 2px 2px var(--shadow);
}
.service>.box>a>.top {
    display: flex;
    gap: .5rem;
    padding-bottom: .5rem;
    width: 100%;
    align-items: center;
}
.service>.box>a>.top>.svg {
	width: 2.5rem;
	height: 2.5rem;
}
.service>.box>a>.top>.svg>svg {
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--btn-bg-2);
	padding: .5rem;
	border-radius: .5rem;
	background: var(--bg);
}
.service>.box>a>.top>h2 {
    font-size: 1.1rem;
    color: var(--color);
    line-height: 1.3rem;
    width: 100%;
}
.service>.box>a>p {
    color: var(--color);
    font-size: .8rem;
    line-height: 1.2rem;
    font-weight: 500;
}

.wrap-center>section.other>h1 {
    font-size: 2rem;
    padding-bottom: 1.5rem;
    line-height: 2.4rem;
}
.other>.result>.error {
    position: relative;
    background: var(--btn-bg);
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    color: #fd5656;
    margin-bottom: 1rem;
}
.other>.result>.error>p {
	text-align: left;
	padding-left: 3rem;
	color: var(--btn-bg-2);
}
.other>.result>.error>p::before {
	content: "!";
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	left: 1.1rem;
	top: 0;
	bottom: 0;
	margin: auto 0;
	background: var(--bg);
	text-align: center;
	font-size: 1.5rem;
	border-radius: 50%;
	color: var(--btn-bg-2);
}
.other>.result>.title {
    display: grid;
    gap: .7rem;
    color: var(--color);
}
.other>.result>.title>p>a {
	color: var(--color-dark);
    background: var(--btn-bg-2);
    padding: .3rem .5rem;
    border-radius: 1.5rem;
    margin-left: .5rem;
	font-weight: 500;
}
.other>.result>.raffle-btn>button {
    color: var(--color-dark);
    background: var(--btn-bg-2);
    padding: .8rem 1rem;
    border-radius: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 1rem;
}
.other>.result>.raffle-btn>button:hover {
    background: var(--btn-bg-2-hover);
}
.other>.result>.title>p>a:hover {
    background: var(--btn-bg-2-hover);
}
.other>.result>.top {
    background: var(--btn-bg);
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-radius: 1.5rem 1.5rem .5rem .5rem;
}
.navigated-results {
    display: flex;
    justify-content: space-between;
    padding-bottom: .7rem;
}
.navigated-results>section {
	display: flex;
    gap: .5rem;
    width: 100%;
    justify-content: space-between;
}
.navigated-results>section>div[selector-button] {
    display: flex;
    flex-direction: row-reverse;
}
.navigated-results>section>div {
    display: flex;
    gap: .5rem;
}
.navigated-results>section>div>button {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--footer-btn);
    padding: .6rem .9rem;
    border-radius: 1.5rem;
    font-weight: 600;
    width: max-content;
    position: relative;
}
.navigated-results>section>div>button>.arrow {
    content: attr(data-title);
    position: absolute;
    bottom: 131%;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: var(--btn-bg-2);
    padding: .4rem .5rem;
    color: var(--color-dark);
    border-radius: 1.5rem;
    font-size: .9rem;
    z-index: 3;
    font-weight: 500;
    width: max-content;
}
.navigated-results>section>div>button>.arrow:after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: 100%;
	left: 50%;
	border-top-color: var(--btn-bg-2);
	border-width: 9px;
	margin-left: -9px;
}
.navigated-results>section>div>button>.arrow[show-button="false"]  {
	display: none;
}
.navigated-results>section>div>button[data-button="download"] {
	color: var(--btn-bg-2);
}
.navigated-results>section>div>button:hover {
    background: var(--footer-btn-hover);
}
.navigated-results>section>div>button.active {
    background: var(--btn-bg-2);
    color: var(--color-dark);
}
.navigated-results>section>div[selector-button="false"]>[data-button="copy"], .navigated-results>section>div[selector-button="false"]>[data-button="download"] {
	display: none;
}
.navigated-results>section>div[selector-button="true"]>[data-button="copy"], .navigated-results>section>div[selector-button="true"]>[data-button="download"]{
    display: flex;
}

.navigated-results>section>div>button[data-button="block"] {}
.navigated-results>section>div>button[data-button="list"] {}
.navigated-results>section>div>button>svg {
    width: 1.4rem;
    height: 1.4rem;
}

.other>.result>.top>.unix-time {
    font-size: .8rem;
    color: var(--color);
    padding-bottom: .4rem;
}
.other>.result>.top>.footnote {
    color: var(--color);
    font-size: .9rem;
}
.other>.result>.done {
    padding-top: .7rem;
}
.other>.result>.done>.block {
    display: grid;
    gap: 1rem;
}
.other>.result>.done>.block>div {
    position: relative;
    display: none;
    background: var(--btn-bg);
    border-radius: .5rem;
    font-size: 2rem;
    color: var(--color);
    font-weight: 600;
    padding: 10px 25px 10px 25px;
    cursor: pointer;
	transition: .3s;
}
.other>.result>.done>.block>div.mini {
    font-size: 1.5rem;
}
[data-count] {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
[data-count="1"], [data-count="2"], [data-count="3"] {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}
[data-count="4"] {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
[data-count="5"], [data-count="6"] {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
[data-count="7"], [data-count="8"], [data-count="9"] {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
[data-count="10"], [data-count="11"], [data-count="12"], [data-count="13"], [data-count="14"], [data-count="15"] {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width:700px) {
	.other>.result>.done>.block>div {
		font-size: 1.2rem;
	}
	.other>.result>.done>.block>div.mini {
		font-size: .9rem;
	}
	
	[data-count="1"], [data-count="2"] {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	[data-count="3"] {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	[data-count="4"], [data-count="5"], [data-count="6"] {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	[data-count="11"], [data-count="12"], [data-count="13"], [data-count="14"], [data-count="15"] {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.other>.result>.done>.block>div:hover {
    background: var(--btn-bg-hover);
}
.other>.result>.done>.block>div>span {
	display: block;
    width: 100%;
    text-align: center;
}
.other>.result>.done>.block>div>.num {
	font-size: .7rem;
	position: absolute;
	right: -5px;
	top: -7px;
	background: var(--bg);
	padding: 0.2rem 0.4rem 0.2rem 0.4rem;
	border-radius: .5rem;
}
.other>.result>.done>.list {
    position: relative;
    background: var(--btn-bg);
    padding: 1.5rem;
    border-radius: .5rem .5rem 1.5rem 1.5rem;
}
.other>.result>.done>.list>textarea {
    width: 100%;
    border-radius: .5rem;
    background: var(--bg);
    border: none;
    padding: 1rem;
    color: var(--color);
    font-size: 1.2rem;
    scrollbar-color: var(--btn-bg-2) transparent;
    scrollbar-width: thin;
    margin-right: .2rem;
}
.other>.result>.done>.hide {
	display: none;
}
.other>.result>.done>.list>.footnote {
    position: relative;
}
.other>.result>.done>.list>.footnote>.block {padding-top: 1rem;display: flex;align-items: center;height: 3.5rem;}
.other>.result>.done>.list>.footnote>.block>span {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--footer-btn);
    padding: .5rem .8rem;
    border-radius: 1.5rem 0 0 1.5rem;
    font-weight: 500;
    width: max-content;
    position: relative;
    color: var(--color);
    height: 100%;
}
.other>.result>.done>.list>.footnote>.block>button {
    width: max-content;
    padding: .5rem 2.5rem;
    border-radius: 0 1.5rem 1.5rem 0;
    border: 1px solid transparent;
    background: var(--input-bg);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color);
    transition: .3s;
    text-align: center;
    margin-left: 0;
    z-index: 6;
    height: 100%;
}
.other>.result>.done>.list>.footnote>.block>button:hover {
    background: var(--input-focus);
}
.other>.result>.done>.list>.footnote>.hidden {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 5;
    gap: .5rem;
    flex-direction: row-reverse;
}
.other>.result>.done>.list>.footnote>.hidden.hide {
    display: none;
}
.other>.result>.done>.list>.footnote>.hidden.password, .other>.result>.done>.list>.footnote>.hidden.promocodes {
    flex-direction: column;
}
.other>.result>.done>.list>.footnote>.hidden>section>.title {
    color: var(--color);
}
.other>.result>.done>.list>.footnote>.hidden>section>.separator {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .3rem;
    padding-top: .4rem;
}
.other>.result>.done>.list>.footnote>.hidden>section>.separator.one {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.other>.result>.done>.list>.footnote>.hidden>section {
    padding: 1rem;
    background: var(--btn-bg-hover);
    border-radius: 1rem;
    height: max-content;
}
.other>.result>.done>.list>.footnote>.hidden>section:last-child>.separator {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.other>.result>.done>.list>.footnote>.hidden>section>.separator>button {
    font-size: 1rem;
    padding: 0.5rem .5rem;
    background: var(--input-bg);
    border-radius: .5rem;
    font-weight: 600;
}
.other>.result>.done>.list>.footnote>.hidden>section>.separator>button.two {
    grid-column: 1 / 3;
}
.other>.result>.done>.list>.footnote>.hidden>section>.separator>button.active {
    background: var(--btn-bg-2);
    color: var(--color);
}
.other>.result>.done>.list>.footnote>.hidden>section>.separator>button:hover {
    background: var(--footer-btn-hover);
}
.other>.result>.done>.list>.footnote>.hidden>section>.separator>button.active {
	background: var(--btn-bg-2);
    color: var(--color-dark);
}
.other>.result>.done>.list>.note {
    padding: 1rem;
    background: var(--bg);
    margin-top: 1rem;
    border-radius: 1rem;
    color: var(--color);
    position: relative;
}
.other>.result>.done>.list>.note:before {
	content: "!";
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--btn-bg);
	background-repeat: no-repeat;
	top: 0;
	bottom: 0;
	left: .7rem;
	margin: auto 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--btn-bg-2);
}
.other>.result>.done>.list>.note>p {
    font-size: .9rem;
    padding-left: 2.7rem;
}
.other>.result>.note {
	position: relative;
	margin-top: 1rem;
	background: var(--btn-bg);
	padding: 1rem 1rem;
	border-radius: 1.5rem;
}
.other>.result>.note>p {
	color: var(--color);
	display: flex;
	flex-direction: row;
	gap: .2rem;
	padding-left: 4rem;
}
.other>.result>.note>p>a {
	display: flex;
	padding: .5rem 1.5rem;
	border-radius: 2rem;
	font-size: 1rem;
	font-weight: 600;
	align-items: center;
	width: max-content;
	justify-content: center;
	background: var(--footer-btn);
	color: var(--color);
	line-height: 1.1rem;
	text-align: center;
}
.other>.result>.note>p>a:hover {
	background: var(--footer-btn-hover);
}
.other>.result>.note:before {
    content: "!";
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--input-bg);
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    left: 1.5rem;
    margin: auto 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--btn-bg-2);
}
#note {
	display:none;
	position: fixed;
	margin: 0 auto;
	background: var(--logo);
	padding: .2rem .5rem;
	color: var(--color-dark);
	border-radius: 1.5rem;
	font-size: .9rem;
	z-index: 3;
	font-weight: 500;
	width: 8rem;
	text-align: center;
}
#note.copy {
	background: var(--btn-bg-2);
}
#note:after {
    content: "";
    border: solid transparent;
    position: absolute;
    top: 100%;
    left: 24%;
    border-top-color: var(--logo);
    border-width: 9px;
    margin-left: -9px;
}
#note.copy:after {
    border-top-color: var(--btn-bg-2);
}

.notifi {
    position: fixed;
    top: 1.5rem;
    right: 0;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    z-index: 10;
}
.notifi .message {
    min-width: 20rem;
    height: 4rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    box-sizing: border-box;
    font-weight: 600;
    border-radius: .7rem 0 0 .7rem;
    box-shadow: 0 2px 2px var(--shadow);
	background: var(--btn-bg-hover);
    border-left: 7px solid var(--btn-bg-2);
    color: var(--color);
}

.notifi .message.open {
    transform: translateX(150%);
    animation: messageani .5s forwards;
    cursor: pointer;
}
@keyframes messageani {
	0% {transform: translateX(150%);}
	100% {transform: translateX(0);}
}

.notifi .message.reload {
    transform: translateX(0);
	animation: messageanim .5s forwards;
}
@keyframes messageanim {
	0% {transform: translateX(0);}
	100% {transform: translateX(150%);}
}
.spiner {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #23262f94;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spiner.hide {
    display: none;
}
.spiner>.fone {
    background: var(--btn-bg);
    padding: 1.5rem;
    border-radius: 1.5rem;
}
body.light>.spiner>.fone {
    background: var(--input-bg);
}
.spiner>.fone>.svg {
    background: url(https://myrand.ru/template/assets/spinner-dark.svg);
    width: 100%;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: center;
}
body.light>.spiner>.fone>.svg {
    background: url(https://myrand.ru/template/assets/spinner-light.svg);
    width: 100%;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: center;
}
.spiner>.fone>p {
    padding-top: 1rem;
    color: #a1a1a1e8;
    font-weight: 500;
}
body.light>.spiner>.fone>p {
    padding-top: 1rem;
    color: var(--color);
}

.raffle {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 100%;
}
.raffle>.info {
    position: relative;
    width: 100%;
    background: var(--btn-bg);
    padding: 1.5rem;
    border-radius: 1.5rem;
    margin-right: 2rem;
    height: 100%;
    z-index: 1;
}
.raffle>.info>.date {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    color: var(--color);
    opacity: .5;
    padding: .5rem 0 .5rem 0;
}
.raffle>.info>.premium {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    display: flex;
    align-items: center;
    padding: .5rem .8rem;
    border-radius: 1.5rem;
    background: var(--btn-bg-2);
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: 500;
    gap: .5rem;
}
.raffle>.info>.premium:hover {
    background: var(--btn-bg-2-hover);
}
.raffle>.info>.premium>svg {
    width: 1rem;
    height: 1.2rem;
}
.raffle>.info>.prem {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    padding: .5rem .5rem;
    border-radius: 1.5rem;
    background: var(--btn-bg-2);
    color: var(--color-dark);
    cursor: pointer;
	transition: .3s;
}
.raffle>.info>.prem:hover {
	background: var(--btn-bg-2-hover);
}
.raffle>.info>.prem>svg {
    width: 1.3rem;
    height: 1.3rem;
}
.raffle>.info>.prem:hover::before {
	content: attr(data-title);
    position: absolute;
    right: 114%;
    top: 0;
    bottom: 0;
    background: var(--btn-bg-2);
    padding: .2rem .5rem;
    color: var(--color-dark);
    border-radius: 1.5rem;
    font-size: 1rem;
    z-index: 3;
    transition: .3s;
    width: max-content;
    display: flex;
    align-items: center;
}
.raffle>.info>.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: 4rem 0rem 0rem 0rem;
    height: 100%;
}
.raffle>.info>.center>.icon {
    width: max-content;
    color: #fff;
    background: #313339;
    padding: 1rem;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
}
.raffle>.info>.center>.icon>img {
    width: 10rem;
    border-radius: .5rem;
}
.raffle>.info>.center>.icon>svg {
    width: 4rem;
    height: 3rem;
}
.raffle>.info>.center>h1 {
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    color: var(--color);
    width: 100%;
}
.raffle>.info>.center>h2 {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    color: var(--input-span-color);
    width: 100%;
    text-align: center;
    margin-top: -.7rem;
}
.raffle>.info>.center>h1>span {
    display: block;
    color: var(--btn-bg-2);
    padding: 0rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
}
.raffle>.info>.center>.status {padding: .3rem 1.3rem;border-radius: 1.5rem;font-size: 1.1rem;color: var(--color);font-weight: 600;margin: 1rem -0.5rem;}
.raffle>.info>.center>.status.expect {
    background: var(--bg);
}
.raffle>.info>.center>.status.finished {
    background: var(--btn-bg-hover);
    color: var(--color);
}
.raffle>.info>.center>.title {
    text-align: center;
    width: 80%;
    line-height: 1.6rem;
    color: var(--color);
}
.raffle>.info>.center>.admin.redact {
    display: grid;
    gap: .5rem;
}
.raffle>.info>.center>.admin>p {
    text-align: center;
    color: var(--color);
    font-weight: 500;
}
.raffle>.info>.center>.admin>.link {
	position: relative;
	display: flex;
	align-items: center;
	gap: .3rem;
	background: var(--footer-btn);
	padding: 0.3rem 1rem;
	border-radius: 1.5rem;
	color: var(--btn-bg-2);
	cursor: pointer;
}
.raffle>.info>.center>.admin>.link>svg {
    width: 1.3rem;
    height: 1.5rem;
}

.raffle>.info>.center>.link {
    padding-top: .7rem;
}
.raffle>.info>.center>.link>p {
    text-align: center;
    color: var(--color);
    font-weight: 500;
}
.raffle>.info>.center>.link>a {
	position: relative;
	display: flex;
	align-items: center;
	gap: .3rem;
	background: var(--footer-btn);
	padding: 0.3rem 1rem;
	border-radius: 1.5rem;
	color: var(--btn-bg-2);
	cursor: pointer;
}
.raffle>.info>.center>.link>a>svg {
    width: 1.3rem;
    height: 1.5rem;
}
.raffle>.info>.center>.link>a:hover {
    color: var(--btn-bg-2-hover);
}








.raffle>.info>.center>.admin:not(.redact)>.link:hover::before {
	content: attr(data-title);
	position: absolute;
	bottom: 110%;
	right: 0;
	background: var(--btn-bg-2);
	padding: .2rem .5rem;
	color: var(--color-dark);
	border-radius: 1.5rem;
	font-size: .8rem;
	z-index: 3;
}
.raffle>.info>.foot {
    position: absolute;
    display: flex;
    justify-content: center;
    padding-top: 0rem;
    bottom: 1.5rem;
    left: 0;
    right: 0;
}
.raffle>.info>.foot>div {
    position: relative;
    width: max-content;
    padding: .6rem 1rem;
    background: var(--bg);
    color: var(--color);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}
.raffle>.info>.foot>div>p {
    position: relative;
    padding-left: 1.7rem;
}
.raffle>.info>.foot>div>p:before {
	content: "!";
	left: -.3rem;
	top: 0;
	bottom: 0;
	margin: auto 0;
	position: absolute;
	width: 1.6rem;
	height: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--btn-bg);
	border-radius: 50%;
	color: var(--btn-bg-2);
}
.raffle>.info>.foot>div>button {
	position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 113%;
    width: max-content;
    padding: .7rem 1rem;
    border-radius: 1.5rem;
    background: var(--btn-bg-2);
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: 500;
}
.raffle>.info>.foot>div>button:hover {
    background: var(--btn-bg-2-hover);
}
.raffle>.info>.foot>div>button:disabled {
	background: var(--color-dark);
    color: var(--logo-hover);
    cursor: no-drop;
}

.raffle>.results {
    position: relative;
    width: 100%;
    background: var(--rez-bg);
    border-radius: 1.5rem;
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    margin-left: -5rem;
}
.raffle>.results>.views {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .3rem;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--color);
}
.raffle>.results>.views>svg {
    width: 1.2rem;
    height: 1.2rem;
}
.raffle>.results>h1 {
    color: var(--color);
    font-size: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--btn-bg);
    padding-bottom: .7rem;
    margin-bottom: 1rem;
}
.raffle>.results>.no-result {
	position: relative;
	display: flex;
	justify-content: center;
}
.raffle>.results>.no-result>div {
	position: relative;
	font-size: 1.5rem;
	color: var(--color);
	font-weight: 600;
	width: max-content;
	height: max-content;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--bg);
	padding: 1.5rem;
	border-radius: 1.5rem;
	margin-top: 50px;
}
.raffle>.results>.no-result>div::after {
	content: "";
	position: absolute;
	height: 2rem;
	width: 1rem;
	background: var(--btn-bg-2);
	border-radius: 1rem;
	right: 50px;
	top: -16px;
}
.raffle>.results>.no-result>div::before {
	content: "";
	position: absolute;
	height: 2rem;
	width: 1rem;
	background: var(--btn-bg-2);
	border-radius: 1rem;
	left: 50px;
	top: -16px;
}
.raffle>.results>.no-result>div>span {
    font-size: 1.5rem;
    line-height: 1.8rem;
    text-transform: uppercase;
}

.raffle>.results>.done {
    padding-top: .7rem;
    height: 85%;
    padding-bottom: 1rem;
}
.raffle>.results>.done>.block {
    display: grid;
    gap: 1rem;
    max-height: 100%;
    overflow: hidden;
    overflow-y: auto;
    scrollbar-color: var(--btn-bg-2) transparent;
    scrollbar-width: thin;
    padding-right: .5rem;
    margin-right: 0rem;
    padding-top: .4rem;
}
.raffle>.results>.done>.block.hide {
	display: none;
}
.raffle>.results>.done>.block>div {
	position: relative;
	display: none;
	background: var(--color-dark);
	border-radius: .5rem;
	font-size: 1.8rem;
	color: var(--color);
	font-weight: 600;
	padding: 10px 10px 10px 10px;
	cursor: pointer;
	transition: .3s;
	text-align: center;
}
.raffle>.results>.done>.block>div>.num {
	font-size: .7rem;
	position: absolute;
	right: -5px;
	top: -7px;
	background: var(--btn-bg);
	padding: 0.2rem 0.4rem 0.2rem 0.4rem;
	border-radius: .5rem;
}
.raffle>.results>.done>.list.hide {
	display: none;
}
.raffle>.results>.done>.list>textarea {
    width: 100%;
    border-radius: .5rem;
    background: var(--input-bg);
    border: none;
    padding: 1rem;
    color: var(--color);
    font-size: 1rem;
    scrollbar-color: var(--btn-bg-2) transparent;
    scrollbar-width: thin;
    margin-right: .2rem;
}
.raffle>.results>.done>.list>.footnote {
    position: relative;
}
.raffle>.results>.done>.list>.footnote>.block {
    padding-top: 1rem;
    display: flex;
    align-items: center;
    height: 3.5rem;
}
.raffle>.results>.done>.list>.footnote>.block>span {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--btn-bg);
    padding: .5rem .8rem;
    border-radius: 1.5rem 0 0 1.5rem;
    font-weight: 500;
    width: max-content;
    position: relative;
    color: var(--color);
    height: 100%;
}
.raffle>.results>.done>.list>.footnote>.block>button {
    width: max-content;
    padding: .5rem 2.5rem;
    border-radius: 0 1.5rem 1.5rem 0;
    border: 1px solid transparent;
    background: var(--input-bg);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color);
    transition: .3s;
    text-align: center;
    margin-left: 0;
    z-index: 6;
    height: 100%;
}
.raffle>.results>.done>.list>.footnote>.hidden {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 6;
    gap: .5rem;
    flex-direction: row;
    align-items: flex-end;
}
.raffle>.results>.done>.list>.footnote>.hidden.hide {
    display: none;
}
.raffle>.results>.done>.list>.footnote>.hidden>section {
    padding: 1rem;
    background: var(--btn-bg);
    border-radius: 1rem;
    height: max-content;
}
.raffle>.results>.done>.list>.footnote>.hidden>section>.title {
    color: var(--color);
}
.raffle>.results>.done>.list>.footnote>.hidden>section>.separator {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .3rem;
    padding-top: .4rem;
}
.raffle>.results>.done>.list>.footnote>.hidden>section:last-child>.separator {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.raffle>.results>.done>.list>.footnote>.hidden>section.number {
    position: relative;
    bottom: 3rem;
}
.raffle>.results>.done>.list>.footnote>.hidden>section>.separator>button {
    font-size: 1rem;
    padding: 0.5rem .5rem;
    background: var(--input-bg);
    border-radius: .5rem;
    font-weight: 600;
}
.raffle>.results>.done>.list>.footnote>.hidden>section>.separator>button:hover {
    background: var(--footer-btn-hover);
}
.raffle>.results>.done>.list>.footnote>.hidden>section>.separator>button.active {
    background: var(--btn-bg-2);
    color: var(--color-dark);
}

.raffle>.results>.done>.list>.note {
    margin-top: 1rem;
    border-radius: 1rem;
    color: var(--color);
    position: relative;
}
.raffle>.results>.done>.list>.note>p {
    font-size: .75rem;
}

.setting-admin>.setting-check {
    position: absolute;
    background: var(--input-bg);
    color: var(--color);
    padding: .6rem 1rem .6rem 1rem;
    border-radius: 1.5rem;
    width: 90%;
    bottom: .5rem;
}
.setting-admin>.setting-check>p {
    padding-bottom: .3rem;
    font-size: .9rem;
    color: var(--btn-bg-2);
    text-align: center;
}
.setting-admin>.setting-check>section {
    display: flex;
    gap: .4rem;
    justify-content: center;
}





.setting-admin.num>.name {
	position: relative;
}
.setting-admin.num>.name>p {
	font-size: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 700;
	color: var(--color);
	width: 100%;
	text-align: center;
}


.setting-admin.num>.subtitle {
	width: 80%;
}
.setting-admin.num>.subtitle>.box>p {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    color: var(--input-span-color);
    width: 100%;
    text-align: center;
}


.setting-admin.num>.description {
	width: 80%;
}
.setting-admin.num>.description>.box>p {
	text-align: center;
	line-height: 1.6rem;
	color: var(--color);
}

.setting-admin.num>.link>.box>p {
    display: flex;
    align-items: center;
    color: var(--btn-bg-2);
    gap: .3rem;
}
.setting-admin.num>.link>.box>p>svg {
	width: 1.3rem;
	height: 1.3rem;
}
.setting-admin.num>.logo>.box>.logo-load {
     text-align: center;
     cursor: pointer;
     position: relative;
     color: var(--color);
     background: var(--bg);
     padding: 1rem;
     border-radius: 1.5rem;
     width: max-content;
     margin: 0 auto;
     border: 2px dashed var(--btn-bg-2-hover);
}
.setting-admin.num>.logo>.box>.logo-load .dragover {
  background-color: #f0f0f0;
}

.setting-admin.num>.logo>.box>.logo-load input[type="file"] {
	position: absolute;
	left:0;
	top:0;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	background: #fff;
}
.setting-admin.num>.logo>.box>.logo-load .images-load {
	display: none;
	color: var(--color);
}
.setting-admin.num>.logo>.box>.logo-load .images-load>img {
	border-radius: .5rem;
	max-width: 10rem;
}
.setting-admin.num>.logo>.box>.title {
    font-size: .8rem;
    color: var(--btn-bg-2);
    padding-top: .3rem;
    text-align: center;
}





.setting-admin.num .box {
    position: relative;
    margin: 0 auto;
}
.setting-admin.num .box.hide {
    display: none;
}
.setting-admin.num button[data-add] {
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--footer-btn);
    padding: .5rem 1rem;
    border-radius: 1.5rem;
    margin: 0 auto;
}
.setting-admin.num button[data-add]>svg {
	width: 1rem;
	height: 1rem;
}
.setting-admin.num button[data-add]:hover {
	background: var(--footer-btn-hover);
}
.setting-admin.num .box>button.remove {
    position: absolute;
    padding: .5rem;
    border-radius: 50%;
    background: #e53838;
    top: 0;
    bottom: 0;
    height: 2.3rem;
    width: 2.3rem;
    left: 103%;
    color: #fff;
}
.setting-admin.num .box>button.remove>svg {
    width: 1.1rem;
    height: 1.1rem;
}

.setting-admin.num p[contenteditable="true"] {
    position: relative;
    caret-color: var(--color);
    outline: none;
    padding: 0.4rem 1rem;
    word-break: break-all;
    cursor: text;
    min-width: 7rem;
    margin: 0 auto;
    border-bottom: 1px dashed var(--color);
}
.setting-admin.num p[contenteditable="true"]:focus {
    caret-color: var(--color);
}
.setting-admin.num>.setting-button {
    position: absolute;
    bottom: 1.5rem;
}
.setting-admin.num>.setting-button>button {
    display: flex;
    align-items: center;
    padding: .7rem 1rem;
    border-radius: 1.5rem;
    background: var(--btn-bg-2);
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: 600;
    gap: .5rem;
}
.setting-admin.num>.setting-button>button:hover {
	background: var(--btn-bg-2-hover);
}
.setting-admin.num>.setting-button>button:hover {
	background: var(--btn-bg-2-hover);
}
.setting-admin.num>.setting-button>button:disabled {
	background: var(--rez-bg);
	color: var(--color);
	cursor: no-drop;
}
.result-admin.num {
    width: 80%;
    margin: 0 auto;
}
.result-admin.num>form>.grap-form.two {
    display: grid;
    padding-bottom: 1.3rem;
    align-items: flex-end;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
}
.result-admin.num>form>.grap-checkbox {
    padding-top: 1rem;
    display: grid;
    gap: .9rem;
}
.result-admin.num>form>button {
    display: flex;
    gap: .6rem;
    padding: .8rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    align-items: center;
    width: 100%;
    justify-content: center;
    background: var(--btn-bg-2);
    color: var(--color-dark);
    box-shadow: none;
	margin-top: 1rem;
}
.result-admin.num>form>button:hover {
    background: var(--btn-bg-2-hover);
}
.result-admin.num>form>.warning {
	font-size: .8rem;
    color: var(--btn-bg-2);
    padding-top: .5rem;
}
.result-admin.num>form>.error {
	position: relative;
	background: var(--btn-bg);
	padding: 1rem;
	border-radius: 1.5rem;
	text-align: center;
	color: #fd5656;
	margin-top: 1rem;
}
.result-admin.num>form>.error>p {
    text-align: left;
    padding-left: 0;
    color: #fd5656;
    font-size: .8rem;
}

.error404 {
    margin: 0 auto;
    text-align: center;
}
.error404>h1 {
    font-size: 6rem;
    color: var(--color);
}
.error404>p {
    color: var(--color);
    font-size: 1.1rem;
}
.error404>a {
    display: flex;
    gap: .6rem;
    padding: .5rem 1rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    align-items: center;
    width: max-content;
    justify-content: center;
    background: var(--btn-bg-2);
    color: var(--color-dark);
    box-shadow: none;
    margin: 1rem auto 0 auto;
}
.error404>a:hover {
    background: var(--btn-bg-2-hover);
}
.profile {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.profile>.menu {
    width: 100%;
    display: flex;
	gap: 1rem;
}
.profile>.menu>ul {
    display: flex;
    overflow: hidden;
    border-radius: 1.5rem;
    width: max-content;
}
.profile>.menu>ul>li>a {
    display: flex;
    gap: .6rem;
    background: var(--btn-bg);
    padding: .6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    align-items: center;
    color: var(--color);
    white-space: nowrap;
}
.profile>.menu>ul>li>a:hover {
    background: var(--btn-bg-hover);
}
.profile>.menu>ul>li>a.active {
	background: var(--btn-bg-2);
    color: var(--color-dark);
}
.profile>.menu>.profile-new, .profile>.profile-new-mobile {
    display: flex;
    gap: .6rem;
    background: var(--btn-bg);
    padding: .6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    align-items: center;
    color: var(--color);
    border-radius: 1.5rem;
}
.profile>.menu>.profile-new:hover, .profile>.profile-new-mobile:hover {
	background: var(--btn-bg-hover);
}
.profile>.menu>.profile-new>svg, .profile>.profile-new-mobile>svg {
	width: 1.4rem;
    height: 1.4rem;
}
.profile>.profile-new-mobile {
	display: none;
}
.list-table {
    width: 100%;
    margin-top: 1rem;
    border-spacing: 0 8px;
}
.list-table>thead>tr {
    background: var(--btn-bg-hover);
}
.list-table>thead>tr>th {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color);
    padding: 1rem;
}
.list-table>thead>tr>th>svg {
    width: 1.1rem;
    height: 1.1rem;
}
.list-table>thead>tr>th:first-child {
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}
.list-table>thead>tr>th:last-child {
    border-bottom-right-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}


.list-table>tbody>tr {
    background: var(--btn-bg);
}
.list-table>tbody>tr.clear {
    background: transparent;
}
.list-table>tbody>tr>td {
    text-align: center;
    padding: 1rem;
    color: var(--color);
}
.list-table>tbody>tr>td>svg {
    width: 1.1rem;
    height: 1.1rem;
}
.list-table>tbody>tr>td>span>svg {
    width: 1.1rem;
    height: 1.1rem;
}
.list-table>tbody>tr>.premium>svg {
	color: var(--btn-bg-2);
}
.list-table>tbody>tr>td>a {
    color: var(--btn-bg-2);
    display: flex;
    align-items: center;
    gap: .3rem;
}
.list-table>tbody>tr>td>a:hover {
    color: var(--btn-bg-2-hover);
}
.list-table>tbody>tr>td>a>svg {
    position: relative;
    width: .8rem;
    height: 0.8rem;
    top: 1px;
}
.list-table>tbody>tr>td>b {
    font-weight: 400;
    font-size: .8rem;
}
.list-table>tbody>tr:nth-child(even) {
	background: var(--btn-bg-hover);
}

.list-table>tbody>tr>td:first-child {
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}
.list-table>tbody>tr>td:last-child {
    border-bottom-right-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}

.list-table>tbody>tr>td>span {
    display: none;
}

.premium {
    padding-top: 1rem;
}
.premium>h1 {
    color: var(--color);
    font-size: 2rem;
}
.premium>p {
    color: var(--input-check);
    width: 70%;
    line-height: 1.1rem;
}
.premium>h2 {
    color: var(--color);
    padding-top: 1rem;
}
.premium>.tariff {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem 0rem 0rem 0rem;
}
.premium>.tariff>form {
    background: var(--btn-bg);
    padding: 1rem;
    border-radius: 1.5rem;
}
.premium>.tariff>form>.name {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color);
    text-transform: uppercase;
    font-weight: 700;
}
.premium>.tariff>form>.cost {
    color: var(--btn-bg-2);
    font-size: 2rem;
    text-align: center;
    font-weight: 600;
    line-height: 2rem;
    padding: 1rem 0 0.5rem 0;
}
.premium>.tariff>form>.cost>span {
    font-size: 3rem;
    font-weight: 600;
    margin-right: .5rem;
}
.premium>.tariff>form>.time {
    text-align: center;
    color: var(--color);
    font-weight: 600;
    font-size: 1.5rem;
}
.premium>.tariff>form>.time>span {
    padding-right: .5rem;
}
.premium>.tariff>form>ul {
    border-top: 1px solid rgb(82 84 93);
    padding: .5rem 0 0 0;
    margin-top: 1rem;
    display: grid;
    gap: .5rem;
}
body.light .premium>.tariff>form>ul {
    border-top: 1px dashed var(--btn-bg-2-hover);
}
.premium>.tariff>form>ul>li>p {
    font-size: .8rem;
    color: var(--color);
    text-align: center;
}
.premium>.tariff>form>button {
    display: flex;
    gap: .6rem;
    padding: .8rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    align-items: center;
    width: 100%;
    justify-content: center;
    background: var(--btn-bg-2);
    color: var(--color-dark);
    box-shadow: none;
    margin-top: 1rem;
}
.premium>.tariff>form>button:hover {
	background: var(--btn-bg-2-hover);
}
.premium>.premium-footer {
    padding-top: 1rem;
    width: 70%;
    font-size: 1rem;
    color: #cbcbcb;
    display: grid;
    gap: .5rem;
}
body.light .premium>.premium-footer {
    color: #393939;
}
.premium>.premium-footer>p {
	line-height: 1.1rem;
}
.premium>.premium-footer>p>a {
    color: var(--btn-bg-2);
}
.premium>.premium-footer>p>a:hover {
    color: var(--btn-bg-2-hover);
}

.modal-overload {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    background: rgb(0 0 0 / 55%);
	opacity: 0;
	animation: openmoldaloverload .2s forwards;
}
.modal-overload.hide {
    display: none;
}
@keyframes openmoldaloverload {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.modal-overload.show {
    animation: openmoldaloverloadshow .2s forwards;
}
@keyframes openmoldaloverloadshow {
	0% {opacity: 1;}
	100% {
		opacity: 0;
		display: none;
	}
}


.body.light .modal-overload {
    background: #ffffff99;
}
.modal-overload>.modal-block {
    position: relative;
    margin: 0 auto;
    width: 390px;
    top: 8%;
    background: var(--rez-bg);
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-radius: 1.5rem;
    color: var(--color);
    transform: translateY(-150%);
    animation: openmoldalblock .5s forwards;
}
.modal-overload>.modal-block.hide {
    display: none;
}
@keyframes openmoldalblock {
	0% {transform: translateY(-150%);}
	100% {transform: translateY(0);}
}
.modal-overload>.modal-block.show {
   transform: translateY(0);
	animation: openmoldalblockshow .5s forwards;
}
@keyframes openmoldalblockshow {
	0% {transform: translateY(0);}
	100% {
		transform: translateY(-150%);
		display: none;
	}
}



.modal-overload>.modal-block>.modal-top {
    position: relative;
    padding-bottom: 1rem;
}
.modal-overload>.modal-block>.modal-top>h1 {
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}
.modal-overload>.modal-block>button {
    position: absolute;
    right: -1rem;
    top: -1rem;
    bottom: 0;
    width: max-content;
    height: max-content;
    padding: .5rem;
    background: var(--btn-bg-2);
    color: var(--color-dark);
    border-radius: 50%;
}
.modal-overload>.modal-block>button:hover {
	background: var(--btn-bg-2-hover);
}
.modal-overload>.modal-block>button>svg {
	width: 1.5rem;
	height: 1.5rem;
}
.modal-overload>.modal-block>.modal-body>.tariff {
    background: var(--footer-btn);
    padding: 1.5rem;
    border-radius: 1.5rem;
    margin: 0 auto;
}
.modal-overload>.modal-block>.modal-body>.tariff>.name {
	text-align: center;
	font-size: 1.2rem;
	color: var(--color);
	text-transform: uppercase;
	font-weight: 700;
}
.modal-overload>.modal-block>.modal-body>.tariff>.cost {
    color: var(--btn-bg-2);
    font-size: 3rem;
    text-align: center;
    font-weight: 600;
    line-height: 2rem;
    padding: 1.5rem 0 0.5rem 0;
}
.modal-overload>.modal-block>.modal-body>.tariff>.cost>span {
    font-size: 4rem;
    font-weight: 600;
    margin-right: .5rem;
}
.modal-overload>.modal-block>.modal-body>.tariff>ul {
    border-top: 1px dashed rgb(82 84 93);
    padding: .5rem 0 0 0;
    margin-top: 1rem;
    display: grid;
    gap: .5rem;
}
body.light .modal-overload>.modal-block>.modal-body>.tariff>ul {
    border-top: 1px dashed var(--btn-bg-2);
}
.modal-overload>.modal-block>.modal-body>.tariff>ul>li>p {
    font-size: .9rem;
    color: var(--color);
    text-align: center;
}
.modal-overload>.modal-block>.modal-body>p {
    text-align: center;
    padding-top: .5rem;
    font-size: .9rem;
}
.modal-overload>.modal-block>.modal-body>p>a {
    color: var(--btn-bg-2);
}
.modal-overload>.modal-block>.modal-body>p>a:hover {
    color: var(--btn-bg-2-hover);
}
.modal-overload>.modal-block>.modal-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--bg);
}
.modal-overload>.modal-block>.modal-footer>[modal-closed] {
    display: flex;
    gap: .6rem;
    background: var(--footer-btn);
    padding: .8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    align-items: center;
    color: var(--color);
    border-radius: 1.5rem;
}
.modal-overload>.modal-block>.modal-footer>[modal-closed]:hover {
    background: var(--footer-btn-hover);
}
.modal-overload>.modal-block>.modal-footer>[modal-pay] {
    display: flex;
    gap: .6rem;
    background: var(--btn-bg-2);
    padding: .8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    align-items: center;
    color: var(--color-dark);
    border-radius: 1.5rem;
}
.modal-overload>.modal-block>.modal-footer>[modal-pay]:hover {
    background: var(--btn-bg-2-hover);
}

.mobile, .footer>.right>.copyright-mobile, .button-theme-mobile {
	display: none;
}

.footer>.center>.copyright {
	display: block;
}

	.mobile {
		position: relative;
		display: none;
		padding: .8rem 0rem .8rem 0rem;
		height: 4.5rem;
		justify-content: space-between;
		width: 100%;
		align-items: center;
	}
	.mobile>.logotype>a {
		color: var(--logo);
	}
	.mobile>.logotype>a>svg {
		height: 2rem;
		width: 11rem;
	}
	.mobile>.logotype>a:hover {
		color: var(--logo-hover);
	}
	.mobile>.left>button, .mobile>.right>button {
		padding: .7rem;
		background: var(--btn-bg);
		border-radius: 50%;
	}
	.mobile>.left>button>svg, .mobile>.right>button>svg {
		width: 1.3rem;
		height: 1.3rem;
	}
	.mobile>.left>button:hover, .mobile>.right>button:hover {
		background: var(--btn-bg-hover);
	}
	.mobile>.right>button.user {
		background: var(--btn-bg-2);
		color: var(--color-dark);
	}
	.mobile>.right>button.user:hover {
		background: var(--btn-bg-2-hover);
	}
	
	.hidden.profil {
        position: absolute;
        right: 0;
        top: 89%;
        background: var(--btn-bg);
        border-radius: 1.5rem;
        width: max-content;
        z-index: 10;
        max-height: 0;
        overflow: hidden;
        margin-right: 0rem;
    }
	.hidden.profil>section {
		width: max-content;
		padding: 1rem;
	}
	.hidden.profil>section>p {
		padding-bottom: .4rem;
		color: var(--color);
	}
	.hidden.profil>section>.button {
        display: flex;
        flex-direction: row;
        gap: .5rem;
    }
	.hidden.profil>section>.button>a {
		color: var(--color);
		display: flex;
		align-items: center;
		gap: .5rem;
		background: var(--footer-btn);
		padding: .5rem 1rem;
		border-radius: 1rem;
		width: max-content;
	}
	.hidden.profil>section>.button>a>svg {
		width: 1.5rem;
		height: 1.5rem;
	}
	.hidden.profil>section>.button>a:hover {
		background: var(--footer-btn-hover);
	}
	.hidden.profil>section>.form-email {
		display: none;
	}
	.hidden.profil>section>.form-email.show {
		display: block;
		width: 18rem;
		padding-top: 1rem;
		margin-top: 1rem;
		border-top: 1px dashed var(--footer-btn-hover);
	}
	.hidden.profil>section>.form-email>p {
		color: var(--color);
		line-height: 1.1rem;
		padding-bottom: .5rem;
	}
	.hidden.profil>section>.form-email>.btn {
		display: flex;
		gap: .6rem;
		padding: .8rem 1.5rem;
		border-radius: 2rem;
		font-size: 1rem;
		font-weight: 600;
		align-items: center;
		width: 100%;
		justify-content: center;
		background: var(--btn-bg-2);
		color: var(--color-dark);
		box-shadow: none;
		margin-top: 1rem;
	}
	.hidden.profil>section>.form-email>.btn:hover {
		background: var(--btn-bg-2-hover);
	}
	.hidden.profil>section>.user-menu {
		display: flex;
		flex-direction: column;
		gap: .5rem;
	}
	.hidden.profil>section>.user-menu>a {
		color: var(--color);
		display: flex;
		align-items: center;
		gap: .5rem;
		background: var(--footer-btn);
		padding: .5rem 1rem;
		border-radius: 1rem;
		width: max-content;
	}
	.hidden.profil>section>.user-menu>a>svg {
		width: 1.5rem;
		height: 1.5rem;
	}
	.hidden.profil>section>.user-menu>a:hover {
		background: var(--footer-btn-hover);
	}
	
	.hidden.profil.show {
		max-height:500px;
		transition:max-height .2s ease-in-out;
		box-shadow: 0 2px 2px var(--shadow);
	}
	@keyframes max-height {
		0% {height:0}
		100% {height:max-content}
	}
	
	.hidden.menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--btn-bg);
        z-index: 11;
        transform: translateX(-150%);
    }

	.hidden.menu.show {
        animation: menushow .5s forwards;
    }
	@keyframes menushow {
		0% {transform: translateX(-150%);}
		100% {transform: translateX(0);}
	}
	
	.hidden.menu.hide {
	   transform: translateX(-150%);
	   animation: menushowover .5s forwards;
    }
	@keyframes menushowover {
		0% {transform: translateX(0);}
		100% {transform: translateX(-150%);}
	}
	.hidden.menu>section>.top {
		padding: 1rem 1rem;
		display: flex;
		justify-content: center;
		height: 4.5rem;
		align-items: center;
	}
	.hidden.menu>section>.top>.logotype>a {
		color: var(--logo);
		display: block;
	}
	.hidden.menu>section>.top>.logotype>a>svg {
		height: 2rem;
		width: 11rem;
	}
	.hidden.menu>section>.top>.logotype>a:hover {
		color: var(--logo-hover);
	}
	.hidden.menu>section>.top>button {
		position: absolute;
		padding: .7rem;
		background: var(--bg);
		border-radius: 50%;
		right: 1rem;
		top: .85rem;
	}
	.hidden.menu>section>.top>button>svg {
		width: 1.3rem;
		height: 1.3rem;
	}
	.hidden.menu>section>.top>button:hover {
		background: var(--btn-bg-hover);
	}
	.hidden.menu>section>ul {
		max-height: 100%;
		overflow: scroll;
		padding-bottom: 5rem;
		display: grid;
		gap: .5rem;
		padding: 0rem 1rem;
	}
	.hidden.menu>section>ul>li>a {
		color: var(--color);
		display: flex;
		align-items: center;
		gap: .5rem;
		background: var(--footer-btn);
		padding: .5rem 1rem;
		border-radius: 1rem;
		width: max-content;
	}
	.hidden.menu>section>ul>li>a>.svg>svg {
		width: 1.5rem;
		height: 1.5rem;
	}
	.hidden.menu>section>ul>li>a>h1 {
        font-size: 1rem;
        font-weight: 500;
    }
	.hidden.menu>section>ul>li>a:hover {
		background: var(--footer-btn-hover);
	}
	.hidden.menu>section>ul>p {
		color: var(--color);
		font-size: 1rem;
		padding-left: 1rem;
	}

.oferts {
    width: 75%;
    color: var(--color);
    background: var(--btn-bg);
    padding: 1.5rem;
    border-radius: 1.5rem;
}
.oferts>h1 {
    font-size: 1.5rem;
    line-height: 1.7rem;
    padding-bottom: 2rem;
}
.oferts>h3 {
    padding: 1.3rem 0rem .3rem 0rem;
}
.oferts>p {padding-bottom: .4rem;}
.oferts>p>a {
    color: var(--btn-bg-2);
}
.oferts>p>a:hover {
    color: var(--btn-bg-2-hover);
}
.logaun-no-menu {
    background:  var(--btn-bg);
    padding: 1.5rem;
    border-radius: 1.5rem;
    width: 360px;
    height: max-content;
}
.logaun-no-menu>h1 {
    font-size: 1.1rem;
    text-align: center;
    color: var(--color);
}
.logaun-no-menu>p {
    text-align: center;
    color: var(--color);
    padding-bottom: 1rem;
}
.logaun-no-menu>section {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.logaun-no-menu>section>a {
    display: flex;
    color: var(--color);
    padding: .7rem 1rem;
    background: var(--footer-btn);
    border-radius: 1.5rem;
    gap: .5rem;
    width: 100%;
    justify-content: center;
}
.logaun-no-menu>section>a>svg {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    top: 2px;
}
.logaun-no-menu>section>a:hover {
    background: var(--footer-btn-hover);
}
.logaun-no-menu>.form-email {
	display: none;
}
.logaun-no-menu>.form-email.show {
	display: block;
}
.logaun-no-menu>.form-email>p {
    font-size: .9rem;
    line-height: .95rem;
    color: var(--color);
    padding: 1rem 0 .5rem 0;
}
.logaun-no-menu>.form-email>.btn {
    display: flex;
    gap: .6rem;
    padding: .9rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    align-items: center;
    width: 100%;
    justify-content: center;
    background: var(--btn-bg-2);
    color: var(--color-dark);
    margin-top: 1.5rem;
}
.logaun-no-menu>.form-email>.btn:hover {
    background: var(--btn-bg-2-hover);
}


.donate-board {
	background: var(--btn-bg);
	padding: 1.5rem 2rem;
	border-radius: 1.5rem;
	margin-top: 1rem;
}
.donate-board>h2 {
	font-size: 1rem;
    color: var(--color);
}
.donate-board>.block {}
.donate-board>.block>.top {
    display: flex;
    border-radius: .5rem;
    background: var(--bg);
    padding: .5rem 1rem;
    margin-bottom: .7rem;
    gap: 1rem;
    color: var(--color);
    font-weight: 500;
}
.donate-board>.block>.top>.date, .donate-board>.block>.box>.date {
    width: 15%;
    display: flex;
    align-items: center;
}
.donate-board>.block>.top>.text, .donate-board>.block>.box>.text {
    width: 70%;
}
.donate-board>.block>.box>.text>a {
    color: var(--btn-bg-2);
    text-decoration: auto;
}
.donate-board>.block>.box>.text>a:hover {
    color: var(--btn-bg-2-hover);
}
.donate-board>.block>.top>.amount, .donate-board>.block>.box>.amount {
    width: 15%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.donate-board>.block>.no-donate {
    text-align: center;
    color: var(--color);
}
.donate-board>.block>.box {
    display: flex;
    border-radius: .5rem;
    background: var(--footer-btn-hover);
    padding: .5rem 1rem;
    color: var(--color);
    gap: 1rem;
    margin-bottom: .6rem;
}

.min-height-rsya {
    min-height: 250px;
    padding: 1rem 0rem;
}



@media (min-width:901px) and (max-width:1025px) {
	.wrapper, footer {
		width: 95%;
	}
	.dropdown-menu.menu {
		width: 100%;
	}
	.wrap-center.index {
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: row;
    }
	.wrap-center.index>section {
		width: 520px;
	}
	.wrap-center.index>section>p {
		width: 100%;
	}
	.service>.box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.footer>.logotype {
		display: none;
	}
	.wrap-center>section.other>h1 {
		display: none;
	}
	.wrap-center {
		justify-content: space-between;
		flex-direction: column-reverse;
		align-items: center;
	}
	.wrap-center>section {
        width: 800px;
    }
	.raffle {
		flex-direction: column;
		align-items: center;
		width: 80%;
		gap: 1rem;
		padding-top: 2rem;
	}
	.raffle>.info>.foot {
		position: relative;
		bottom: auto;
	}
	.raffle>.info {
		margin-right: 0;
	}
	.raffle>.info>.center {
		padding: 4rem 0rem 2rem 0rem;
		height: max-content;
	}
	.raffle>.results {
		padding: 1.5rem;
		margin: 0;
	}
	.result-admin.num {
		width: 60%;
		margin: 0 auto;
	}
	.setting-admin.num>.setting-button {
		position: relative;
		bottom: auto;
	}
	.setting-admin.num>.setting-button {
		position: relative;
		bottom: auto;
		margin-top: 2rem;
	}
	.premium>.tariff {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.footer>.center {
		margin-left: 0;
		padding: .5rem 0rem .5rem 0;
	}
	.footer>.center:after {
		display: none;
	}
	.donate-board>.block>.top>.text, .donate-board>.block>.box>.text {
		width: 50%;
	}
	.donate-board>.block>.top>.date, .donate-board>.block>.box>.date, .donate-board>.block>.top>.amount, .donate-board>.block>.box>.amount {
		width: 25%;
	}

}
@media (min-width:701px) and (max-width:900px) {
	.wrapper, footer {
		width: 90%;
	}
	
	header>.top-menu>ul>li>button[data-id="auth"] {
		padding: .7rem .7rem;
	}
	header>.top-menu>ul>li>button[data-id="auth"]>span {
		display: none;
	}
	.wrap-center.index {
        gap: 2rem;
        padding-top: 2rem;
	} 
	.wrap-center {
		padding-top: 1rem;
        flex-direction: column-reverse;
    }
	.wrap-center.other {
		height: max-content;
    }
	.wrap-center>section {
		width: 100%;
	}
	.wrap-center>section>h1 {
        font-size: 1.6rem;
        line-height: 1rem;
        padding-bottom: 2rem;
        text-align: center;
    }
	.wrap-center.index>section>p {
        width: 100%;
        text-align: center;
    }
	.wrap-center>section.other>h1 {
		display: none;
	}
	.wrap-center.index>section>h1>br {
		content: " ";
		margin: 5px;
	}
	.wrap-center>form {
		width: 450px;
	}
	.service>.box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.footer>.logotype {
		display: none;
	}
	.footer>.center {
		margin-left: 0;
		padding: .5rem 0rem .5rem 0;
	}
	.footer>.center>.menu {
		display: flex;
		flex-direction: column;
		gap: .2rem;
	}
	.footer>.center>.menu>a {
		font-size: .9rem;
	}
	.footer>.right {
		display: flex;
		flex-direction: column;
		gap: .5rem;
		align-items: flex-start;
	}
	.footer>.right>.contact>.hidden {
		left: auto;
		right: 0;
	}
	.footer>.center:after {
		display: none;
	}
	.wrap-center>form {
        margin: 0 auto;
    }
	.wrap-center>section>p {
		width: 100%;
	}
	.dropdown-menu.menu {
		width: 100%;
	}
	.dropdown-menu.menu>div>ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.navigated-results>section>div>button[data-button="copy"]>span, .navigated-results>section>div>button[data-button="reload"]>span {
		display: none;
	}
	.navigated-results>section>div>button>.arrow {
		left: -27px;
	}
	.raffle {
		flex-direction: column;
	}
	.raffle>.info>.foot {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
	}
	.raffle>.info>.center {
		padding: 4rem 0rem 1rem 0rem;
		height: max-content;
	}
	.raffle>.results {
        margin: 1rem 0rem 0rem 0rem;
        padding: 1.5rem;
    }
	.setting-admin.num>.setting-button {
		position: relative;
		bottom: auto;
		margin-top: 1rem;
	}
	.profile {
		overflow: scroll;
	}
	.profile>.menu>.profile-new {
		display: none;
	}
	.profile>.profile-new-mobile {
		display: flex;
		width: max-content;
		margin-top: 1rem;
	}
	.premium>.tariff {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.donate-board>.block>.top>.date, .donate-board>.block>.box>.date, .donate-board>.block>.top>.amount, .donate-board>.block>.box>.amount {
		width: 25%;
	}
	
}
@media screen and (max-width:700px) {
	header {
		display: none;
	}
	.mobile {
		display: flex;
	}
	.footer>.right>.contact>.hidden {
		width: max-content;
		left: -29%;
		text-align: center;
	}
	.footer>.right>.contact>a.copy::before {
		content: attr(data-title);
		position: absolute;
		bottom: 110%;
		right: 0;
		left: 0;
		width: max-content;
		background: var(--btn-bg-2);
		padding: .2rem .5rem;
		color: var(--color-dark);
		border-radius: 1.5rem;
		font-size: .8rem;
		z-index: 3;
		margin: 0 auto;
	}
	.footer>.center:after {
		display: none;
	}
	.wrapper, footer {
		width: 100%;
		padding: 0rem 1rem;
	}
	.wrap-center {
        flex-direction: column-reverse;
        padding: 1rem 0rem 1rem 0rem;
    }
	.wrap-center.index {
        flex-direction: column;
    }
	.wrap-center.index.donate {
        flex-direction: column-reverse;
    }
	.wrap-center>section {
		width: 100%;
	}
	.wrap-center>section>p {
		width: 100%;
		font-weight: 400;
	}
	.wrap-center>form {
		width: 100%;
	}
	.wrap-center>section>h1 {
		font-size: 1.8rem;
		line-height: 2rem;
		padding-bottom: 1rem;
	}
	.service {
        padding: 1rem 0rem 1rem 0rem;
    }
	.service>.box {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.footer {
		display: flex;
		flex-direction: column;
	}
	.footer>.logotype{
		padding-bottom: .5rem;
	}
	.footer>.center {
		margin: 0;
		padding: 0;
	}
	.footer>.center>.menu {
		display: flex;
        gap: .5rem;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
	}
	.footer>.center>.copyright {
		display: none;
	}
	.footer>.right {
		flex-direction: column;
		align-items: center;
		gap: .5rem;
		padding-top: 1rem;
	}
	.footer>.right>.share>p {
		text-align: center;
	}
	.footer>.right>.copyright-mobile {
		display: block;
		text-align: center;
		font-size: .7rem;
		padding-top: .5rem;
	}
	.wrap-center>form>.grap-form.two {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 1rem;
		padding-bottom: 1rem;
	}
	.navigated-results>section>div>button:not([data-button="download"]) {
		padding: .6rem;
	}
	.navigated-results>section>div>button:not([data-button="download"])>span {
		display: none;
	}
	.other>.result>.top>.unix-time {
		text-align: center;
	}
	.other>.result>.top>.footnote {
		text-align: center;
	}
	.other>.result>.done>.list>.footnote>.block>span {
        font-size: .7rem;
        line-height: .5rem;
    }
	.other>.result>.done>.list>.footnote>.block>button {
		font-size: .7rem;
		padding: .5rem 1rem;
		line-height: .5rem;
	}
	.other>.result>.done>.list>.note {
		background: transparent;
		padding: 0;
		box-shadow: none;
	}
	.other>.result>.done>.list>.note:before {
		display: none;
	}
	.other>.result>.done>.list>.note>p {
		font-size: .8rem;
		padding-left: 0;
	}
	.other>.result>.done>.list>.footnote>.hidden {
		flex-direction: column;
		bottom: 3rem;
	}
	.form-checkbox.width {
		width: 100%;
	}
	.form-group>.two {
		flex-direction: column;
	}
	.form-checkbox.password {
		width: 100%;
	}
	.raffle>.info>.center>.status {
		font-size: .9rem;
		text-align: center;
	}
	.raffle>.info>.center>.admin>.link {
		font-size: .8rem;
	}
	.raffle {
		flex-direction: column;
		height: auto;
	}
	.raffle>.results {
		padding: 1.5rem;
		margin-left: 0;
	}
	.wrap-center.other {
		height: auto;
	}
	.raffle>.info>.premium {
		padding: .5rem .6rem;
	}
	.raffle>.info>.premium>span {
		display: none;
	}
	.raffle>.info>.date {
        position: relative;
        top: auto;
        left: auto;
        font-size: .8rem;
        width: max-content;
    }
	.raffle>.info>.center {
		padding: 1rem 0rem 1rem 0rem;
	}
	.raffle>.info>.foot {
		position: relative;
		bottom: auto;
	}
	.raffle>.info>.foot>div>p {
		padding-left: 0;
		font-size: .85rem;
	}
	.raffle>.info>.foot>div>p::before {
		display: none;
	}
	.raffle {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
	.setting-admin.num>.setting-button {
		position: relative;
		bottom: auto;
		margin-top: 1rem;
	}
	.result-admin.num {
		width: 100%;
	}
	.list-table>thead {
		display: none;
	}
	.list-table>tbody {
        display: grid;
        gap: 1rem;
    }
	.list-table>tbody>tr {
        display: flex;
        flex-direction: column;
        border-radius: 1.5rem;
        position: relative;
    }
	.list-table>tbody>tr>td {
        display: flex;
        gap: .5rem;
        font-size: 1.2rem;
        padding: .3rem 1.3rem;
    }
	.list-table>tbody>tr>td.views {
        position: absolute;
        right: 1.3rem;
        top: 1rem;
        display: flex;
        align-items: center;
        padding-right: 0;
    }
	.list-table>tbody>tr>td.link {
        padding-bottom: 1rem;
    }
	.list-table>tbody>tr>td>span {
		display: block;
	}
	.profile>.menu {
		overflow: scroll;
		position: relative;
	}
	.profile>.menu>ul {
		width: max-content;
		overflow-x: auto;
	}
	.profile>.menu>.profile-new {
		display: none;
    }
	.profile>.profile-new-mobile {
		display: flex;
		width: max-content;
		margin: 0 auto;
		margin-top: 1rem;
	}
	.premium>.tariff {
		grid-template-columns: repeat(1, minmax(0, 1fr));
        width: 80%;
        margin: 0 auto;
	}
	.premium>.premium-footer, .premium>p {
		width: 100%;
	}
	.premium>.tariff>form>ul>li>p {
		font-size: .9rem;
	}
	.button-theme-mobile {
		display: block;
	}
	.button-theme-mobile>button {
		position: absolute;
		padding: .7rem;
		background: var(--btn-bg-2);
		border-radius: 50%;
		left: 1rem;
		top: .85rem;
		color: var(--color-dark);
	}
	.button-theme-mobile>button>svg {
		width: 1.3rem;
		height: 1.3rem;
	}
	.oferts {
		width: 100%;
	}
	.donate-board>h2 {
		line-height: 1rem;
		padding-bottom: 1rem;
		text-align: center;
	}
	.donate-board>.block>.top {
		display: none;
	}
	.donate-board>.block>.box {
		display: flex;
		flex-direction: column;
		gap: .4rem;
	}
	.donate-board>.block>.box>.date {
		width: 100%;
		justify-content: flex-start;
	}
	.donate-board>.block>.box>.amount {
		width: 100%;
		display: flex;
		justify-content: flex-start;
	}
	.donate-board>.block>.box>.text {
		width: 100%;
	}
}