
@-ms-viewport { width: device-width; }
@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(Mons5.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(Mons2.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(Mons4.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(Mons3.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(Mons1.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
	--sizeround: 125px;
	--sizeroundout: 80px;
	--circlerad: calc(var(--sizeround) / 2 - 10px);
	--circlexy: calc(var(--sizeround) / 2);
	--circumference: calc(var(--circlerad) * 2 * 3.14)
}
:root {
--green: #6aaa64;
--darkendGreen: #538d4e;
--yellow: #c9b458;
--darkendYellow: #b59f3b;
--lightGray: #d8d8d8;
--gray: #86888a;
--darkGray: #939598;
--white: #fff;
--black: #212121;
--orange: #f5793a;
--blue: #85c0f9;
font-family: 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
font-size: 16px;
--header-height: 60px;
--keyboard-height: 200px;
/* --game-max-width: 500px; */
--game-max-width: 100%;
--transition: 1s;
}
:root {
--color-tone-1: #1a1a1b;
--color-tone-2: #787c7e;
--color-tone-3: #878a8c;
--color-tone-4: #f8efe0;
--color-tone-5: #edeff1;
--color-tone-6: #f6f7f8;
--color-tone-7: #ffffff;
--opacity-50: rgba(255, 255, 255, 0.5);
}
.nightmode {
--color-tone-1: #d7dadc;
--color-tone-2: #818384;
--color-tone-3: #565758;
--color-tone-4: #3a3a3c;
--color-tone-5: #272729;
--color-tone-6: #1a1a1b;
--color-tone-7: #121213;
--opacity-50: rgba(0, 0, 0, 0.5);
}
[invalid]{
	opacity: 0.9;
	animation-name: Shake;
	animation-duration: 600ms;
    background-color: #fc2f0e!important;
}
.win {
	animation-name: Bounce;
	animation-duration: 1000ms;
    background-color: #e2fc0e!important;
}
.pulse {
	z-index:992;
  animation-name: pulse;
  animation-duration: 500ms;
  transition: transform 1s;
}
.maxpulse {
	z-index:992;
  animation-name: maxpulse;
  animation-duration: 500ms;
  transition: transform 1s;
}
.antipulse {
	z-index:992;
  animation-name: antipulse;
  animation-duration: 500ms;
  transition: transform 1s;
}
.flipin {
  animation-name: FlipIn;
  animation-duration: 250ms;
  animation-timing-function: ease-in;
}
.flipout {
  animation-name: FlipOut;
  animation-duration: 250ms;
  animation-timing-function: ease-in;
}
.swipeDown {
	animation-name: swipeDown;
	animation-duration: 500ms;
	animation-timing-function: ease-in;
	animation-iteration-count: infinite;
}
@keyframes swipeDown {
    0% {
        background-position: 50% calc(20% - var(--sizeround));
    }
    25% {
        background-position: 35% calc(34% - var(--sizeround));
    }
    50% {
        background-position: 50% calc(48% - var(--sizeround));
    }
    75% {
        background-position: 65% calc(34% - var(--sizeround));
    }
    100% {
        background-position: 50% calc(20% - var(--sizeround));
    }
}


@keyframes SlideIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes SlideOut {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: translateY(60px);
    }
}
@keyframes pulse {
    0% { 
        transform: scale3d(1, 1, 1);
    }

    /* 35% { */
        /* transform: scale3d(1.5, 1.5, 1.5) */
    /* } */
    35% {
        transform: scale3d(1.7, 1.7, 1.7)
    }
    to { 
        transform: scale3d(1, 1, 1);
    }
}
@keyframes maxpulse {
    0% { 
        transform: scale3d(1, 1, 1);
    }

    35% {
        transform: scale3d(1.5, 1.5, 1.5)
    }
    45% {
        transform: scale3d(1.7, 1.7, 1.7)
    }

    to {
        transform: scale3d(0.2, 0.2, 0.2);
    }
}
@keyframes antipulse {
    0% { 
        transform: scale3d(0.2, 0.2, 0.2);
    }

    35% {
        transform: scale3d(1.7, 1.7, 1.7)
    }
    70% {
        transform: scale3d(1.5, 1.5, 1.5)
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}
@keyframes Bounce {
  0%, 20% {
	transform: translateY(0);
  }
  40% {
	transform: translateY(-30px);
  }
  50% {
	transform: translateY(5px);
  }
  60% {
	transform: translateY(-15px);
  }
  80% {
	transform: translateY(2px);
  }
  100% {
	transform: translateY(0);
  }
}
@keyframes FlipIn {
    0% {
        transform: rotateX(0);
    }

    100% {
        transform: rotateX(-90deg);
    }
}
@keyframes FlipOut {
    0% {
        transform: rotateX(-90deg);
    }

    100% {
        transform: rotateX(0);
    }
}
@keyframes Shake {
  10%,
  90% {
	transform: translateX(-1px);
  }

  20%,
  80% {
	transform: translateX(2px);
  }

  30%,
  50%,
  70% {
	transform: translateX(-4px);
  }

  40%,
  60% {
	transform: translateX(4px);
  }
}
@keyframes rotation {
    0% {
        transform:rotate(360deg);
    }
    100% {
        transform:rotate(0deg);
    }
}


:root,
.nightmode {
--color-background: var(--color-tone-7);
}
:root {
--color-present: var(--yellow);
--color-correct: var(--green);
--color-absent: var(--color-tone-2);
--tile-text-color: var(--color-tone-7);
--key-text-color: var(--color-tone-1);
--key-evaluated-text-color: var(--color-tone-7);
--key-bg: var(--color-tone-4);
--key-bg-present: var(--color-present);
--key-bg-correct: var(--color-correct);
--key-bg-absent: var(--color-absent);
--modal-content-bg: var(--color-tone-7);
}
.nightmode {
--color-present: var(--darkendYellow);
--color-correct: var(--darkendGreen);
--color-absent: var(--color-tone-4);
--tile-text-color: var(--color-tone-1);
--key-text-color: var(--color-tone-1);
--key-evaluated-text-color: var(--color-tone-1);
--key-bg: var(--color-tone-2);
--key-bg-present: var(--color-present);
--key-bg-correct: var(--color-correct);
--key-bg-absent: var(--color-absent);
--modal-content-bg: var(--color-tone-7);
}
.colorblind {
--color-correct: var(--orange);
--color-present: var(--blue);
--tile-text-color: var(--white);
--key-bg-present: var(--color-present);
--key-bg-correct: var(--color-correct);
--key-bg-absent: var(--color-absent);
}
* {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	-webkit-tap-highlight-color:  transparent; 
}

*::-webkit-scrollbar-button {
background-image:url('');
background-repeat:no-repeat;
width:0px;
height:5px;
margin-top:5px;
}

*::-webkit-scrollbar-track {
background-color:transparent;
}

*::-webkit-scrollbar-thumb {
-webkit-border-radius: 5px;
border-radius: 5px;
background-color:#3997c1;
}

*::-webkit-scrollbar-thumb:hover{
background-color:#005e7f;
}

*::-webkit-resizer{
background-image:url('');
background-repeat:no-repeat;
width:5px;
height:0px
}

*::-webkit-scrollbar{
    height: 6px;
    width: 6px;
}
@-ms-viewport { width: device-width; }
@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }
html {
	height:100%;
    overflow: hidden;
}
body {
	width:100%;
	min-width:320px;
    height: 100%;
    max-height: 100%;
    padding: 0px;
    overflow: hidden;
	font-family: 'Montserrat', math;
    font-size: 20px;
	  background: radial-gradient(circle, #4e94f9, #18213e);
    display: block;
	/* max-width:500px; */
	margin:0 auto;
}
html {
	/* background:#fffeee url("../fon1.jpg") repeat left top; */
	/* background-size:auto 100%; */
}
label {
	color: white;
}
a {
    text-decoration: none;
}
.separator {
    flex: 1;
}

#game {
    width: 100%;
    /* max-width: var(--game-max-width); */
    margin: 0 auto;
    min-height: 100%;
    /* padding-top: calc(var(--header-height) + 10px); */
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
    align-items: center;
    overflow: hidden;
}

#gameback {
	opacity: .4;position: absolute;left: 0;top: 0;bottom: 0;width: 100%;height: 100%;
}
#sts {
	color:white;position:absolute;top:var(--header-height);left: 5px;
    margin-top: 10px;
    font-size: 30px;
    padding-left: 35px;
    height: 35px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3CclipPath id='clip-pointer'%3E%3Crect width='32' height='32'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='pointer' clip-path='url(%23clip-pointer)'%3E%3Cg id='Group_2341' data-name='Group 2341' transform='translate(-416 -260)'%3E%3Cg id='Group_2340' data-name='Group 2340'%3E%3Cg id='Group_2339' data-name='Group 2339'%3E%3Cpath id='Path_3839' data-name='Path 3839' d='M442.485,279.1a2.963,2.963,0,0,0-.4-3.687,2.917,2.917,0,0,0-1.334-.755,3.238,3.238,0,0,0-.733-3.431,3.1,3.1,0,0,0-1.288-.754l4.6-4.6a3.44,3.44,0,1,0-4.865-4.864l-8.978,8.978a5.419,5.419,0,0,0-3.292.09,11.01,11.01,0,0,0-5.9,6.239,12.163,12.163,0,0,0,.758,9.429,10.684,10.684,0,0,0,6.544,5.92,8.835,8.835,0,0,0,7.174-1.076,52.474,52.474,0,0,0,8.1-6.979,2.957,2.957,0,0,0,0-4.185A3,3,0,0,0,442.485,279.1Zm-.931,3.233a51.5,51.5,0,0,1-7.777,6.712,7.007,7.007,0,0,1-5.683.854,8.648,8.648,0,0,1-5.389-4.952,10.341,10.341,0,0,1-.683-8.007,9.158,9.158,0,0,1,4.895-5.173,2.549,2.549,0,0,1,.945-.155l-2.445,2.445a.919.919,0,0,0,1.3,1.3l3.688-3.689,0,0,9.355-9.354a1.6,1.6,0,0,1,2.267,2.267l-7.98,7.98a.918.918,0,0,0,1.3,1.3l1.216-1.215a.87.87,0,0,0,.172-.114,1.435,1.435,0,0,1,1.982,0,1.415,1.415,0,0,1-.028,2.015l-.878.962a.918.918,0,1,0,1.357,1.237l.02-.021.01-.007a1.123,1.123,0,0,1,1.665,1.5l-.812.436a2.95,2.95,0,0,0-1.364.778.919.919,0,0,0,1.085,1.458l.9-.483a1.124,1.124,0,0,1,1.232,1.117A1.134,1.134,0,0,1,441.554,282.332Z' fill='%23ffffff'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: left center;
}

.palecinfo {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3CclipPath id='clip-pointer'%3E%3Crect width='32' height='32'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='pointer' clip-path='url(%23clip-pointer)'%3E%3Cg id='Group_2341' data-name='Group 2341' transform='translate(-416 -260)'%3E%3Cg id='Group_2340' data-name='Group 2340'%3E%3Cg id='Group_2339' data-name='Group 2339'%3E%3Cpath id='Path_3839' data-name='Path 3839' d='M442.485,279.1a2.963,2.963,0,0,0-.4-3.687,2.917,2.917,0,0,0-1.334-.755,3.238,3.238,0,0,0-.733-3.431,3.1,3.1,0,0,0-1.288-.754l4.6-4.6a3.44,3.44,0,1,0-4.865-4.864l-8.978,8.978a5.419,5.419,0,0,0-3.292.09,11.01,11.01,0,0,0-5.9,6.239,12.163,12.163,0,0,0,.758,9.429,10.684,10.684,0,0,0,6.544,5.92,8.835,8.835,0,0,0,7.174-1.076,52.474,52.474,0,0,0,8.1-6.979,2.957,2.957,0,0,0,0-4.185A3,3,0,0,0,442.485,279.1Zm-.931,3.233a51.5,51.5,0,0,1-7.777,6.712,7.007,7.007,0,0,1-5.683.854,8.648,8.648,0,0,1-5.389-4.952,10.341,10.341,0,0,1-.683-8.007,9.158,9.158,0,0,1,4.895-5.173,2.549,2.549,0,0,1,.945-.155l-2.445,2.445a.919.919,0,0,0,1.3,1.3l3.688-3.689,0,0,9.355-9.354a1.6,1.6,0,0,1,2.267,2.267l-7.98,7.98a.918.918,0,0,0,1.3,1.3l1.216-1.215a.87.87,0,0,0,.172-.114,1.435,1.435,0,0,1,1.982,0,1.415,1.415,0,0,1-.028,2.015l-.878.962a.918.918,0,1,0,1.357,1.237l.02-.021.01-.007a1.123,1.123,0,0,1,1.665,1.5l-.812.436a2.95,2.95,0,0,0-1.364.778.919.919,0,0,0,1.085,1.458l.9-.483a1.124,1.124,0,0,1,1.232,1.117A1.134,1.134,0,0,1,441.554,282.332Z' fill='%23ffffff'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 30%;
    background-size: var(--sizeround);
    z-index: 1043;
    color: white;
    padding: 0 20px;
	animation-name: swipeDown;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    text-align: center;
}
.palecinfo.cursor {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 4.94198C6.47561 4.02693 5.129 3.65381 4.39141 4.39141C3.55146 5.23136 4.15187 6.86106 5.3527 10.1205L7.3603 15.5696C7.96225 17.2035 8.26322 18.0204 8.92489 18.1658C9.58656 18.3111 10.2022 17.6955 11.4334 16.4643L12.6361 15.2616L16.5744 19.1999C16.9821 19.6077 17.186 19.8116 17.4135 19.9058C17.7168 20.0314 18.0575 20.0314 18.3608 19.9058C18.5882 19.8116 18.7921 19.6077 19.1999 19.1999C19.6077 18.7921 19.8116 18.5882 19.9058 18.3608C20.0314 18.0575 20.0314 17.7168 19.9058 17.4135C19.8116 17.186 19.6077 16.9821 19.1999 16.5744L15.2616 12.6361L16.4643 11.4334C17.6955 10.2022 18.3111 9.58656 18.1658 8.92489C18.0204 8.26322 17.2035 7.96225 15.5696 7.3603L13 6.41359' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

header {
    /* position: absolute; */
    /* top: 0; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    width: 100%;
    height: var(--header-height);
    color: #ffffff;
    /* border-bottom: 1px solid var(--color-tone-4); */
    background: #68b8d3cf;
    box-shadow: -1px 4px 14px 4px #0000004d;
    z-index: 1032;
	opacity:0;
	transition: opacity .5s linear;
}
header .title {
    font-weight: 700;
    font-size: 130%;
    letter-spacing: 0rem;
    text-transform: uppercase;
    text-align: center;
	text-shadow: 0px 3px 3px #000000;
    /* position: absolute; */
    /* left: 0; */
    /* right: 0; */
}
header .buttons {
    display: flex;
    justify-content: space-around;
}
header .user {
	display:flex;
}
.balance, .fires, .lifes, .yans {
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px;
    padding-top: 0px;
    text-align: right;
    margin-right: 5px;
    margin-left: 5px;
    line-height: 26px;
    font-size: 100%;
    cursor: pointer;
    font-weight: bold;
    position: relative;
	display: inline-block;
}
header .balance, header .fires, header .lifes {
    padding-left: 5px;
}
.money,.fire,.life {
    /* background-size: 35px; */
    background-repeat: no-repeat;
    background-position: right center;
    position: relative;
}
.shar .fires, .shar .yans {
    background-size: 20px;
    padding-right: 25px;
    line-height: 23px;
}

.opyt {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 22H21' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 17C3 17.9428 3 18.4142 3.29289 18.7071C3.58579 19 4.05719 19 5 19C5.94281 19 6.41421 19 6.70711 18.7071C7 18.4142 7 17.9428 7 17V11C7 10.0572 7 9.58579 6.70711 9.29289C6.41421 9 5.94281 9 5 9C4.05719 9 3.58579 9 3.29289 9.29289C3 9.58579 3 10.0572 3 11V13' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M10 7C10 6.05719 10 5.58579 10.2929 5.29289C10.5858 5 11.0572 5 12 5C12.9428 5 13.4142 5 13.7071 5.29289C14 5.58579 14 6.05719 14 7V17C14 17.9428 14 18.4142 13.7071 18.7071C13.4142 19 12.9428 19 12 19C11.0572 19 10.5858 19 10.2929 18.7071C10 18.4142 10 17.9428 10 17V7Z' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cpath d='M21 11V17C21 17.9428 21 18.4142 20.7071 18.7071C20.4142 19 19.9428 19 19 19C18.0572 19 17.5858 19 17.2929 18.7071C17 18.4142 17 17.9428 17 17V4C17 3.05719 17 2.58579 17.2929 2.29289C17.5858 2 18.0572 2 19 2C19.9428 2 20.4142 2 20.7071 2.29289C21 2.58579 21 3.05719 21 4V7' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 28px;
    padding-top: 2px;
    text-align: right;
    margin-right: 10px;
    line-height: 26px;
    /* font-size: 80%; */
    /* font-weight: bold; */
}
.opyt.dark {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 22H21' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 17C3 17.9428 3 18.4142 3.29289 18.7071C3.58579 19 4.05719 19 5 19C5.94281 19 6.41421 19 6.70711 18.7071C7 18.4142 7 17.9428 7 17V11C7 10.0572 7 9.58579 6.70711 9.29289C6.41421 9 5.94281 9 5 9C4.05719 9 3.58579 9 3.29289 9.29289C3 9.58579 3 10.0572 3 11V13' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M10 7C10 6.05719 10 5.58579 10.2929 5.29289C10.5858 5 11.0572 5 12 5C12.9428 5 13.4142 5 13.7071 5.29289C14 5.58579 14 6.05719 14 7V17C14 17.9428 14 18.4142 13.7071 18.7071C13.4142 19 12.9428 19 12 19C11.0572 19 10.5858 19 10.2929 18.7071C10 18.4142 10 17.9428 10 17V7Z' stroke='%23000000' stroke-width='1.5'/%3E%3Cpath d='M21 11V17C21 17.9428 21 18.4142 20.7071 18.7071C20.4142 19 19.9428 19 19 19C18.0572 19 17.5858 19 17.2929 18.7071C17 18.4142 17 17.9428 17 17V4C17 3.05719 17 2.58579 17.2929 2.29289C17.5858 2 18.0572 2 19 2C19.9428 2 20.4142 2 20.7071 2.29289C21 2.58579 21 3.05719 21 4V7' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.level {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.03954 7.77203C3.57986 8.32856 2.35002 8.60682 2.05742 9.54773C1.76482 10.4886 2.60325 11.4691 4.2801 13.4299L4.71392 13.9372C5.19043 14.4944 5.42868 14.773 5.53586 15.1177C5.64305 15.4624 5.60703 15.8341 5.53498 16.5776L5.4694 17.2544C5.21588 19.8706 5.08912 21.1787 5.85515 21.7602C6.62118 22.3417 7.77268 21.8115 10.0757 20.7512L10.6715 20.4768C11.3259 20.1755 11.6531 20.0248 12 20.0248C12.3469 20.0248 12.6741 20.1755 13.3285 20.4768L13.9243 20.7512C16.2273 21.8115 17.3788 22.3417 18.1449 21.7602C18.9109 21.1787 18.7841 19.8706 18.5306 17.2544M19.7199 13.4299C21.3968 11.4691 22.2352 10.4886 21.9426 9.54773C21.65 8.60682 20.4201 8.32856 17.9605 7.77203L17.3241 7.62805C16.6251 7.4699 16.2757 7.39083 15.9951 7.17781C15.7144 6.96479 15.5345 6.64193 15.1745 5.99623L14.8468 5.40837C13.5802 3.13612 12.9469 2 12 2C11.0531 2 10.4198 3.13613 9.15316 5.40838' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: right center;
    /* padding-right: 28px; */
    padding-top: 2px;
    text-align: right;
    margin-right: 10px;
    line-height: 26px;
    /* font-size: 80%; */
    /* font-weight: bold; */
}
.level.dark {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.03954 7.77203C3.57986 8.32856 2.35002 8.60682 2.05742 9.54773C1.76482 10.4886 2.60325 11.4691 4.2801 13.4299L4.71392 13.9372C5.19043 14.4944 5.42868 14.773 5.53586 15.1177C5.64305 15.4624 5.60703 15.8341 5.53498 16.5776L5.4694 17.2544C5.21588 19.8706 5.08912 21.1787 5.85515 21.7602C6.62118 22.3417 7.77268 21.8115 10.0757 20.7512L10.6715 20.4768C11.3259 20.1755 11.6531 20.0248 12 20.0248C12.3469 20.0248 12.6741 20.1755 13.3285 20.4768L13.9243 20.7512C16.2273 21.8115 17.3788 22.3417 18.1449 21.7602C18.9109 21.1787 18.7841 19.8706 18.5306 17.2544M19.7199 13.4299C21.3968 11.4691 22.2352 10.4886 21.9426 9.54773C21.65 8.60682 20.4201 8.32856 17.9605 7.77203L17.3241 7.62805C16.6251 7.4699 16.2757 7.39083 15.9951 7.17781C15.7144 6.96479 15.5345 6.64193 15.1745 5.99623L14.8468 5.40837C13.5802 3.13612 12.9469 2 12 2C11.0531 2 10.4198 3.13613 9.15316 5.40838' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.menu {
	position:relative;
	width:60px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
}
em {
	display: block;
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 10px;
	height: 10px;
	background: red;
	border-radius: 10px;
	box-shadow: -2px -2px 3px #ffffff70;
	animation-name: antipulse;
	animation-duration: 500ms;
	transition: transform 1s;
}
.shar em {
	right:0;
	bottom:0;
}
button.icon {
    /* background: none; */
    border: none;
    cursor: pointer;
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: 30px 30px;
}
.dropdown-content {
    display: none;
    position: absolute;
	top:100%;
    background-color: #f9f9f9;
    right: 0;
    /* left: 0; */
	border-radius:5px;
}
.dropdown-content a {
    color: black;
    padding: 10px 10px 10px 25px;
    text-decoration: none;
    display: block;
    width: 100%;
	border-radius:5px;
    background-position-x: 5px;
	cursor:pointer;
}
.dropdown-content a:first-child
{
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABAlBMVEX5+f0AAAD4HRj4HBiAgIAAAAA8NS9HcEwSEv4JCQkREf4XF/6AgIB/f39/f38ICNL4HBcPD/4MDP4ICAivr68GBrAUFP4TE/4YGP4QEf54eHjT09PR0dH4GhbS0tLNzdEVFf4JCdEQEP74GBMHB9F3d3fDw8PNEQ0ODv7UKA74FxMaFhP4GhW0PRCyIwypUBQhGxUDAwM0Lig6My0jHRc6NC7VRBIEBAQaFhM2MCrJXBcHBq4HB6+rDwwLC/6rq68SEv/////39/f8eCH/WBz/NxcQEP8REf8ODv8TE///Nxj/NRX/MxP/VRkLC//8dx7/Vhv8dyD/Vxz/Vxv8eCD8dx/WPR4zAAAAQHRSTlP+Af7+EwJEAP4B/v4SEhHf/v7+Abm5/v7+/gfO3/7f3/7f/v7fBafe/t/+IP65ubJCAUNDQkPfASpD17m5uf658QIbcQAAAKBJREFUGNNdyNUSgmAUhdGDqD+CEmJ3d3e3IGX7/q8iKDKD62LPng8QhmEuk34RxGif12ny+ugixHc2JUhsbQKQ+g9psFlDlshQESoUJnQk518AI0jS5ksUTucgMCdBtIWCn4uSxAeZq6zmUM4nWdxhwHG2UVtCVVWOOlk2VlFbMNIeh5/7VWvC7PXcW26XNkwG06Hb1O916oDGvMfCd9EbqS0nxlX4pZkAAAAASUVORK5CYII=") no-repeat 5px center;
}

.dropdown-content a:nth-child(2)
{
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAThQTFRFR3BM7f///zEA6v//AF6a3gAA3AAAAAAAAAAA3QAA7P//AFaU////4AAA2wAA/ycA7v///yYAAFmX3gAA3QAAAFeU/66nAEOn0uTzwvD/AFW+0en6AGvm6////04f/wkA/xYA/yIA7gAAAFaVAF6iAFiXAFeVq8bl/66m/6uf/P//osDhAEGmgLHioMHis93e8f//zN7w+v//zeHz/v7/AFmWAESttdjZyt7xosHh9P//8QAA/6+oAFO+AE2y/2Q9zd7wAF6hVqTo4f//zef60+X1AF7NAE2zAGrmAF3N1Ob2AE20/7evwuX80eb3/wcAAF7OAFbHwfD/wer/+///tN3e8P///yQAAGvr/xUA/yMA/wgA9///s9jY/wUA/xcA/2A/s9fZ/yEA/4+C/3Zh/xQAs9bXs9fYWEbKGQAAAAp0Uk5TAP///7DF/zMw8sFw1NAAAACzSURBVBjThc81FsJQFADRB8HJDwR3d3d3d3d39r8DAlU4FNx6mgH4iyWxCil2m0VKEASHDRIn7sXTeMDjdikUuZ4UHLgvrCwpU4mIAMP04j3I/dGCqqnq9odG4/ZwRSCP5euajmYwnlEFJn5AvFJraxva0XRtOpruNwTlakutU+smq92neEK2SJIiCrncmM2XE4JkhiH40GPv4gzIwKQxIAiGGDSLOfBlHBoZH3jcL7yf2RdgYhjgPJRrJwAAAABJRU5ErkJggg==") no-repeat 5px center;
}

.dropdown-content a:nth-child(3)
{
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAASFBMVEU/AgYyAgU1AgXjChe/CBM2AgUzAgU8AgZHcEzDCBPjCxjwfYTjDhvucnrkFiLlICzubXXykJbnMz7pRE773+HubnbsWmL4xsmYdNEQAAAACnRSTlMnHR3/ux0dJwC73ZnOiwAAAEJJREFUGNNj4EADDBgCTAwogJWBhRkFcGIXEBYU4EMWEBMRYubnQRIQF2Vm5uLl5sItgKEFw1AC7mBkRwFsDAR9CwAe+wYfJ5lADQAAAABJRU5ErkJggg==") no-repeat 5px center;
}
.dropdown-content a:nth-child(4)
{  
	background: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10.125 8.875C10.125 7.83947 10.9645 7 12 7C13.0355 7 13.875 7.83947 13.875 8.875C13.875 9.56245 13.505 10.1635 12.9534 10.4899C12.478 10.7711 12 11.1977 12 11.75V13' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3e%3ccircle cx='12' cy='16' r='1' fill='%23000000'/%3e%3cpath d='M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e") no-repeat 5px center;
    background-size: 18px;
}
.dropdown-content a.its {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAAdgAAAHYBTnsmCAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAElSURBVDiNxdIxS8NAGMbx5z2ig1uKiOQDBNRNUDeXDg6Cg1BxLEIVG7+A6JBJnAUhTp1czDeoxWzi0lpcHJxdhA5iQiR3udepEE9LrEtvvt//vTsOmPSicUGj4+2S1ieJSqZy5KdjBfZvvUOAL4eDB5+Dd/FfDAAEmrFqN7XpSmW2Dg2bmFvBRvD2FyxzCQLdC9ueazHTFROdayEeGx3PLcNKKyQy6SFVVQHwVmG/Q8zRMDIKx1nc41SuhjthLgA8GCd2iDk6aHtnZRgAhBC6DuDFjDDxcRkGABFUg1fLwjqAZ/Pxivgji/uLXXetiFGc0Iya80rhDsDCb3ip6674vq/M+LePZEbK8I8AAOy1jxyL8otMy+VEpk/h5vU2CHrU9Sa/vgCLC6zSlbaHVgAAAABJRU5ErkJggg==");
}
.dropdown-content a.off {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.95863 8.57679C2.24482 8.04563 2.79239 7.53042 3.33997 7.27707C3.9393 6.99979 4.62626 6.99979 6.00018 6.99979C6.51225 6.99979 6.76828 6.99979 7.01629 6.95791C7.26147 6.9165 7.50056 6.84478 7.72804 6.74438C7.95815 6.64283 8.1719 6.50189 8.59941 6.22002L8.81835 6.07566C11.3613 4.39898 12.6328 3.56063 13.7001 3.92487C13.9048 3.9947 14.1029 4.09551 14.2798 4.21984C15.2025 4.86829 15.2726 6.37699 15.4128 9.3944C15.4647 10.5117 15.5001 11.4679 15.5001 11.9998C15.5001 12.5317 15.4647 13.4879 15.4128 14.6052C15.2726 17.6226 15.2025 19.1313 14.2798 19.7797C14.1029 19.9041 13.9048 20.0049 13.7001 20.0747C12.6328 20.4389 11.3613 19.6006 8.81834 17.9239L8.59941 17.7796C8.1719 17.4977 7.95815 17.3567 7.72804 17.2552C7.50056 17.1548 7.26147 17.0831 7.01629 17.0417C6.76828 16.9998 6.51225 16.9998 6.00018 16.9998C4.62626 16.9998 3.9393 16.9998 3.33997 16.7225C2.79239 16.4692 2.24482 15.9539 1.95863 15.4228C1.6454 14.8414 1.60856 14.237 1.53488 13.0282C1.52396 12.849 1.51525 12.6722 1.50928 12.4998' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M22 10L18 14M18 10L22 14' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
}
.sndset {
	display: flex;
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    height: var(--sizeround);
    justify-content: center;
}
.sndset a{
	margin:0 20px;
    display: block;
    width: var(--sizeround);
    height: var(--sizeround);
    background-size: var(--sizeround);
    background-position-x: 0;
}
.snd{
  background: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9 19C9 20.6569 7.65685 22 6 22C4.34315 22 3 20.6569 3 19C3 17.3431 4.34315 16 6 16C7.65685 16 9 17.3431 9 19Z' stroke='%23ffffff' stroke-width='1.5'/%3e%3cpath d='M21 17C21 18.6569 19.6569 20 18 20C16.3431 20 15 18.6569 15 17C15 15.3431 16.3431 14 18 14C19.6569 14 21 15.3431 21 17Z' stroke='%23ffffff' stroke-width='1.5'/%3e%3cpath d='M9 19V8' stroke='%23ffffff' stroke-width='1.5'/%3e%3cpath d='M20.25 11.5C20.25 11.9142 20.5858 12.25 21 12.25C21.4142 12.25 21.75 11.9142 21.75 11.5H20.25ZM21.75 11.5V6H20.25V11.5H21.75Z' fill='%23ffffff'/%3e%3cpath d='M15.7351 3.75466L11.7351 5.08799C10.4151 5.52801 9.75503 5.74801 9.37752 6.27179C9 6.79556 9 7.49128 9 8.88273V11.9997L21 7.99969V7.54939C21 5.01693 21 3.7507 20.1694 3.15206C19.3388 2.55341 18.1376 2.95383 15.7351 3.75466Z' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e") no-repeat center;
}
.aud{
  background: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12 19.5C12 20.8807 10.8807 22 9.5 22C8.11929 22 7 20.8807 7 19.5C7 18.1193 8.11929 17 9.5 17C10.8807 17 12 18.1193 12 19.5Z' stroke='%23ffffff' stroke-width='1.5'/%3e%3cpath d='M22 17.5C22 18.8807 20.8807 20 19.5 20C18.1193 20 17 18.8807 17 17.5C17 16.1193 18.1193 15 19.5 15C20.8807 15 22 16.1193 22 17.5Z' stroke='%23ffffff' stroke-width='1.5'/%3e%3cpath d='M22 8L12 12' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M14.4556 5.15803L14.7452 5.84987L14.4556 5.15803ZM16.4556 4.32094L16.1661 3.62909L16.4556 4.32094ZM21.1081 3.34059L20.6925 3.96496L20.6925 3.96496L21.1081 3.34059ZM21.25 12.0004C21.25 12.4146 21.5858 12.7504 22 12.7504C22.4142 12.7504 22.75 12.4146 22.75 12.0004H21.25ZM12.75 19.0004V8.84787H11.25V19.0004H12.75ZM14.7452 5.84987L16.7452 5.01278L16.1661 3.62909L14.1661 4.46618L14.7452 5.84987ZM22.75 8.01078C22.75 6.67666 22.752 5.59091 22.6304 4.76937C22.5067 3.93328 22.2308 3.18689 21.5236 2.71622L20.6925 3.96496C20.8772 4.08787 21.0473 4.31771 21.1466 4.98889C21.248 5.67462 21.25 6.62717 21.25 8.01078H22.75ZM16.7452 5.01278C18.0215 4.47858 18.901 4.11263 19.5727 3.94145C20.2302 3.77391 20.5079 3.84204 20.6925 3.96496L21.5236 2.71622C20.8164 2.24554 20.0213 2.2792 19.2023 2.48791C18.3975 2.69298 17.3967 3.114 16.1661 3.62909L16.7452 5.01278ZM12.75 8.84787C12.75 8.18634 12.751 7.74991 12.7875 7.41416C12.822 7.09662 12.8823 6.94006 12.9594 6.8243L11.7106 5.99325C11.4527 6.38089 11.3455 6.79864 11.2963 7.25218C11.249 7.68752 11.25 8.21893 11.25 8.84787H12.75ZM14.1661 4.46618C13.5859 4.70901 13.0953 4.91324 12.712 5.12494C12.3126 5.34549 11.9686 5.60562 11.7106 5.99325L12.9594 6.8243C13.0364 6.70855 13.1575 6.59242 13.4371 6.438C13.7328 6.27473 14.135 6.10528 14.7452 5.84987L14.1661 4.46618ZM22.75 12.0004V8.01078H21.25V12.0004H22.75Z' fill='%23ffffff'/%3e%3cpath d='M7 11V6.5V2' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3ccircle cx='4.5' cy='10.5' r='2.5' stroke='%23ffffff' stroke-width='1.5'/%3e%3cpath d='M10 5C8.75736 5 7 4.07107 7 2' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e") no-repeat center;
}
.sndset a.off {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.95863 8.57679C2.24482 8.04563 2.79239 7.53042 3.33997 7.27707C3.9393 6.99979 4.62626 6.99979 6.00018 6.99979C6.51225 6.99979 6.76828 6.99979 7.01629 6.95791C7.26147 6.9165 7.50056 6.84478 7.72804 6.74438C7.95815 6.64283 8.1719 6.50189 8.59941 6.22002L8.81835 6.07566C11.3613 4.39898 12.6328 3.56063 13.7001 3.92487C13.9048 3.9947 14.1029 4.09551 14.2798 4.21984C15.2025 4.86829 15.2726 6.37699 15.4128 9.3944C15.4647 10.5117 15.5001 11.4679 15.5001 11.9998C15.5001 12.5317 15.4647 13.4879 15.4128 14.6052C15.2726 17.6226 15.2025 19.1313 14.2798 19.7797C14.1029 19.9041 13.9048 20.0049 13.7001 20.0747C12.6328 20.4389 11.3613 19.6006 8.81834 17.9239L8.59941 17.7796C8.1719 17.4977 7.95815 17.3567 7.72804 17.2552C7.50056 17.1548 7.26147 17.0831 7.01629 17.0417C6.76828 16.9998 6.51225 16.9998 6.00018 16.9998C4.62626 16.9998 3.9393 16.9998 3.33997 16.7225C2.79239 16.4692 2.24482 15.9539 1.95863 15.4228C1.6454 14.8414 1.60856 14.237 1.53488 13.0282C1.52396 12.849 1.51525 12.6722 1.50928 12.4998' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M22 10L18 14M18 10L22 14' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.menu:hover .dropdown-content, .menu:active .dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#lang-button {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='12' cy='12' r='3' stroke='%23ffffff' stroke-width='1.5'/%3e%3cpath d='M3.66122 10.6392C4.13377 10.9361 4.43782 11.4419 4.43782 11.9999C4.43781 12.558 4.13376 13.0638 3.66122 13.3607C3.33966 13.5627 3.13248 13.7242 2.98508 13.9163C2.66217 14.3372 2.51966 14.869 2.5889 15.3949C2.64082 15.7893 2.87379 16.1928 3.33973 16.9999C3.80568 17.8069 4.03865 18.2104 4.35426 18.4526C4.77508 18.7755 5.30694 18.918 5.83284 18.8488C6.07287 18.8172 6.31628 18.7185 6.65196 18.5411C7.14544 18.2803 7.73558 18.2699 8.21895 18.549C8.70227 18.8281 8.98827 19.3443 9.00912 19.902C9.02332 20.2815 9.05958 20.5417 9.15224 20.7654C9.35523 21.2554 9.74458 21.6448 10.2346 21.8478C10.6022 22 11.0681 22 12 22C12.9319 22 13.3978 22 13.7654 21.8478C14.2554 21.6448 14.6448 21.2554 14.8478 20.7654C14.9404 20.5417 14.9767 20.2815 14.9909 19.9021C15.0117 19.3443 15.2977 18.8281 15.7811 18.549C16.2644 18.27 16.8545 18.2804 17.3479 18.5412C17.6837 18.7186 17.9271 18.8173 18.1671 18.8489C18.693 18.9182 19.2249 18.7756 19.6457 18.4527C19.9613 18.2106 20.1943 17.807 20.6603 17C20.8677 16.6407 21.029 16.3614 21.1486 16.1272M20.3387 13.3608C19.8662 13.0639 19.5622 12.5581 19.5621 12.0001C19.5621 11.442 19.8662 10.9361 20.3387 10.6392C20.6603 10.4372 20.8674 10.2757 21.0148 10.0836C21.3377 9.66278 21.4802 9.13092 21.411 8.60502C21.3591 8.2106 21.1261 7.80708 20.6601 7.00005C20.1942 6.19301 19.9612 5.7895 19.6456 5.54732C19.2248 5.22441 18.6929 5.0819 18.167 5.15113C17.927 5.18274 17.6836 5.2814 17.3479 5.45883C16.8544 5.71964 16.2643 5.73004 15.781 5.45096C15.2977 5.1719 15.0117 4.6557 14.9909 4.09803C14.9767 3.71852 14.9404 3.45835 14.8478 3.23463C14.6448 2.74458 14.2554 2.35523 13.7654 2.15224C13.3978 2 12.9319 2 12 2C11.0681 2 10.6022 2 10.2346 2.15224C9.74458 2.35523 9.35523 2.74458 9.15224 3.23463C9.05958 3.45833 9.02332 3.71848 9.00912 4.09794C8.98826 4.65566 8.70225 5.17191 8.21891 5.45096C7.73557 5.73002 7.14548 5.71959 6.65205 5.4588C6.31633 5.28136 6.0729 5.18269 5.83285 5.15108C5.30695 5.08185 4.77509 5.22436 4.35427 5.54727C4.03866 5.78945 3.80569 6.19297 3.33974 7C3.13231 7.35929 2.97105 7.63859 2.85138 7.87273' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
}
#home {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19 22H5C4.44772 22 4 21.5523 4 21V13H2L11.292 3.70698C11.4796 3.51921 11.7341 3.4137 11.9995 3.4137C12.2649 3.4137 12.5194 3.51921 12.707 3.70698L22 13H20V21C20 21.5523 19.5523 22 19 22ZM10 15H14V20H18V11.828L12 5.82798L6 11.828V20H10V15Z' fill='%23ffffff'/%3e%3c/svg%3e");
	background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M22 22L2 22' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M2 11L6.06296 7.74968M22 11L13.8741 4.49931C12.7784 3.62279 11.2216 3.62279 10.1259 4.49931L9.34398 5.12486' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M15.5 5.5V3.5C15.5 3.22386 15.7239 3 16 3H18.5C18.7761 3 19 3.22386 19 3.5V8.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M4 22V9.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M20 9.5V13.5M20 22V17.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M15 22V17C15 15.5858 15 14.8787 14.5607 14.4393C14.1213 14 13.4142 14 12 14C10.5858 14 9.87868 14 9.43934 14.4393M9 22V17' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M14 9.5C14 10.6046 13.1046 11.5 12 11.5C10.8954 11.5 10 10.6046 10 9.5C10 8.39543 10.8954 7.5 12 7.5C13.1046 7.5 14 8.39543 14 9.5Z' stroke='%23ffffff' stroke-width='1.5'/%3e%3c/svg%3e");
}
#help-button {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10.125 8.875C10.125 7.83947 10.9645 7 12 7C13.0355 7 13.875 7.83947 13.875 8.875C13.875 9.56245 13.505 10.1635 12.9534 10.4899C12.478 10.7711 12 11.1977 12 11.75V13' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3ccircle cx='12' cy='16' r='1' fill='%23ffffff'/%3e%3cpath d='M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
}
#shop {
	zoom: 1.3;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5 21.5V18.5C9.5 17.5654 9.5 17.0981 9.70096 16.75C9.83261 16.522 10.022 16.3326 10.25 16.201C10.5981 16 11.0654 16 12 16C12.9346 16 13.4019 16 13.75 16.201C13.978 16.3326 14.1674 16.522 14.299 16.75C14.5 17.0981 14.5 17.5654 14.5 18.5V21.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M21 22H9M3 22H5.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M19 22V15' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M5 22V15' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M11.9999 2H7.47214C6.26932 2 5.66791 2 5.18461 2.2987C4.7013 2.5974 4.43234 3.13531 3.89443 4.21114L2.49081 7.75929C2.16652 8.57905 1.88279 9.54525 2.42867 10.2375C2.79489 10.7019 3.36257 11 3.99991 11C5.10448 11 5.99991 10.1046 5.99991 9C5.99991 10.1046 6.89534 11 7.99991 11C9.10448 11 9.99991 10.1046 9.99991 9C9.99991 10.1046 10.8953 11 11.9999 11C13.1045 11 13.9999 10.1046 13.9999 9C13.9999 10.1046 14.8953 11 15.9999 11C17.1045 11 17.9999 10.1046 17.9999 9C17.9999 10.1046 18.8953 11 19.9999 11C20.6373 11 21.205 10.7019 21.5712 10.2375C22.1171 9.54525 21.8334 8.57905 21.5091 7.75929L20.1055 4.21114C19.5676 3.13531 19.2986 2.5974 18.8153 2.2987C18.332 2 17.7306 2 16.5278 2H16' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
#event {
	zoom: 1.3;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14 22H10C6.22876 22 4.34315 22 3.17157 20.8284C2 19.6569 2 17.7712 2 14V12C2 8.22876 2 6.34315 3.17157 5.17157C4.34315 4 6.22876 4 10 4H14C17.7712 4 19.6569 4 20.8284 5.17157C22 6.34315 22 8.22876 22 12V14C22 17.7712 22 19.6569 20.8284 20.8284C20.1752 21.4816 19.3001 21.7706 18 21.8985' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M7 4V2.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M17 4V2.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M21.5 9H16.625H10.75M2 9H5.875' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M18 17C18 17.5523 17.5523 18 17 18C16.4477 18 16 17.5523 16 17C16 16.4477 16.4477 16 17 16C17.5523 16 18 16.4477 18 17Z' fill='%23ffffff'/%3e%3cpath d='M18 13C18 13.5523 17.5523 14 17 14C16.4477 14 16 13.5523 16 13C16 12.4477 16.4477 12 17 12C17.5523 12 18 12.4477 18 13Z' fill='%23ffffff'/%3e%3cpath d='M13 17C13 17.5523 12.5523 18 12 18C11.4477 18 11 17.5523 11 17C11 16.4477 11.4477 16 12 16C12.5523 16 13 16.4477 13 17Z' fill='%23ffffff'/%3e%3cpath d='M13 13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13C11 12.4477 11.4477 12 12 12C12.5523 12 13 12.4477 13 13Z' fill='%23ffffff'/%3e%3cpath d='M8 17C8 17.5523 7.55228 18 7 18C6.44772 18 6 17.5523 6 17C6 16.4477 6.44772 16 7 16C7.55228 16 8 16.4477 8 17Z' fill='%23ffffff'/%3e%3cpath d='M8 13C8 13.5523 7.55228 14 7 14C6.44772 14 6 13.5523 6 13C6 12.4477 6.44772 12 7 12C7.55228 12 8 12.4477 8 13Z' fill='%23ffffff'/%3e%3c/svg%3e");
}
.noview {display: none;}
#statistics {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 0 24 24' width='24'%3e%3cpath fill='%23ffffff' d='M6 8a2 2 0 012 2v8a2 2 0 11-4 0v-8a2 2 0 012-2zm12 3a2 2 0 012 2v5a2 2 0 11-4 0v-5a2 2 0 012-2zm-6-9a2 2 0 012 2v14a2 2 0 11-4 0V4a2 2 0 012-2z'%3e%3c/path%3e%3c/svg%3e");
	background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M22 22H2' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M21 22V14.5C21 13.6716 20.3284 13 19.5 13H16.5C15.6716 13 15 13.6716 15 14.5V22' stroke='%23ffffff' stroke-width='1.5'/%3e%3cpath d='M15 22V9M9 22V5C9 3.58579 9 2.87868 9.43934 2.43934C9.87868 2 10.5858 2 12 2C13.4142 2 14.1213 2 14.5607 2.43934C15 2.87868 15 3.58579 15 5V5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M9 22V9.5C9 8.67157 8.32843 8 7.5 8H4.5C3.67157 8 3 8.67157 3 9.5V16M3 22V19.75' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 8L12.5 6.5V10.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 5L19.9486 5.31621C20.9387 5.64623 21.4337 5.81124 21.7168 6.20408C22 6.59692 22 7.11873 21.9999 8.16234L21.9999 8.23487C21.9999 9.09561 21.9999 9.52598 21.7927 9.87809C21.5855 10.2302 21.2093 10.4392 20.4569 10.8572L17.5 12.5' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cpath d='M4.99994 5L4.05132 5.31621C3.06126 5.64623 2.56623 5.81124 2.2831 6.20408C1.99996 6.59692 1.99997 7.11873 2 8.16234L2 8.23487C2.00003 9.09561 2.00004 9.52598 2.20723 9.87809C2.41441 10.2302 2.79063 10.4392 3.54305 10.8572L6.49994 12.5' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cpath d='M12 16V19' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M15.5 22H8.5L8.83922 20.3039C8.93271 19.8365 9.34312 19.5 9.8198 19.5H14.1802C14.6569 19.5 15.0673 19.8365 15.1608 20.3039L15.5 22Z' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 22H6' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M17 2.45597C17.7415 2.59747 18.1811 2.75299 18.5609 3.22083C19.0367 3.80673 19.0115 4.43998 18.9612 5.70647C18.7805 10.2595 17.7601 16 12.0002 16C6.24021 16 5.21983 10.2595 5.03907 5.70647C4.98879 4.43998 4.96365 3.80673 5.43937 3.22083C5.91508 2.63494 6.48445 2.53887 7.62318 2.34674C8.74724 2.15709 10.2166 2 12.0002 2C12.7184 2 13.3857 2.02548 14 2.06829' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.exp {
    position: fixed;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.2683 18.2287C13.2889 20.9067 12.2992 22.2458 11.3758 21.9628C10.4525 21.6798 10.4525 20.0375 10.4525 16.7528L10.4526 16.4433C10.4526 15.2585 10.4526 14.6662 10.074 14.2946L10.054 14.2754C9.6673 13.9117 9.05079 13.9117 7.81775 13.9117C5.59888 13.9117 4.48945 13.9117 4.1145 13.2387C4.10829 13.2276 4.10225 13.2164 4.09639 13.205C3.74244 12.5217 4.3848 11.6526 5.66953 9.91436L8.73167 5.77133C10.711 3.09327 11.7007 1.75425 12.6241 2.03721C13.5474 2.32018 13.5474 3.96249 13.5474 7.24712V7.55682C13.5474 8.74151 13.5474 9.33386 13.926 9.70541L13.946 9.72466C14.3327 10.0884 14.9492 10.0884 16.1822 10.0884C18.4011 10.0884 19.5106 10.0884 19.8855 10.7613C19.8917 10.7724 19.8977 10.7837 19.9036 10.795C20.2576 11.4784 19.6152 12.3475 18.3304 14.0857' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: right center;
	display:block;
    width: 60px;
    height: 30px;
    z-index: 1;
    color: #fff39c;
    font-size: 25px;
}
.getopyt,.allwords,.getgold {
	background-size: 60px;
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
    width: 80px;
    padding-top: 75px;
	margin-top:20px;
    z-index: 1;
    font-size: 20px;
}




#mainmenu {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    flex: 1;
    padding: 10px 0;
	opacity:0;
	transition: opacity .5s linear;
}
#mainmenu h1{
    color: white;
    text-shadow: 0px 0px 5px #00295c;
    text-transform: uppercase;
    margin: 0;
}
.urovni {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.urovni span {
    line-height: 40px;
    vertical-align: top;
    font-size: 70%;
    padding: 0 5px;
    height: 40px;
    display: inline-block;
}
[rel='button'] {
	cursor:pointer;
    display: block;
    float: left;
    position: relative;
    /* height: 45px; */
    width: 100%;
	max-width:150px;
    margin: 10px;
    text-decoration: none;
    padding: 12px 20px;
    text-transform: uppercase;
    font: 25px Montserrat;
    font-weight: bold;
    /* line-height: 16px; */
    text-align: center;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}
[rel='button'] p{
	position: absolute;
    bottom: 5px;
    display: block;
    width: calc(100% - 40px);
    height: 5px;
    margin: 0 auto;
    background: #0000004f;
}
[rel='button'] p:before{
    content: '';
	right:0;
	position: absolute;
    display: block;
    width: calc(100% - var(--prog));
    height: 5px;
    margin: 0 auto;
    background: #0000007a;
    z-index: 2;
}
[rel='button'] p:after{
    content: '';
	right:0;
	position: absolute;
    display: block;
    width: 100%;
    height: 5px;
    margin: 0 auto;
    z-index: 1;
    background: rgb(255,166,131);
	background: linear-gradient(90deg, rgba(255,166,131,1) 0%, rgba(236,255,0,1) 65%, rgba(18,255,0,1) 100%);
}
#mainmenu .urovni [rel='button'] {
    padding-top: 5px;
}
#mainmenu .container [rel='button'] {
    margin: 0 20px;
}
[rel='button'].lock:before {
	content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 3px);
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 12L3 18.9671C3 21.2763 5.53435 22.736 7.59662 21.6145L10.7996 19.8727M3 8L3 5.0329C3 2.72368 5.53435 1.26402 7.59661 2.38548L20.4086 9.35258C22.5305 10.5065 22.5305 13.4935 20.4086 14.6474L14.0026 18.131' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-color: #0000007d;
    background-size: auto 70%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    z-index: 5;
}
[rel='button']:before,
[rel='button']:after {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    height: 40px;
    /* width: 100%; */
    bottom: -1px;
 
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}
 
[rel='button']:before {
    height: 43px;
    bottom: -4px;
    border: 0;
 
    -webkit-border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
    border-radius: 0 0 12px 12px;
 
    /* -webkit-box-shadow: 0 1px 1px 0px #bfbfbf; */
    /* -moz-box-shadow: 0 1px 1px 0px #bfbfbf; */
    /* box-shadow: 0 1px 1px 0px #bfbfbf; */
}

[rel='button']:not(.lock):active {
	border: none;
	bottom: -4px;
	margin-top: 4px;

	/* -webkit-box-shadow: 0 1px 1px #fff; */
	/* -moz-box-shadow:  0 1px 1px #fff; */
	/* box-shadow:  1px 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.3); */
}

[rel='button']:not(.lock):active:before,
[rel='button']:not(.lock):active:after {
	border: none; 
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.blue, .blue:hover, .blue:visited {
    color: #42788e;
    border-bottom: 4px solid #589cb6;
    text-shadow: 0px 1px 0px #bee9fa;
    background-color: #abe4f8;
    /* background: -webkit-gradient(linear, left top, left bottom, from(#abe4f8), to(#74d0f4)); */
    /* background: -moz-linear-gradient(top, #abe4f8, #74d0f4); */
    box-shadow: inset 1px 1px 0 #b2e6f8;
}
.blue:before, .blue:after {
    /* border: 1px solid #8cc5d9; */
    border-bottom: 1px solid #4e8aa1;
}
a.yellow, a.yellow:hover, a.yellow:visited {
    color: #996633;
    border-bottom: 4px solid #b98a37;
    text-shadow: 0px 1px 0px #fedd9b;
    background-color: #feda71;
    /* background: -webkit-gradient(linear, left top, left bottom, from(#feda71), to(#febe4d)); */
    /* background: -moz-linear-gradient(top, #feda71, #febe4d); */
    box-shadow: inset 1px 1px 0 #fee9aa;
}
.yellow:before, .yellow:after {
    /* border: 1px solid #eab551; */
    border-bottom: 1px solid #9f7630;
}
/* GREEN */
a.green, a.green:hover, a.green:visited {
	color: #5d7731;
	border-bottom: 4px solid #799545;
	text-shadow: 0px 1px 0px #d5e8aa;
	background-color: #cae285;
	/* background: -webkit-gradient(linear, left top, left bottom, from(#cae285), to(#a3cd5a)); */
	/* background: -moz-linear-gradient(top,  #cae285,  #a3cd5a); */
	box-shadow: inset 1px 1px 0 #cce3a1;
}

.green:before, .green:after {
	/* border: 1px solid #98b85b; */
	border-bottom: 1px solid #6d883b;
}
a.pink,a.pink:hover,a.pink:visited {
	color: #913944;
	border-bottom: 4px solid #cb5462;
	text-shadow: 0px 1px 0px #f9a0ad;
	background-color: #f56778;
	/* background: -webkit-gradient(linear, left top, left bottom, from(#f997b0), to(#f56778)); */
	/* background: -moz-linear-gradient(top,  #f997b0,  #f56778); */
	box-shadow: inset 1px 1px 0 #fbc1d0;
}

.pink:before,.pink:after {
	/* border: 1px solid #ee8090; */
	border-bottom: 1px solid #b84d5a;
}
a.gray,a.gray:hover,a.gray:visited {
	color: #555;
	border-bottom: 4px solid #b2b1b1;
	text-shadow: 0px 1px 0px #fafafa;
	background-color: #eee;
	/* background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#e2e2e2)); */
	/* background: -moz-linear-gradient(top,  #eee,  #e2e2e2); */
	box-shadow: inset 1px 1px 0 #f5f5f5;
}

.gray:before,.gray:after {
	/* border: 1px solid #cbcbcb; */
	border-bottom: 1px solid #a5a5a5;
}



#board-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
    overflow: hidden;
    width: 100%;
    /* max-width: 600px; */
    margin: 0px auto 0px;
    position: relative;
    flex-direction: column;
}
#board {
	width: 100%;
    box-sizing: border-box;
    position: relative;
}
#board canvas {
	height: 100%;
    width: 100%;
}

.levels {
	position:relative;
	width: 100%;
	/* padding:20px 50px; */
	display: flex;
	align-content: flex-start;
	height: 100%;
	justify-content: center;
	flex-wrap: wrap;
}
.levels h2 {
	color: white;
    font-size: min(calc(var(--sizeround)* .5), calc(100vw / 14));
    width: 100%;
    background: #0000004f;
    text-transform: uppercase;
    display: flex;
    height: calc(var(--sizeround)* 1);
    justify-content: center;
    align-items: center;
    margin: 0;
}
.levels .lvlpage {
	position:absolute;
	cursor:pointer;
	top:50%;
	left:30px;
	width:var(--sizeround);
	height:var(--sizeround);
	background-size:var(--sizeround);
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.2893 5.70708C13.8988 5.31655 13.2657 5.31655 12.8751 5.70708L7.98768 10.5993C7.20729 11.3805 7.2076 12.6463 7.98837 13.427L12.8787 18.3174C13.2693 18.7079 13.9024 18.7079 14.293 18.3174C14.6835 17.9269 14.6835 17.2937 14.293 16.9032L10.1073 12.7175C9.71678 12.327 9.71678 11.6939 10.1073 11.3033L14.2893 7.12129C14.6799 6.73077 14.6799 6.0976 14.2893 5.70708Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.levels .lvlpage.right {
	transform:rotate(180deg);
	right:30px;
	left:auto;
}
.levels .lvl {
	flex: 1 0 auto;
	display: flex;
	left:0;
	cursor:pointer;
	margin: calc(var(--sizeround) / 3);
	/* margin-bottom: calc(var(--sizeround)* .6); */
	width: calc(var(--sizeround)* 1.7);
	height: calc(var(--sizeround)* 1.7);
	justify-content: center;
	align-items: center;
	border: 3px solid transparent;
	border-radius: 15px;
	background: linear-gradient(#9fdbf9 0 0) padding-box, linear-gradient(180deg, rgba(241, 230, 0, 1) 0%, rgba(255, 252, 200, 1) 100%) border-box;
	color: white;
	font-weight: 600;
	font-size: calc( var(--sizeround) * .5);
	text-shadow: 0px 0px 2px black;
	box-shadow: inset 0px calc(var(--sizeround) / 6) 0px 0px #c1eaff;
	position: relative;
	transition: transform .3s ease, box-shadow .2s linear, left .2s linear, right .2s linear;
}
.levels .lvl.active {
    transform: scale(1.2);
	box-shadow: inset 0px 0px 0px 0px #c1eaff;
}
.levels .lvl:not(.lock):hover {
	box-shadow: inset 0px 0px 0px 0px #c1eaff;
}
.levels .lvl:before {
	display:none;
}
.levels .lvl.active:before {
	content: '';
    display: block;
    padding: calc(var(--sizeround) / 4);
    position: absolute;
    top: 0px;
	/* opacity:0; */
	transition: opacity .2s linear;
    /* background: #335a9a; */
    border-radius: 15px;
	background-size: calc(var(--sizeround) / 4);
	background-position:center;
	background-repeat:no-repeat;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 12L3 18.9671C3 21.2763 5.53435 22.736 7.59662 21.6145L10.7996 19.8727M3 8L3 5.0329C3 2.72368 5.53435 1.26402 7.59661 2.38548L20.4086 9.35258C22.5305 10.5065 22.5305 13.4935 20.4086 14.6474L14.0026 18.131' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.levels .lvl.active.load:before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8.00023L18.3642 5.63609M5.63631 18.364L8.00026 16M17.6566 12H21M3 12H6.34315M12 6.34342L12 3M12 21L12 17.6569M8.00023 8.00023L5.63609 5.63609M18.364 18.364L16 16' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	animation-name: rotation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.levels .lvl:after {
	content: '';
	display: block;
    position: absolute;
    bottom: 5%;
    display: inline-block;
    width: calc(var(--stars)* 20%);
    height: 20%;
	background-size: calc(100% / var(--stars));
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:cc='http://creativecommons.org/ns%23' xmlns:dc='http://purl.org/dc/elements/1.1/'%3E%3Cg transform='translate(0 -1028.4)'%3E%3Cpath d='m12 1028.4 4 9 8 1-6 5 2 9-8-5-8 5 2-9-6-5 8-1z' fill='%23f39c12'/%3E%3Cpath d='m12 1028.4-4 9-6.9688 0.8 4.9688 4.2-0.1875 0.8 0.1875 0.2-1.75 7.8 7.75-4.8 7.75 4.8-1.75-7.8 0.188-0.2-0.188-0.8 4.969-4.2-6.969-0.8-4-9z' fill='%23feed32'/%3E%3C/g%3E%3C/svg%3E");
}
.levels .lvl.lock {
	text-indent: -99999px;
	font-size:0px;
	cursor:default;
}
.levels .lvl.lock:before {
	display:none;
}
.levels .lvl.lock:after {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 1024 1024' class='icon' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M512 85.333333c-117.333333 0-213.333333 96-213.333333 213.333334v85.333333h85.333333v-85.333333c0-70.4 57.6-128 128-128s128 57.6 128 128v85.333333h85.333333v-85.333333c0-117.333333-96-213.333333-213.333333-213.333334z' fill='%23424242' /%3E%3Cpath d='M768 938.666667H256c-46.933333 0-85.333333-38.4-85.333333-85.333334V469.333333c0-46.933333 38.4-85.333333 85.333333-85.333333h512c46.933333 0 85.333333 38.4 85.333333 85.333333v384c0 46.933333-38.4 85.333333-85.333333 85.333334z' fill='%23FB8C00' /%3E%3Cpath d='M512 661.333333m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z' fill='%23C76E00' /%3E%3C/svg%3E");
	width: 100%;
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	bottom: 0;
	height: 100%;
}
.levels .lvl.unleft {left: -1999px;}
.levels .lvl.unright {left: 1999px;}

.levelsblock {
  display: flex;
    overflow: hidden;
    width: 100%;
    min-height: calc(var(--sizeround)* 4);
    padding: calc(var(--sizeround) / 2) 0;
}
.show {
	opacity:1!important;
}

.levelsblock .lvl:first-child {
	margin-left: calc(50% - var(--sizeround)* .85);
}
.levelsblock .lvl:last-child {
	margin-right: calc(50% - var(--sizeround)* .85);
}

.h1 {font-size:250%;}
.h2 {font-size:200%;}
.h3 {font-size:150%;}

.container {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    padding: 8px 0;
    width: 100%;
}

.finalx {
    position: absolute;
    top: 0;
    display: flex;
	flex-wrap: wrap;
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
    align-items: center;
	flex-direction: column;
    font-size: 300%;
    font-weight: bold;
    color: #fcc20e;
    text-shadow: 0px 3px 2px #9d7808;
    z-index: 1050;
}
.finalx .lose {
    color: #ff6f2b;
    text-shadow: 0px 3px 2px #f50000;
}
.finalx .text {
    font-size: 20px;
    font-weight: bold;
    color: #fcc20e;
    text-shadow: 0px 3px 2px #9d7808;
    z-index: 1050;
    border-radius: 8px;
    border: 1px solid var(--color-tone-6);
    background-color: var(--modal-content-bg);
    color: var(--color-tone-1);
    box-shadow: 0 4px 23px 0 rgb(0 0 0 / 20%);
    /* height: 246px; */
    overflow-y: auto;
    animation: SlideIn 200ms;
    padding: 16px;
    box-sizing: border-box;
    margin: 0 auto;
    flex-direction: column;
	text-shadow:none;
    display: flex;
    transform: translateY(25%);
	transition: transform .3s ease-out;
}
.finalx .pretext {
    width: 90%;
    max-width: 500px;
    display: none;
	opacity:0;
	transition: opacity .15s linear;
}
.finalx .pretext.show {
	opacity:1;
}
.finalx .show .text{
    transform: translate(0);
}
.finalx div[iksy] {
    text-align: center;
    width: 100%;
    color: white;
    color: #fcc20e;
    text-shadow: 0px 3px 2px #9d7808;
}
.finalx div[balance] {
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 80px;
    /* margin-right: 10px; */
}
.finalx div[opyt] {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.2683 18.2287C13.2889 20.9067 12.2992 22.2458 11.3758 21.9628C10.4525 21.6798 10.4525 20.0375 10.4525 16.7528L10.4526 16.4433C10.4526 15.2585 10.4526 14.6662 10.074 14.2946L10.054 14.2754C9.6673 13.9117 9.05079 13.9117 7.81775 13.9117C5.59888 13.9117 4.48945 13.9117 4.1145 13.2387C4.10829 13.2276 4.10225 13.2164 4.09639 13.205C3.74244 12.5217 4.3848 11.6526 5.66953 9.91436L8.73167 5.77133C10.711 3.09327 11.7007 1.75425 12.6241 2.03721C13.5474 2.32018 13.5474 3.96249 13.5474 7.24712V7.55682C13.5474 8.74151 13.5474 9.33386 13.926 9.70541L13.946 9.72466C14.3327 10.0884 14.9492 10.0884 16.1822 10.0884C18.4011 10.0884 19.5106 10.0884 19.8855 10.7613C19.8917 10.7724 19.8977 10.7837 19.9036 10.795C20.2576 11.4784 19.6152 12.3475 18.3304 14.0857' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 55px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 65px;
    /* margin-right: 10px; */
}
.finalx .unlife {
	width: 170px;
    height: 170px;
    margin: 30px auto;
    text-shadow: 0px 0px 6px black;
    color: red;
    padding: 0 10px !important;
    font-size: 300%;
    display: flex;
    background-position: center;
    background-size: 100%;
    justify-content: center;
    align-items: center;
}
.finalx .ratstars {
    width: 80%;
    /* height: 120px; */
    display: flex;
    margin: 30px auto;
    position: relative;
    justify-content: space-around;
}
.finalx .stars.star1 {
    width: 33%;
    height: 120px;
    display: block;
    position: relative;
    transform: unset;
    left: auto;
    /* margin: 30px auto; */
    zoom: 1;
    background-position: center;
	background-repeat:no-repeat;
    background-size: 90%;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:cc='http://creativecommons.org/ns%23' xmlns:dc='http://purl.org/dc/elements/1.1/'%3E%3Cg transform='translate(0 -1028.4)'%3E%3Cpath d='m12 1028.4 4 9 8 1-6 5 2 9-8-5-8 5 2-9-6-5 8-1z' fill='%23f39c12'/%3E%3Cpath d='m12 1028.4-4 9-6.9688 0.8 4.9688 4.2-0.1875 0.8 0.1875 0.2-1.75 7.8 7.75-4.8 7.75 4.8-1.75-7.8 0.188-0.2-0.188-0.8 4.969-4.2-6.969-0.8-4-9z' fill='%23feed32'/%3E%3C/g%3E%3C/svg%3E");
}
.finalx .stars.star1:nth-child(odd){
    background-size: 60%;
}
.finalx .stars.star1.non {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:cc='http://creativecommons.org/ns%23' xmlns:dc='http://purl.org/dc/elements/1.1/'%3E%3Cg transform='translate(0 -1028.4)'%3E%3Cpath d='m12 1028.4 4 9 8 1-6 5 2 9-8-5-8 5 2-9-6-5 8-1z' fill='%23797979'/%3E%3Cpath d='m12 1028.4-4 9-6.9688 0.8 4.9688 4.2-0.1875 0.8 0.1875 0.2-1.75 7.8 7.75-4.8 7.75 4.8-1.75-7.8 0.188-0.2-0.188-0.8 4.969-4.2-6.969-0.8-4-9z' fill='%23a2a2a2'/%3E%3C/g%3E%3C/svg%3E");
}



.board {
    display: block;
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
}

div.spisk {
    overflow-y: auto;
	width:100%;
    margin-bottom: 10px;
    margin-top: 15px;
}
.listpics {
	position: relative;
	height: 48px;
    margin-bottom: 12px;
	width:100%;
	display: inline-block;
    overflow: hidden;
	text-align:left;
}
.listpics>div:nth-child(1){
	float: left;
	margin-right:5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    min-width: 40px;
}
.listpics>div:nth-child(2){
	float: left;
	margin-right:5px;
}
.listpics>div:nth-child(2) img{
	width:48px;
	border-radius:50%;
}
.listpics>div:nth-child(3){
	line-height:20px;
	word-break: break-all;
	white-space: pre;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 16px;
}
.listpics>div:nth-child(4){
	line-height:18px;
	word-break: break-all;
	white-space: pre;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #677177;
	font-size: 10px;
}	


.modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1041; background-color: #000000;opacity: 0.7; filter: alpha(opacity=70); }
.modal-backdrop1 { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; background-color: #000000; opacity: 0.7; filter: alpha(opacity=70); }
.modal-backdrop2 { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9998; background-color: #000000; opacity: 0.7; filter: alpha(opacity=70); }
.modal-backdrop3 { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 10000; background-color: #000000; opacity: 0.7; filter: alpha(opacity=70); }
.modal-backdrop4 { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 10000; background-color: #000000;opacity: 0.7; filter: alpha(opacity=70); }
.premod,.premod2 {
	position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 10001;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8.00023L18.3642 5.63609M5.63631 18.364L8.00026 16M17.6566 12H21M3 12H6.34315M12 6.34342L12 3M12 21L12 17.6569M8.00023 8.00023L5.63609 5.63609M18.364 18.364L16 16' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat:no-repeat;
	background-position:center;
    background-size: 100px;
    animation-name: rotation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


.profile img {
	border-radius:50%;
	width:100px;
}
.profile .balance, .profile .life, .profile .fire, .profile .level, .success {
    background-size: 27px;
    background-position: right center;
    padding-right: 30px;
    text-align: right;
    margin: 10px 20px;
    font-size: 130%;
    line-height: 26px;
    font-weight: bold;
}
.listpics .level, .listpics .opyt {
    background-size: 15px;
    background-position: left center;
    padding-left: 20px;
    text-align: right;
    margin: 0px 5px;
    font-size: 150%;
    /* font-weight: bold; */
    height: 24px;
    display: inline-block;
    line-height: 24px;
}
.profile a.balance {    
	background-size: 20px;
    padding-right: 25px;
}
a.addmoney {
    padding-right: 50px;
	height:30px;
}
a.addmoney span {
    position: absolute;
    right: 5px;
    top: 0px;
    background-size: 34px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    width: 42px;
    height: 26px;
}
.profile [rel=button]{
	/* margin-top:30px; */
}
.dispflex {
	display:flex;
}
.stat {
    position: relative;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 15px;
	display:flex;
    justify-content: center;
}
.stat::after {
    width: 100%;
    position: absolute;
    border-bottom: 1px dashed #d7d7d7;
    bottom: 3px;
    left: 0;
    z-index: 0;
    height: 1px;
    content: "";
}
.stat span {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.stat span > *{
	padding:0;
	margin:0;	
    background: white;
    z-index: 1;
}
.inline {
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
	width: 100%;
    flex-direction: row;
    align-content: center;
    align-items: center;
}
.inline::after {
    width: 100%;
    position: absolute;
    border-bottom: 1px dashed #d7d7d7;
    bottom: 3px;
    left: 0;
    z-index: 0;
    height: 1px;
    content: "";
}
.inline > *{
	/* padding:0; */
	/* margin:0;	 */
    /* background: white; */
    z-index: 1;
}
.inline img {
	height:50px;
}
.buytext {margin:15px 10px;}
.buytext img {
	display:none;
}
.finalx .inline {
    margin: 5px 0;
}
.finalx .inline > * {
    font-size: 90%;
	font-weight:normal;
}



.notif {
    position: absolute;
    /* left: 10%; */
    top: 10%;
    z-index: 9999;
    border-radius: 8px;
    background-color: var(--modal-content-bg);
    border: 1px solid var(--color-tone-6);
    /* background-image: url(3.jpg); */
    /* background-size: 100%; */
    /* background-position: 0; */
    color: var(--color-tone-1);
    box-shadow: 0 4px 23px 0 rgb(0 0 0 / 20%);
    width: 80%;
    max-height: 80%;
    overflow-y: auto;
    animation: SlideIn 200ms;
    max-width: var(--game-max-width);
    padding: 16px;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
	font-size:80%;
	text-align:center;
    line-height: 200%;
}

.window {
    position: absolute;
    left: auto;
    top: 60px;
    z-index: 1050;
    border-radius: 8px;
    background-color: var(--modal-content-bg);
    border: 1px solid var(--color-tone-6);
    /* background-image: url(3.jpg); */
    /* background-size: 100%; */
    /* background-position: 0; */
    color: var(--color-tone-1);
    box-shadow: 0 4px 23px 0 rgb(0 0 0 / 20%);
    width: 90%;
	/* height:calc(100% - 70px); */
    max-height: calc(100% - 70px);
    overflow-y: auto;
    animation: SlideIn 200ms;
    max-width: 600px;
    padding: 16px;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
	font-size:80%;
	text-align:center;
    line-height: 200%;
}
a.wclose {
    width: 22px;
    height: 22px;
    min-width: auto;
    display: inline-block;
    font-size: 0;
    margin: 0px;
    border: none;
    padding: 5px;
    background-color: transparent;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 10px;
}

.wclose:after, .wclose:before {
    background-color: #000;
    border-radius: 4px;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transform: translate(-50%,-50%) rotate(45deg);
	transition: transform .2s;
}
.wclose:hover:after, .wclose:hover:before {
    -webkit-transform: translate(-50%,-50%) rotate(135deg);
    transform: translate(-50%,-50%) rotate(135deg);
}

.wclose.dark:after, .wclose.dark:before {
    background-color: #fff;
}
.wclose.bblack:after, .wclose.bblack:before {
    background-color: #e31235;
}
.wclose:before {
    width: 4px;
    height: 18px;
}
.wclose:after {
    width: 18px;
    height: 4px;
}


.fullscreen {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 22C6.22876 22 4.34315 22 3.17157 20.8284C2 19.6569 2 17.7712 2 14' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M10 2C6.22876 2 4.34315 2 3.17157 3.17157C2.92939 3.41375 2.73727 3.68645 2.58487 4M2 10C2 9.26451 2 8.60074 2.00869 8' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M14 2C17.7712 2 19.6569 2 20.8284 3.17157C22 4.34315 22 6.22876 22 10' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M14 22C17.7712 22 19.6569 22 20.8284 20.8284C21.0706 20.5862 21.2627 20.3136 21.4151 20M22 14C22 14.7355 22 15.3993 21.9913 16' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.fullscreen.mini {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 14C5.77124 14 7.65685 14 8.82843 15.1716C10 16.3431 10 18.2288 10 22' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M2 10C3.16976 10 4.15811 10 5 9.96504M10 2C10 5.77124 10 7.65685 8.82843 8.82843' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M14 22C14 18.2288 14 16.3431 15.1716 15.1716M22 14C20.8302 14 19.8419 14 19 14.035' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M22 10C18.2288 10 16.3431 10 15.1716 8.82843C14 7.65685 14 5.77124 14 2' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.refresh {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.67981 11.3333H2.92981H3.67981ZM3.67981 13L3.15157 13.5324C3.44398 13.8225 3.91565 13.8225 4.20805 13.5324L3.67981 13ZM5.88787 11.8657C6.18191 11.574 6.18377 11.0991 5.89203 10.8051C5.60029 10.511 5.12542 10.5092 4.83138 10.8009L5.88787 11.8657ZM2.52824 10.8009C2.2342 10.5092 1.75933 10.511 1.46759 10.8051C1.17585 11.0991 1.17772 11.574 1.47176 11.8657L2.52824 10.8009ZM18.6156 7.39279C18.8325 7.74565 19.2944 7.85585 19.6473 7.63892C20.0001 7.42199 20.1103 6.96007 19.8934 6.60721L18.6156 7.39279ZM16.8931 3.60787C16.5403 3.39077 16.0784 3.50074 15.8613 3.8535C15.6442 4.20626 15.7541 4.66822 16.1069 4.88532L16.8931 3.60787ZM12.4633 3.75939C12.877 3.77966 13.2288 3.46071 13.2491 3.047C13.2694 2.63328 12.9504 2.28146 12.5367 2.26119L12.4633 3.75939ZM12.0789 2.25C7.03155 2.25 2.92981 6.3112 2.92981 11.3333H4.42981C4.42981 7.15072 7.84884 3.75 12.0789 3.75V2.25ZM2.92981 11.3333L2.92981 13H4.42981L4.42981 11.3333H2.92981ZM4.20805 13.5324L5.88787 11.8657L4.83138 10.8009L3.15157 12.4676L4.20805 13.5324ZM4.20805 12.4676L2.52824 10.8009L1.47176 11.8657L3.15157 13.5324L4.20805 12.4676ZM19.8934 6.60721C19.1441 5.38846 18.1143 4.35941 16.8931 3.60787L16.1069 4.88532C17.1287 5.51419 17.9899 6.37506 18.6156 7.39279L19.8934 6.60721ZM12.5367 2.26119C12.385 2.25376 12.2323 2.25 12.0789 2.25V3.75C12.2078 3.75 12.336 3.75316 12.4633 3.75939L12.5367 2.26119Z' fill='%23ffffff'/%3E%3Cpath d='M11.8825 21V21.75V21ZM20.3137 12.6667H21.0637H20.3137ZM20.3137 11L20.8409 10.4666C20.5487 10.1778 20.0786 10.1778 19.7864 10.4666L20.3137 11ZM18.1002 12.1333C17.8056 12.4244 17.8028 12.8993 18.094 13.1939C18.3852 13.4885 18.86 13.4913 19.1546 13.2001L18.1002 12.1333ZM21.4727 13.2001C21.7673 13.4913 22.2421 13.4885 22.5333 13.1939C22.8245 12.8993 22.8217 12.4244 22.5271 12.1332L21.4727 13.2001ZM5.31769 16.6061C5.10016 16.2536 4.63806 16.1442 4.28557 16.3618C3.93307 16.5793 3.82366 17.0414 4.0412 17.3939L5.31769 16.6061ZM11.5331 20.2423C11.1193 20.224 10.769 20.5447 10.7507 20.9585C10.7325 21.3723 11.0531 21.7226 11.4669 21.7408L11.5331 20.2423ZM7.11292 20.4296C7.4677 20.6433 7.92861 20.529 8.14239 20.1742C8.35617 19.8195 8.24186 19.3586 7.88708 19.1448L7.11292 20.4296ZM11.8825 21.75C16.9448 21.75 21.0637 17.6915 21.0637 12.6667H19.5637C19.5637 16.8466 16.133 20.25 11.8825 20.25V21.75ZM21.0637 12.6667V11H19.5637V12.6667H21.0637ZM19.7864 10.4666L18.1002 12.1333L19.1546 13.2001L20.8409 11.5334L19.7864 10.4666ZM19.7864 11.5334L21.4727 13.2001L22.5271 12.1332L20.8409 10.4666L19.7864 11.5334ZM11.4669 21.7408C11.6047 21.7469 11.7433 21.75 11.8825 21.75V20.25C11.7653 20.25 11.6488 20.2474 11.5331 20.2423L11.4669 21.7408ZM4.0412 17.3939C4.80569 18.6327 5.86106 19.6752 7.11292 20.4296L7.88708 19.1448C6.83872 18.5131 5.95602 17.6405 5.31769 16.6061L4.0412 17.3939Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.like {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.9901 14.3082L11.435 13.7045H11.435L10.9901 14.3082ZM12 8.10615L11.4641 8.63086C11.6052 8.77495 11.7983 8.85615 12 8.85615C12.2017 8.85615 12.3948 8.77495 12.5359 8.63086L12 8.10615ZM13.0099 14.3082L12.565 13.7045L12.565 13.7045L13.0099 14.3082ZM12 14.8103L12 14.0603H12L12 14.8103ZM11.435 13.7045C10.7914 13.2302 9.96746 12.5568 9.31176 11.808C8.63279 11.0325 8.25 10.3064 8.25 9.71476H6.75C6.75 10.8757 7.44886 11.9574 8.18323 12.7961C8.94088 13.6614 9.86191 14.4085 10.5451 14.912L11.435 13.7045ZM8.25 9.71476C8.25 8.60703 8.74454 8.02373 9.25333 7.83348C9.77052 7.6401 10.5951 7.74331 11.4641 8.63086L12.5359 7.58145C11.38 6.40091 9.95456 5.96985 8.72797 6.42849C7.49299 6.89028 6.75 8.14533 6.75 9.71476H8.25ZM13.4549 14.912C14.1381 14.4085 15.0591 13.6614 15.8168 12.7961C16.5511 11.9574 17.25 10.8758 17.25 9.71475H15.75C15.75 10.3064 15.3672 11.0326 14.6882 11.808C14.0325 12.5568 13.2086 13.2302 12.565 13.7045L13.4549 14.912ZM17.25 9.71475C17.25 8.14532 16.507 6.89027 15.272 6.42849C14.0454 5.96985 12.62 6.40091 11.4641 7.58145L12.5359 8.63086C13.4049 7.74331 14.2295 7.6401 14.7467 7.83348C15.2555 8.02373 15.75 8.60702 15.75 9.71475H17.25ZM10.5451 14.912C10.9368 15.2007 11.3752 15.5603 12 15.5603L12 14.0603C11.9852 14.0603 11.9682 14.0626 11.899 14.0252C11.8008 13.972 11.678 13.8836 11.435 13.7045L10.5451 14.912ZM12.565 13.7045C12.322 13.8836 12.1992 13.972 12.101 14.0252C12.0318 14.0626 12.0148 14.0603 12 14.0603L12 15.5603C12.6248 15.5603 13.0632 15.2007 13.4549 14.912L12.565 13.7045Z' fill='%23ffffff'/%3E%3Cpath d='M13.0867 21.3877L13.7321 21.7697L13.0867 21.3877ZM13.6288 20.4718L12.9833 20.0898L13.6288 20.4718ZM10.3712 20.4718L9.72579 20.8539H9.72579L10.3712 20.4718ZM10.9133 21.3877L11.5587 21.0057L10.9133 21.3877ZM1.25 10.5C1.25 10.9142 1.58579 11.25 2 11.25C2.41421 11.25 2.75 10.9142 2.75 10.5H1.25ZM3.07351 15.6264C2.915 15.2437 2.47627 15.062 2.09359 15.2205C1.71091 15.379 1.52918 15.8177 1.68769 16.2004L3.07351 15.6264ZM7.78958 18.9915L7.77666 19.7413L7.78958 18.9915ZM5.08658 18.6194L4.79957 19.3123H4.79957L5.08658 18.6194ZM21.6194 15.9134L22.3123 16.2004V16.2004L21.6194 15.9134ZM16.2104 18.9915L16.1975 18.2416L16.2104 18.9915ZM18.9134 18.6194L19.2004 19.3123H19.2004L18.9134 18.6194ZM19.6125 2.7368L19.2206 3.37628L19.6125 2.7368ZM21.2632 4.38751L21.9027 3.99563V3.99563L21.2632 4.38751ZM4.38751 2.7368L3.99563 2.09732V2.09732L4.38751 2.7368ZM2.7368 4.38751L2.09732 3.99563H2.09732L2.7368 4.38751ZM9.40279 19.2098L9.77986 18.5615L9.77986 18.5615L9.40279 19.2098ZM13.7321 21.7697L14.2742 20.8539L12.9833 20.0898L12.4412 21.0057L13.7321 21.7697ZM9.72579 20.8539L10.2679 21.7697L11.5587 21.0057L11.0166 20.0898L9.72579 20.8539ZM12.4412 21.0057C12.2485 21.3313 11.7515 21.3313 11.5587 21.0057L10.2679 21.7697C11.0415 23.0767 12.9585 23.0767 13.7321 21.7697L12.4412 21.0057ZM10.5 2.75H13.5V1.25H10.5V2.75ZM21.25 10.5V11.5H22.75V10.5H21.25ZM7.8025 18.2416C6.54706 18.2199 5.88923 18.1401 5.37359 17.9265L4.79957 19.3123C5.60454 19.6457 6.52138 19.7197 7.77666 19.7413L7.8025 18.2416ZM1.68769 16.2004C2.27128 17.6093 3.39066 18.7287 4.79957 19.3123L5.3736 17.9265C4.33223 17.4951 3.50486 16.6678 3.07351 15.6264L1.68769 16.2004ZM21.25 11.5C21.25 12.6751 21.2496 13.5189 21.2042 14.1847C21.1592 14.8438 21.0726 15.2736 20.9265 15.6264L22.3123 16.2004C22.5468 15.6344 22.6505 15.0223 22.7007 14.2868C22.7504 13.5581 22.75 12.6546 22.75 11.5H21.25ZM16.2233 19.7413C17.4786 19.7197 18.3955 19.6457 19.2004 19.3123L18.6264 17.9265C18.1108 18.1401 17.4529 18.2199 16.1975 18.2416L16.2233 19.7413ZM20.9265 15.6264C20.4951 16.6678 19.6678 17.4951 18.6264 17.9265L19.2004 19.3123C20.6093 18.7287 21.7287 17.6093 22.3123 16.2004L20.9265 15.6264ZM13.5 2.75C15.1512 2.75 16.337 2.75079 17.2619 2.83873C18.1757 2.92561 18.7571 3.09223 19.2206 3.37628L20.0044 2.09732C19.2655 1.64457 18.4274 1.44279 17.4039 1.34547C16.3915 1.24921 15.1222 1.25 13.5 1.25V2.75ZM22.75 10.5C22.75 8.87781 22.7508 7.6085 22.6545 6.59611C22.5572 5.57256 22.3554 4.73445 21.9027 3.99563L20.6237 4.77938C20.9078 5.24291 21.0744 5.82434 21.1613 6.73809C21.2492 7.663 21.25 8.84876 21.25 10.5H22.75ZM19.2206 3.37628C19.7925 3.72672 20.2733 4.20752 20.6237 4.77938L21.9027 3.99563C21.4286 3.22194 20.7781 2.57144 20.0044 2.09732L19.2206 3.37628ZM10.5 1.25C8.87781 1.25 7.6085 1.24921 6.59611 1.34547C5.57256 1.44279 4.73445 1.64457 3.99563 2.09732L4.77938 3.37628C5.24291 3.09223 5.82434 2.92561 6.73809 2.83873C7.663 2.75079 8.84876 2.75 10.5 2.75V1.25ZM2.75 10.5C2.75 8.84876 2.75079 7.663 2.83873 6.73809C2.92561 5.82434 3.09223 5.24291 3.37628 4.77938L2.09732 3.99563C1.64457 4.73445 1.44279 5.57256 1.34547 6.59611C1.24921 7.6085 1.25 8.87781 1.25 10.5H2.75ZM3.99563 2.09732C3.22194 2.57144 2.57144 3.22194 2.09732 3.99563L3.37628 4.77938C3.72672 4.20752 4.20752 3.72672 4.77938 3.37628L3.99563 2.09732ZM11.0166 20.0898C10.8136 19.7468 10.6354 19.4441 10.4621 19.2063C10.2795 18.9559 10.0702 18.7304 9.77986 18.5615L9.02572 19.8582C9.07313 19.8857 9.13772 19.936 9.24985 20.0898C9.37122 20.2564 9.50835 20.4865 9.72579 20.8539L11.0166 20.0898ZM7.77666 19.7413C8.21575 19.7489 8.49387 19.7545 8.70588 19.7779C8.90399 19.7999 8.98078 19.832 9.02572 19.8582L9.77986 18.5615C9.4871 18.3912 9.18246 18.3215 8.87097 18.287C8.57339 18.2541 8.21375 18.2487 7.8025 18.2416L7.77666 19.7413ZM14.2742 20.8539C14.4916 20.4865 14.6287 20.2564 14.7501 20.0898C14.8622 19.936 14.9268 19.8857 14.9742 19.8582L14.2201 18.5615C13.9298 18.7304 13.7204 18.9559 13.5379 19.2063C13.3646 19.4441 13.1864 19.7468 12.9833 20.0898L14.2742 20.8539ZM16.1975 18.2416C15.7862 18.2487 15.4266 18.2541 15.129 18.287C14.8175 18.3215 14.5129 18.3912 14.2201 18.5615L14.9742 19.8582C15.0192 19.832 15.096 19.7999 15.2941 19.7779C15.5061 19.7545 15.7842 19.7489 16.2233 19.7413L16.1975 18.2416Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.addmenu {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5 6.5H17.5M17.5 6.5H20.5M17.5 6.5V9.5M17.5 6.5V3.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M2.55078 15.5C2.61472 14.8499 2.75923 14.4124 3.08582 14.0858C3.67161 13.5 4.61442 13.5 6.50004 13.5C8.38565 13.5 9.32846 13.5 9.91425 14.0858C10.5 14.6716 10.5 15.6144 10.5 17.5C10.5 19.3856 10.5 20.3284 9.91425 20.9142C9.32846 21.5 8.38565 21.5 6.50004 21.5C4.61442 21.5 3.67161 21.5 3.08582 20.9142C2.77645 20.6048 2.63047 20.1959 2.56158 19.6011' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M2.5 6.5C2.5 4.61438 2.5 3.67157 3.08579 3.08579C3.67157 2.5 4.61438 2.5 6.5 2.5C8.38562 2.5 9.32843 2.5 9.91421 3.08579C10.5 3.67157 10.5 4.61438 10.5 6.5C10.5 8.38562 10.5 9.32843 9.91421 9.91421C9.32843 10.5 8.38562 10.5 6.5 10.5C4.61438 10.5 3.67157 10.5 3.08579 9.91421C2.5 9.32843 2.5 8.38562 2.5 6.5Z' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cpath d='M13.5 17.5C13.5 15.6144 13.5 14.6716 14.0858 14.0858C14.6716 13.5 15.6144 13.5 17.5 13.5C19.3856 13.5 20.3284 13.5 20.9142 14.0858C21.5 14.6716 21.5 15.6144 21.5 17.5C21.5 19.3856 21.5 20.3284 20.9142 20.9142C20.3284 21.5 19.3856 21.5 17.5 21.5C15.6144 21.5 14.6716 21.5 14.0858 20.9142C13.5 20.3284 13.5 19.3856 13.5 17.5Z' stroke='%23ffffff' stroke-width='1.5'/%3E%3C/svg%3E");
}
.post {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12C4 13.3807 5.11929 14.5 6.5 14.5C7.88071 14.5 9 13.3807 9 12C9 10.6193 7.88071 9.5 6.5 9.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M14 6.5L9 10' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M14 17.5L9 14' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M16.5 21C17.8807 21 19 19.8807 19 18.5C19 17.1193 17.8807 16 16.5 16C15.1193 16 14 17.1193 14 18.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M18.665 6.74993C17.9746 7.94566 16.4457 8.35535 15.2499 7.66499C14.0542 6.97464 13.6445 5.44566 14.3349 4.24993C15.0252 3.0542 16.5542 2.64451 17.7499 3.33487' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.share {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 7H14C12.1824 7 11.0867 7.89202 10.6804 8.30029C10.5546 8.42673 10.4917 8.48996 10.4908 8.49082C10.49 8.49168 10.4267 8.55459 10.3003 8.68042C9.89202 9.08671 9 10.1824 9 12V15M22 7L17 2M22 7L17 12' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.46485 20.5352C4.9297 22 7.28733 22 12.0026 22C16.7179 22 19.0755 22 20.5404 20.5352C21.7815 19.294 21.9711 17.4119 22 13.9979M3.46485 20.5352C2 19.0703 2 16.7127 2 11.9974M3.46485 20.5352C4.92931 21.9996 7.28595 22 12 22C16.714 22 19.0711 22 20.5355 20.5355C21.7764 19.2946 21.9659 17.4129 21.9948 13.9994M3.46485 20.5352C2.00038 19.0707 2 16.714 2 12M3.46485 3.45963C4.70599 2.21848 6.58807 2.02895 10.0021 2M2.0551 8C2.16444 5.80655 2.49073 4.43821 3.46447 3.46447C4.70529 2.22364 6.58687 2.03415 10 2.00522' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.balance,.money,.finalx div[balance] {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 6V18' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M15 9.5C15 8.11929 13.6569 7 12 7C10.3431 7 9 8.11929 9 9.5C9 10.8807 10.3431 12 12 12C13.6569 12 15 13.1193 15 14.5C15 15.8807 13.6569 17 12 17C10.3431 17 9 15.8807 9 14.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.fire {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.25961 3.09856C9.6636 2.08774 10.9948 1.46276 12.0272 2.2492C13.7471 3.55935 15.9044 5.4855 17.6398 7.68865C19.3595 9.87197 20.75 12.4348 20.75 15C20.75 17.2933 20.0398 18.9975 19.0117 20.218C17.9933 21.4269 16.6994 22.1193 15.5816 22.4671C15.0076 22.6457 14.4825 22.3825 14.2275 21.9545C13.9871 21.5512 13.9859 21.0147 14.2863 20.583C15.1436 19.351 16.05 17.5793 16.05 16C16.05 15.2165 15.7123 14.2889 15.1668 13.3372C14.7566 12.6215 14.2539 11.9351 13.7643 11.3465C13.6627 12.7494 13.3578 14.5121 12.412 15.9696C11.9822 16.6319 11.0267 16.706 10.518 16.0627C10.3592 15.8618 10.2023 15.6412 10.0588 15.4393C10.0501 15.4271 10.0415 15.4151 10.033 15.403C9.9545 15.2927 9.87986 15.1882 9.80763 15.09C9.12187 15.773 8.48333 16.5902 8.48333 17.5C8.48333 18.3037 8.88448 19.4025 9.35898 20.3335C9.61561 20.837 9.50832 21.3951 9.1994 21.7606C8.87092 22.1492 8.27312 22.3491 7.70569 22.0206C5.76159 20.8952 3.25 18.4917 3.25 15C3.25 14.0531 3.57109 13.0736 4.0203 12.1168C4.47254 11.1536 5.0858 10.15 5.72984 9.14739C5.95297 8.80004 6.17941 8.45306 6.40546 8.10668C7.51002 6.41411 8.60528 4.73579 9.25961 3.09856ZM10.8983 3.41743C10.7958 3.45292 10.6992 3.53846 10.6525 3.65524C9.93718 5.44504 8.74008 7.27713 7.63532 8.9679C7.41569 9.30403 7.19971 9.63458 6.99189 9.95809C6.35264 10.9532 5.78547 11.8866 5.3781 12.7543C4.96769 13.6284 4.75 14.3737 4.75 15C4.75 17.2945 6.15653 19.0762 7.63307 20.1782C7.27845 19.3371 6.98333 18.367 6.98333 17.5C6.98333 15.7694 8.2827 14.4629 9.00894 13.7752C9.47929 13.3298 10.2914 13.2899 10.7647 13.874C10.9359 14.0853 11.1032 14.3197 11.2553 14.5336L11.2734 14.559C11.3161 14.619 11.3576 14.6774 11.3983 14.7342C12.0671 13.4599 12.2543 11.9056 12.3012 10.6262C12.3204 10.0998 12.6468 9.68344 13.0747 9.50935C13.5118 9.33153 14.0549 9.40987 14.4285 9.82319L13.8721 10.3261L14.4285 9.82319C15.0949 10.5604 15.8626 11.5347 16.4682 12.5913C17.0657 13.6337 17.55 14.8329 17.55 16C17.55 17.6926 16.7822 19.4101 16.0062 20.6885C16.6582 20.3692 17.3159 19.9028 17.8644 19.2516C18.6512 18.3177 19.25 16.9612 19.25 15C19.25 12.9433 18.1125 10.7131 16.4614 8.61679C14.8259 6.54033 12.7696 4.70034 11.1183 3.44243C11.0636 3.40079 10.993 3.38466 10.8983 3.41743Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.life {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5.50063L11.4596 6.02073C11.463 6.02421 11.4664 6.02765 11.4698 6.03106L12 5.50063ZM8.96173 18.9109L8.49742 19.4999L8.96173 18.9109ZM15.0383 18.9109L14.574 18.3219L15.0383 18.9109ZM7.00061 16.4209C6.68078 16.1577 6.20813 16.2036 5.94491 16.5234C5.68169 16.8432 5.72758 17.3159 6.04741 17.5791L7.00061 16.4209ZM2.34199 13.4115C2.54074 13.7749 2.99647 13.9084 3.35988 13.7096C3.7233 13.5108 3.85677 13.0551 3.65801 12.6917L2.34199 13.4115ZM13.4698 8.03034C13.7627 8.32318 14.2376 8.32309 14.5304 8.03014C14.8233 7.7372 14.8232 7.26232 14.5302 6.96948L13.4698 8.03034ZM2.75 9.1371C2.75 6.98623 3.96537 5.18252 5.62436 4.42419C7.23607 3.68748 9.40166 3.88258 11.4596 6.02073L12.5404 4.98053C10.0985 2.44352 7.26409 2.02539 5.00076 3.05996C2.78471 4.07292 1.25 6.42503 1.25 9.1371H2.75ZM8.49742 19.4999C9.00965 19.9037 9.55955 20.3343 10.1168 20.6599C10.6739 20.9854 11.3096 21.25 12 21.25V19.75C11.6904 19.75 11.3261 19.6293 10.8736 19.3648C10.4213 19.1005 9.95208 18.7366 9.42605 18.3219L8.49742 19.4999ZM15.5026 19.4999C16.9292 18.3752 18.7528 17.0866 20.1833 15.4758C21.6395 13.8361 22.75 11.8026 22.75 9.1371H21.25C21.25 11.3345 20.3508 13.0282 19.0617 14.4798C17.7469 15.9603 16.0896 17.1271 14.574 18.3219L15.5026 19.4999ZM22.75 9.1371C22.75 6.42503 21.2153 4.07292 18.9992 3.05996C16.7359 2.02539 13.9015 2.44352 11.4596 4.98053L12.5404 6.02073C14.5983 3.88258 16.7639 3.68748 18.3756 4.42419C20.0346 5.18252 21.25 6.98623 21.25 9.1371H22.75ZM14.574 18.3219C14.0479 18.7366 13.5787 19.1005 13.1264 19.3648C12.6739 19.6293 12.3096 19.75 12 19.75V21.25C12.6904 21.25 13.3261 20.9854 13.8832 20.6599C14.4405 20.3343 14.9903 19.9037 15.5026 19.4999L14.574 18.3219ZM9.42605 18.3219C8.63014 17.6945 7.82129 17.0963 7.00061 16.4209L6.04741 17.5791C6.87768 18.2624 7.75472 18.9144 8.49742 19.4999L9.42605 18.3219ZM3.65801 12.6917C3.0968 11.6656 2.75 10.5033 2.75 9.1371H1.25C1.25 10.7746 1.66995 12.1827 2.34199 13.4115L3.65801 12.6917ZM11.4698 6.03106L13.4698 8.03034L14.5302 6.96948L12.5302 4.97021L11.4698 6.03106Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.unlife {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.96173 18.9109L9.42605 18.3219L8.96173 18.9109ZM12 5.50063L11.4596 6.02073C11.601 6.16763 11.7961 6.25063 12 6.25063C12.2039 6.25063 12.399 6.16763 12.5404 6.02073L12 5.50063ZM15.0383 18.9109L15.5026 19.4999L15.0383 18.9109ZM7.00061 16.4209C6.68078 16.1577 6.20813 16.2036 5.94491 16.5234C5.68169 16.8432 5.72758 17.3159 6.04741 17.5791L7.00061 16.4209ZM2.34199 13.4115C2.54074 13.7749 2.99647 13.9084 3.35988 13.7096C3.7233 13.5108 3.85677 13.0551 3.65801 12.6917L2.34199 13.4115ZM2.75 9.1371C2.75 6.98623 3.96537 5.18252 5.62436 4.42419C7.23607 3.68748 9.40166 3.88258 11.4596 6.02073L12.5404 4.98053C10.0985 2.44352 7.26409 2.02539 5.00076 3.05996C2.78471 4.07292 1.25 6.42503 1.25 9.1371H2.75ZM8.49742 19.4999C9.00965 19.9037 9.55954 20.3343 10.1168 20.6599C10.6739 20.9854 11.3096 21.25 12 21.25V19.75C11.6904 19.75 11.3261 19.6293 10.8736 19.3648C10.4213 19.1005 9.95208 18.7366 9.42605 18.3219L8.49742 19.4999ZM15.5026 19.4999C16.9292 18.3752 18.7528 17.0866 20.1833 15.4758C21.6395 13.8361 22.75 11.8026 22.75 9.1371H21.25C21.25 11.3345 20.3508 13.0282 19.0617 14.4798C17.7469 15.9603 16.0896 17.1271 14.574 18.3219L15.5026 19.4999ZM22.75 9.1371C22.75 6.42503 21.2153 4.07292 18.9992 3.05996C16.7359 2.02539 13.9015 2.44352 11.4596 4.98053L12.5404 6.02073C14.5983 3.88258 16.7639 3.68748 18.3756 4.42419C20.0346 5.18252 21.25 6.98623 21.25 9.1371H22.75ZM14.574 18.3219C14.0479 18.7366 13.5787 19.1005 13.1264 19.3648C12.6739 19.6293 12.3096 19.75 12 19.75V21.25C12.6904 21.25 13.3261 20.9854 13.8832 20.6599C14.4405 20.3343 14.9903 19.9037 15.5026 19.4999L14.574 18.3219ZM9.42605 18.3219C8.63014 17.6945 7.82129 17.0963 7.00061 16.4209L6.04741 17.5791C6.87768 18.2624 7.75472 18.9144 8.49742 19.4999L9.42605 18.3219ZM3.65801 12.6917C3.0968 11.6656 2.75 10.5033 2.75 9.1371H1.25C1.25 10.7746 1.66995 12.1827 2.34199 13.4115L3.65801 12.6917Z' fill='%23ffffff'/%3e%3cpath d='M12 5.50073L10.5 8.5001L14 11.0001L11 14.5001L13 16.5001L12 20.5001' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.yans {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23D65B28' d='M9.473 1.05 15.7 7.277c.4.4.4 1.047 0 1.447l-6.227 6.227c-.2.2-.462.3-.723.3h-1.5c-.66 0-.75-.535-.75-1.194V1.944c0-.66.09-1.194.75-1.194h1.5c.262 0 .524.1.723.3Z'/%3E%3Cpath fill='%23FFE150' d='M7.25 14.875a.64.64 0 0 1-.458-.19L.565 8.458a.649.649 0 0 1 0-.917l6.227-6.227a.64.64 0 0 1 .458-.19.64.64 0 0 1 .458.19l6.227 6.227a.649.649 0 0 1 0 .917l-6.227 6.227a.64.64 0 0 1-.458.19Z'/%3E%3Cpath fill='%23D65B28' d='M7.25 1.5a.27.27 0 0 1 .193.08l6.227 6.227a.272.272 0 0 1 0 .386L7.443 14.42a.27.27 0 0 1-.386 0L.83 8.193a.272.272 0 0 1 0-.386L7.057 1.58a.27.27 0 0 1 .193-.08Zm0-.75c-.262 0-.524.1-.724.3L.3 7.276c-.4.4-.4 1.047 0 1.447l6.227 6.227a1.02 1.02 0 0 0 1.448 0l6.227-6.227c.4-.4.4-1.047 0-1.447L7.975 1.049A1.028 1.028 0 0 0 7.25.75Z'/%3E%3Cpath stroke='%23D65B28' d='M3.031 10.969 4.501 9.5V8'/%3E%3Cpath fill='%23D65B28' d='M4.5 8.85a1.35 1.35 0 1 0 0-2.7 1.35 1.35 0 0 0 0 2.7Zm6 1a1.35 1.35 0 1 0 0-2.7 1.35 1.35 0 0 0 0 2.7Z'/%3E%3Cpath stroke='%23D65B28' d='m13.5 5.5-2.542 2.458M4.5 12.5l3.151-3.151a1.2 1.2 0 0 0 0-1.697l-.303-.303a1.2 1.2 0 0 1 0-1.697L9.5 3.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.balance.dark,.money.dark,.finalx div[balance].dark {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 6V18' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M15 9.5C15 8.11929 13.6569 7 12 7C10.3431 7 9 8.11929 9 9.5C9 10.8807 10.3431 12 12 12C13.6569 12 15 13.1193 15 14.5C15 15.8807 13.6569 17 12 17C10.3431 17 9 15.8807 9 14.5' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7' stroke='%23000000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.fire.dark {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.25961 3.09856C9.6636 2.08774 10.9948 1.46276 12.0272 2.2492C13.7471 3.55935 15.9044 5.4855 17.6398 7.68865C19.3595 9.87197 20.75 12.4348 20.75 15C20.75 17.2933 20.0398 18.9975 19.0117 20.218C17.9933 21.4269 16.6994 22.1193 15.5816 22.4671C15.0076 22.6457 14.4825 22.3825 14.2275 21.9545C13.9871 21.5512 13.9859 21.0147 14.2863 20.583C15.1436 19.351 16.05 17.5793 16.05 16C16.05 15.2165 15.7123 14.2889 15.1668 13.3372C14.7566 12.6215 14.2539 11.9351 13.7643 11.3465C13.6627 12.7494 13.3578 14.5121 12.412 15.9696C11.9822 16.6319 11.0267 16.706 10.518 16.0627C10.3592 15.8618 10.2023 15.6412 10.0588 15.4393C10.0501 15.4271 10.0415 15.4151 10.033 15.403C9.9545 15.2927 9.87986 15.1882 9.80763 15.09C9.12187 15.773 8.48333 16.5902 8.48333 17.5C8.48333 18.3037 8.88448 19.4025 9.35898 20.3335C9.61561 20.837 9.50832 21.3951 9.1994 21.7606C8.87092 22.1492 8.27312 22.3491 7.70569 22.0206C5.76159 20.8952 3.25 18.4917 3.25 15C3.25 14.0531 3.57109 13.0736 4.0203 12.1168C4.47254 11.1536 5.0858 10.15 5.72984 9.14739C5.95297 8.80004 6.17941 8.45306 6.40546 8.10668C7.51002 6.41411 8.60528 4.73579 9.25961 3.09856ZM10.8983 3.41743C10.7958 3.45292 10.6992 3.53846 10.6525 3.65524C9.93718 5.44504 8.74008 7.27713 7.63532 8.9679C7.41569 9.30403 7.19971 9.63458 6.99189 9.95809C6.35264 10.9532 5.78547 11.8866 5.3781 12.7543C4.96769 13.6284 4.75 14.3737 4.75 15C4.75 17.2945 6.15653 19.0762 7.63307 20.1782C7.27845 19.3371 6.98333 18.367 6.98333 17.5C6.98333 15.7694 8.2827 14.4629 9.00894 13.7752C9.47929 13.3298 10.2914 13.2899 10.7647 13.874C10.9359 14.0853 11.1032 14.3197 11.2553 14.5336L11.2734 14.559C11.3161 14.619 11.3576 14.6774 11.3983 14.7342C12.0671 13.4599 12.2543 11.9056 12.3012 10.6262C12.3204 10.0998 12.6468 9.68344 13.0747 9.50935C13.5118 9.33153 14.0549 9.40987 14.4285 9.82319L13.8721 10.3261L14.4285 9.82319C15.0949 10.5604 15.8626 11.5347 16.4682 12.5913C17.0657 13.6337 17.55 14.8329 17.55 16C17.55 17.6926 16.7822 19.4101 16.0062 20.6885C16.6582 20.3692 17.3159 19.9028 17.8644 19.2516C18.6512 18.3177 19.25 16.9612 19.25 15C19.25 12.9433 18.1125 10.7131 16.4614 8.61679C14.8259 6.54033 12.7696 4.70034 11.1183 3.44243C11.0636 3.40079 10.993 3.38466 10.8983 3.41743Z' fill='%23000000'/%3E%3C/svg%3E");
}
.life.dark {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5.50063L11.4596 6.02073C11.463 6.02421 11.4664 6.02765 11.4698 6.03106L12 5.50063ZM8.96173 18.9109L8.49742 19.4999L8.96173 18.9109ZM15.0383 18.9109L14.574 18.3219L15.0383 18.9109ZM7.00061 16.4209C6.68078 16.1577 6.20813 16.2036 5.94491 16.5234C5.68169 16.8432 5.72758 17.3159 6.04741 17.5791L7.00061 16.4209ZM2.34199 13.4115C2.54074 13.7749 2.99647 13.9084 3.35988 13.7096C3.7233 13.5108 3.85677 13.0551 3.65801 12.6917L2.34199 13.4115ZM13.4698 8.03034C13.7627 8.32318 14.2376 8.32309 14.5304 8.03014C14.8233 7.7372 14.8232 7.26232 14.5302 6.96948L13.4698 8.03034ZM2.75 9.1371C2.75 6.98623 3.96537 5.18252 5.62436 4.42419C7.23607 3.68748 9.40166 3.88258 11.4596 6.02073L12.5404 4.98053C10.0985 2.44352 7.26409 2.02539 5.00076 3.05996C2.78471 4.07292 1.25 6.42503 1.25 9.1371H2.75ZM8.49742 19.4999C9.00965 19.9037 9.55955 20.3343 10.1168 20.6599C10.6739 20.9854 11.3096 21.25 12 21.25V19.75C11.6904 19.75 11.3261 19.6293 10.8736 19.3648C10.4213 19.1005 9.95208 18.7366 9.42605 18.3219L8.49742 19.4999ZM15.5026 19.4999C16.9292 18.3752 18.7528 17.0866 20.1833 15.4758C21.6395 13.8361 22.75 11.8026 22.75 9.1371H21.25C21.25 11.3345 20.3508 13.0282 19.0617 14.4798C17.7469 15.9603 16.0896 17.1271 14.574 18.3219L15.5026 19.4999ZM22.75 9.1371C22.75 6.42503 21.2153 4.07292 18.9992 3.05996C16.7359 2.02539 13.9015 2.44352 11.4596 4.98053L12.5404 6.02073C14.5983 3.88258 16.7639 3.68748 18.3756 4.42419C20.0346 5.18252 21.25 6.98623 21.25 9.1371H22.75ZM14.574 18.3219C14.0479 18.7366 13.5787 19.1005 13.1264 19.3648C12.6739 19.6293 12.3096 19.75 12 19.75V21.25C12.6904 21.25 13.3261 20.9854 13.8832 20.6599C14.4405 20.3343 14.9903 19.9037 15.5026 19.4999L14.574 18.3219ZM9.42605 18.3219C8.63014 17.6945 7.82129 17.0963 7.00061 16.4209L6.04741 17.5791C6.87768 18.2624 7.75472 18.9144 8.49742 19.4999L9.42605 18.3219ZM3.65801 12.6917C3.0968 11.6656 2.75 10.5033 2.75 9.1371H1.25C1.25 10.7746 1.66995 12.1827 2.34199 13.4115L3.65801 12.6917ZM11.4698 6.03106L13.4698 8.03034L14.5302 6.96948L12.5302 4.97021L11.4698 6.03106Z' fill='%23000000'/%3E%3C/svg%3E");
}
.unlife.dark {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.96173 18.9109L9.42605 18.3219L8.96173 18.9109ZM12 5.50063L11.4596 6.02073C11.601 6.16763 11.7961 6.25063 12 6.25063C12.2039 6.25063 12.399 6.16763 12.5404 6.02073L12 5.50063ZM15.0383 18.9109L15.5026 19.4999L15.0383 18.9109ZM7.00061 16.4209C6.68078 16.1577 6.20813 16.2036 5.94491 16.5234C5.68169 16.8432 5.72758 17.3159 6.04741 17.5791L7.00061 16.4209ZM2.34199 13.4115C2.54074 13.7749 2.99647 13.9084 3.35988 13.7096C3.7233 13.5108 3.85677 13.0551 3.65801 12.6917L2.34199 13.4115ZM2.75 9.1371C2.75 6.98623 3.96537 5.18252 5.62436 4.42419C7.23607 3.68748 9.40166 3.88258 11.4596 6.02073L12.5404 4.98053C10.0985 2.44352 7.26409 2.02539 5.00076 3.05996C2.78471 4.07292 1.25 6.42503 1.25 9.1371H2.75ZM8.49742 19.4999C9.00965 19.9037 9.55954 20.3343 10.1168 20.6599C10.6739 20.9854 11.3096 21.25 12 21.25V19.75C11.6904 19.75 11.3261 19.6293 10.8736 19.3648C10.4213 19.1005 9.95208 18.7366 9.42605 18.3219L8.49742 19.4999ZM15.5026 19.4999C16.9292 18.3752 18.7528 17.0866 20.1833 15.4758C21.6395 13.8361 22.75 11.8026 22.75 9.1371H21.25C21.25 11.3345 20.3508 13.0282 19.0617 14.4798C17.7469 15.9603 16.0896 17.1271 14.574 18.3219L15.5026 19.4999ZM22.75 9.1371C22.75 6.42503 21.2153 4.07292 18.9992 3.05996C16.7359 2.02539 13.9015 2.44352 11.4596 4.98053L12.5404 6.02073C14.5983 3.88258 16.7639 3.68748 18.3756 4.42419C20.0346 5.18252 21.25 6.98623 21.25 9.1371H22.75ZM14.574 18.3219C14.0479 18.7366 13.5787 19.1005 13.1264 19.3648C12.6739 19.6293 12.3096 19.75 12 19.75V21.25C12.6904 21.25 13.3261 20.9854 13.8832 20.6599C14.4405 20.3343 14.9903 19.9037 15.5026 19.4999L14.574 18.3219ZM9.42605 18.3219C8.63014 17.6945 7.82129 17.0963 7.00061 16.4209L6.04741 17.5791C6.87768 18.2624 7.75472 18.9144 8.49742 19.4999L9.42605 18.3219ZM3.65801 12.6917C3.0968 11.6656 2.75 10.5033 2.75 9.1371H1.25C1.25 10.7746 1.66995 12.1827 2.34199 13.4115L3.65801 12.6917Z' fill='%23000000'/%3e%3cpath d='M12 5.50073L10.5 8.5001L14 11.0001L11 14.5001L13 16.5001L12 20.5001' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.success {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg fill='%23000000' width='800px' height='800px' viewBox='-3.5 0 19 19' xmlns='http://www.w3.org/2000/svg' class='cf-icon-svg'%3E%3Cpath d='M4.63 15.638a1.028 1.028 0 0 1-.79-.37L.36 11.09a1.03 1.03 0 1 1 1.58-1.316l2.535 3.043L9.958 3.32a1.029 1.029 0 0 1 1.783 1.03L5.52 15.122a1.03 1.03 0 0 1-.803.511.89.89 0 0 1-.088.004z'/%3E%3C/svg%3E");
}



@media only screen and (max-width: 1200px){
	:root {
		--sizeround: 80px;
		--header-height: 50px;
	}
	body {font-size: 18px;}
	button.icon {
		background-size:25px;
		padding: 18px;
	}
}
@media only screen and (max-width: 800px){
	body {font-size: 14px;}
}
@media only screen and (max-width: 500px){
	:root {
		--sizeround: 60px;
		--header-height: 40px;
	}
	body {font-size: 12px;}
	button.icon {
		background-size:20px;
		padding: 18px;
	}
	.listpics>div:nth-child(4){
		font-size: 12px;
		line-height: 20px;
	}	
	.finalx {
		font-size: 200%;
	}
	[rel='button'] {
        font-size: 18px;
        padding-left: 5px;
        padding-right: 5px;
	}
	[rel='button'] p{
		width: calc(100% - 20px);
	}
	.urovni span {
		line-height: 32px;
		height:30px;
	}
	.profile .balance, .profile .opyt, .profile .fire, .profile .level {margin: 10px;}
	.profile .container {}
	/* button.icon { */
		/* background-size: 20px; */
		/* padding: 10px; */
	/* } */
	/* :root { */
		/* --header-height: 40px; */
	/* } */
	/* .menu { */
		/* height: 40px; */
	/* } */
}
@media only screen and (max-width: 400px){
	.finalx {
		font-size: 200%;
	}
	.dalee {
		font-size:100%;
	}
	.listpics>div:nth-child(1){
		/* min-width:0; */
	}
	.profile .balance, .profile .opyt, .profile .fire, .profile .life, .profile .level {margin: 5px;}
	.profile,.rating,.stats {
		width: 90%;
	}
	.listpics .level, .listpics .opyt {
		font-size: inherit;
	}
}