@font-face {
    font-family: "transformers-solid-normal";
    font-style: normal;
    font-weight: 100;
    src: local("transformers-solid-normal"), url("/assets/css/transformers-solid-normal/transformers-solid-normal.woff2") format("woff2"), url("/assets/css/transformers-solid-normal/transformers-solid-normal.woff") format("woff");
    font-display: swap
}

@font-face {
    font-family: "AvenirNextCyr-Demi";
    font-style: normal;
    font-weight: 100;
    src: local("AvenirNextCyr-Demi"), url("/assets/fonts/AvenirNextCyr-Demi.woff2") format("woff2"), url("/assets/fonts/AvenirNextCyr-Demi.woff") format("woff");
    font-display: swap
}

body {
    margin: 0;
    padding: 0 8px;
    font-size: 12px;
    text-align: center;
    font-family: "transformers-solid-normal", sans-serif;
    background-color: #000;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

h1 {
    color: rgb(255, 255, 255);
    font-size: calc(1vw + 1vh);
    padding: 0;
    font-style: italic;
    margin: 0;
    white-space: nowrap
}

/* Ensure all text inside the title shares the same size */
h1 span,
h1 .country-code {
    font-size: inherit;
}



.conn-indicator {
    position: fixed;
    top: 4px;
    left: 4px;
    z-index: 1000;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--conn-color, #888);
    animation: indicatorBlink 1s infinite steps(1, start);
}

@keyframes indicatorBlink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}
@keyframes countryPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.6);
    }
}

.conn-indicator.pulse {
    animation: indicatorPulse 0.5s;
}
.status-container {
    position: fixed;
    top: 4px;
    right: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 1000;
}
.status-container .conn-indicator {
    position: static;
}
.country-container {
    display: inline-flex;
    align-items: center;
    animation: countryPulse 3s infinite;
}


.country-flag {

    width: 20px;
    height: 14px;
    margin-right: 4px;
    border-radius: 2px;
    background-size: cover;
}


.country-code {
    font-size: 14px;
    color: #39FF14;
    text-shadow: 0 0 2px #39FF14, 0 0 5px #39FF14;
    text-transform: uppercase;
}

h5 {
    color: #00EBE0;
    font-size: 5px;
    line-height: 4px;
    margin-left: 20px;
    margin-top: 0;
    -moz-box-shadow: 0 0 20px #00BBFF;
    -webkit-box-shadow: 0 0 20px #E30003;
    box-shadow: 0 0 25px #DB2427
}

@media (min-width:1200px) {
    body {
        font-size: .9rem
    }
}

@media (max-width:1199px) and (min-width:900px) {
    body {
        font-size: .8rem
    }
}

@media (max-width:899px) {
    body {
        font-size: .7rem
    }
}

.flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.flex-item:nth-child(1) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto
}

.InterAnalyzerV8 {
    width: 23px;
    flex-basis: auto;
    font-size: 17px;
    color: #00ab9d;
    text-shadow: 1px 1px 3px rgba(0, 238, 255, .76);
    box-shadow: 0 5 10px #C80C29;
    flex-grow: 10;
    text-align: center;
    Vertical-align: middle;
    max-width: 30%;
    height: auto;
    max-height: 30%;
    border: solid 1px #FFF;
    border-radius: 50%
}

.bearbull {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border: none;
    border-radius: 0;
    font-size: 17px;
    color: #00ab9d;
    text-shadow: 1px 1px 3px rgba(0, 238, 255, .76);
    box-shadow: none;
    vertical-align: middle;
}

.InterAnalyzerV8:hover {
    border: solid 1px rgb(238, 255, 0)
}

.bearbull:hover {
    text-shadow: 1px 1px 3px rgba(0, 238, 255, .76)
}

/* Coin flip effect */
.bearbull.small-rotate {
    perspective: 600px;

}

.bearbull .coin {
    width: 23px;
    height: 23px;
    position: relative;
    transform-origin: center center;
    transform-style: preserve-3d;
    transition: transform 1s;
}


.bearbull .coin img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    backface-visibility: hidden;
    object-fit: cover;
    object-position: center;
}

.bearbull .coin img.back {
    transform: rotateY(180deg);
}
.bearbull .coin.spinning {
    animation: spinCoin 0.4s linear 6 forwards;
}

@keyframes spinCoin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }

}

h2 {
    color: blue;
    font-size: 10px;
    line-height: 5px;
    padding: 0 0;
    font-style: italic;
    margin-bottom: 0
}

.span, .text {
    Vertical-align: middle
}

h5 {
    font-size: 8px;
    color: #ffc118;
    margin-bottom: 1px;
    text-shadow: 1px 1px 1px rgb(58, 14, 8);
    text-align: center
}

.menu {
    margin-bottom: 0;
    display: flex;
    color: rgb(229, 255, 0);
    text-shadow: 0 0 5px rgba(0, 17, 19, .993), 0 0 10px #ff0000d5, 0 0 15px
}

.oleglr {
    Margin-left: 5px;
    Vertical-align: middle;
    max-width: 65px;
    max-height: 55px
}

.digits {
    margin-top: 0;
    margin-bottom: 5px;
    display: flex;
    font-size: 3vw
}

.digits span {
    padding: 1px 0;
    flex-basis: auto;
    flex-grow: 2;
    text-align: center;
    font-size: 3vw;
    border-radius: 5px;
    color: #fff;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.digits_moved_Down {
    background: rgb(110, 0, 0);
    background: linear-gradient(90deg, rgba(227, 0, 0, 1.00) 0%, rgba(255, 100, 100, 1.00) 50%, rgba(227, 0, 0, 1.00) 100%);
    -moz-box-shadow: 0 0 10px #FF0000;
    -webkit-box-shadow: 0 0 10px #E30003;
    padding: 2px 1;
    box-shadow: 0 5 10px #C80C29;
    border: 4px;
    font-weight: 100;
    border-color: #000000;
    margin-right: 1px;
    margin-left: 1px;
    font-size: 3vw;
    font-family: "AvenirNextCyr-Demi", sans-serif;
    box-shadow: 0 0 0 1.2px #7c0101, 0 0 0 1px #ff0057, 0 0 0 1px orange;
    color: #ff1439;
    text-shadow: 0 0 5px rgba(255, 20, 57, 0.7);
}

.digits_moved_Up {
    background: rgb(0, 47, 186);
    background: linear-gradient(90deg, rgba(0, 47, 186, 1) 0%, rgba(0, 9, 255, 1) 50%, rgba(0, 47, 186, 1) 100%);
    -moz-box-shadow: 0 0 10px #00BBFF;
    -webkit-box-shadow: 0 0 10px #000BE3;
    padding: 2px 1;
    box-shadow: 0 5 10px #0A23A6;
    border: 4px;
    border-color: #000000;
    font-weight: 100;
    margin-right: 1px;
    margin-left: 1px;
    font-size: 3vw;
    font-family: "AvenirNextCyr-Demi", sans-serif;
    box-shadow: 0 0 0 1.2px #010783, 0 0 0 1px #00dbff, 0 0 0 1px #ff00e5;
    color: #1439ff;
    text-shadow: 0 0 5px rgba(20, 57, 255, 0.7);
}

.digitsGrd_moved_Down {
    background: rgb(110, 0, 0);
    background: linear-gradient(90deg, rgba(227, 0, 0, 1.00) 0%, rgba(255, 100, 100, 1.00) 50%, rgba(227, 0, 0, 1.00) 100%);
    -moz-box-shadow: 0 0 10px #FF0000;
    -webkit-box-shadow: 0 0 10px #E30003;
    box-shadow: 0 5 10px #C80C29;
    border: 4px;
    font-weight: 100;
    border-color: #000000;
    margin-right: 1px;
    margin-left: 1px;
    font-size: 3vw;
    font-family: "AvenirNextCyr-Demi", sans-serif;
    box-shadow: 0 0 0 1.2px #7c0101, 0 0 0 1px #ff0057, 0 0 0 1px orange;
    color: #ff1439;
    text-shadow: 0 0 5px rgba(255, 20, 57, .7)
}

.digitsGrd_moved_Up {
    background: rgb(0, 47, 186);
    background: linear-gradient(90deg, rgba(0, 47, 186, 1) 0%, rgba(0, 9, 255, 1) 50%, rgba(0, 47, 186, 1) 100%);
    -moz-box-shadow: 0 0 10px #00BBFF;
    -webkit-box-shadow: 0 0 10px #000BE3;
    box-shadow: 0 5 10px #0A23A6;
    border: 4px;
    border-color: #000000;
    font-weight: 100;
    margin-right: 1px;
    margin-left: 1px;
    font-size: 3vw;
    font-family: "AvenirNextCyr-Demi", sans-serif;
    box-shadow: 0 0 0 1.2px #010783, 0 0 0 1px #00dbff, 0 0 0 1px #ff00e5;
    color: #1439ff;
    text-shadow: 0 0 5px rgba(20, 57, 255, .7)
}

.digitsGrd_moved_Down:hover, .digitsGrd_moved_Up:hover {
    transform: scale(1.05)
}

.tGrid, .bGrid {
    margin-top: 0;
    margin-bottom: 0;
    display: flex
}

.tGrid, .bGrid span {
    padding: 0 0;
    flex-basis: auto;
    flex-grow: 9;
    text-align: center;
    font-size: 16px
}

.digits_O {
    background-color: yellow
}

.digits_E {
    background-color: orange
}

.headcol {
    margin-top: 1px;
    display: flex
}

.headcol span {
    padding: 1px 0;
    flex-basis: auto;
    flex-grow: 1;
    text-align: center;
    font-size: 0;
    margin-bottom: 1px
}

.Head_moved_down {
    background: rgb(110, 0, 0);
    background: linear-gradient(90deg, rgba(227, 0, 0, 1.00) 0%, rgba(255, 100, 100, 1.00) 50%, rgba(227, 0, 0, 1.00) 100%);
    -moz-box-shadow: 0 0 5px #FF1F00;
    -webkit-box-shadow: 0 0 5px #E30003;
    box-shadow: 0 0 3px #F53500
}

.Head_moved_up {
    background: rgb(0, 47, 186);
    background: linear-gradient(90deg, rgba(0, 47, 186, 1) 0%, rgba(0, 9, 255, 1) 50%, rgba(0, 47, 186, 1) 100%);
    -moz-box-shadow: 0 0 15px #00BBFF;
    -moz-box-shadow: 0 0 5px #FF1F00;
    -webkit-box-shadow: 0 0 3px #0019E3;
    box-shadow: 0 0 3px #0023F5
}

.Head_moved_mid {
    background: rgb(0, 186, 59);
    background: linear-gradient(90deg, rgba(0, 186, 59, 1) 0%, rgba(26, 255, 0, 1) 50%, rgba(0, 186, 59, 1) 100%);
    -moz-box-shadow: 0 0 5px #FF1F00;
    -webkit-box-shadow: 0 0 5px #E30003;
    box-shadow: 0 0 3px #02F500;
    box-shadow: 0 0 3px #00F595
}

.Active_1 {
    border-radius: 100%;
    background: rgb(255, 255, 0);
    animation: heartBeat;
    animation-duration: 1s;
    box-shadow: inset 0 0 5px rgb(0, 0, 0);
    color: transparent;
    text-shadow: 0 2px 3px rgba(255, 255, 255, .5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text
}

.Active_1:hover {
    box-shadow: inset 0 0 10px rgb(251, 255, 6)
}

.Active_2 {
    border-radius: 100%;
    box-shadow: inset 0 0 5px rgb(0, 0, 0);
    color: transparent;
    text-shadow: 0 2px 3px rgba(255, 255, 255, .5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    z-index: 5
}

.Active_2:hover {
    box-shadow: inset 0 0 10px rgb(0, 255, 21)
}

.Active_3 {
    border-radius: 100%;
    border-color: #000000;
    animation: flipOutX;
    z-index: 5;
    box-shadow: inset 0 0 5px rgb(0, 0, 0);
    color: transparent;
    text-shadow: 0 2px 3px rgba(255, 255, 255, .5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text
}

.Active_3:hover {
    box-shadow: inset 0 0 10px rgb(115, 255, 0)
}

.digit_red {
    border-radius: 100%;
    background: red;
    box-shadow: 0 0 0 1px #000000, 0 0 0 1px #FF0057, 0 0 0 1px orange;
    animation: pulse .9s linear;
    animation-direction: reverse;
    animation-duration: .5s
}

.digit_blue {
    border-radius: 100%;
    background: blue;
    box-shadow: 0 0 0 1px #000000, 0 0 0 1px #00B3FF, 0 0 0 1px orange;
    animation: pulse .9s linear;
    animation-duration: .5s
}

.head_Bar_down {
    border-top: 5px solid #ff1439
}

.head_Bar_up {
    border-top: 5px solid #1439ff
}

.head_Bar_mid {
    border-top: 5px solid #39ff14
}

table {
    border: 1px solid gray;
    border-collapse: collapse;
    text-align: center;
    background: black;
    width: 100%;
    height: 20px;
    font-size: 16px;
    font-weight: 900;
    color: black;
    font-style: normal;
    border-spacing: 10% 1%;
    table-layout: fixed
}

.menu span {
    width: auto;
    padding: 1px 0;
    flex-basis: auto;
    flex-grow: 1;
    text-align: center;
    font-size: 9px;
    border-radius: 5px;
    background: rgb(0, 255, 72);
    background: radial-gradient(circle, rgb(45, 180, 83) 0%, rgb(10, 59, 13) 100%);
    border: none;
    margin-right: 1px;
    -webkit-user-select: none;
    user-select: none;
    -webkit-box-shadow: inset 0 -3px 1px rgba(0, 0, 0, .45);
    box-shadow: inset 0 -3px 1px rgba(0, 0, 0, .45), 0 2px 2px rgba(0, 0, 0, .25);
    -moz-box-shadow: inset 0 -3px 1px rgba(0, 0, 0, .45), 0 2px 2px rgba(0, 0, 0, .25);
    box-shadow: inset 0 -3px 1px rgba(0, 0, 0, .45), 0 2px 2px rgba(0, 0, 0, .25)
}

.menu span:hover {
    background: rgba(255, 0, 0, .74);
    -moz-box-shadow: 0 0 10px #fbff0083;
    -webkit-box-shadow: 0 0 8px #00cae3;
    box-shadow: 0 0 5px #d400f94d;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9)
}

span.menu-active {
    background: rgb(251, 63, 63);
    background: radial-gradient(circle, rgba(251, 63, 63, 1) 0%, rgba(93, 16, 16, 1) 100%);
    position: relative;
    -webkit-box-shadow: inset 0 -3px 1px rgba(255, 255, 255, 1), inset 0 0 3px rgba(0, 0, 0, .9);
    -moz-box-shadow: inset 0 -3px 1px rgba(255, 0, 4, 1), inset 0 0 3px rgba(255, 10, 14, .9);
    box-shadow: inset 0 -3px 1px rgba(255, 0, 0, 1), inset 0 0 3px rgba(255, 0, 4, .9);
    -moz-box-shadow: 0 0 10px #ff000063;
    -webkit-box-shadow: 0 0 11px #00cae3;
    box-shadow: 0 0 12px #f90000a4
}

.menu:active:after {
    content: "";
    height: 3px;
    background: #86ff30;
    bottom: -.5px
}

.hint {
    color: #ff0
}

.digits {
    margin-top: 0;
    margin-bottom: 3px;
    display: flex
}

.digits span {
    padding: 1px 0;
    flex-basis: auto;
    flex-grow: 1;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    color: #e7e7e7;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.spots {
    margin-top: 4px;
    text-align: center;
    font-family: "transformers-solid-normal", sans-serif;
    margin-bottom: 8px;
    height: 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center
}

table.iksweb {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    height: 10px
}

table.iksweb, table.iksweb td, table.iksweb th {
    border: 1px solid #00000000
}

table.iksweb td, table.iksweb th {
    padding: 0;
    width: 30px;
    height: 10px
}

table.iksweb th {
    background: #347c9900;
    color: #fff;
    font-weight: normal
}

.spots_moved_down {
    background: rgb(110, 0, 0);
    background: linear-gradient(90deg, rgba(227, 0, 0, 1.00) 0%, rgba(255, 100, 100, 1.00) 50%, rgba(227, 0, 0, 1.00) 100%);
    -moz-box-shadow: 0 0 10px #FF0000;
    -webkit-box-shadow: 0 0 10px #E30003;
    padding: 2px 1;
    box-shadow: 0 5 10px #C80C29;
    border: 4px;
    border-color: #5a0a0a;
    margin-right: 1px;
    margin-left: 1px
}

.spots_moved_up {
    background: rgb(0, 47, 186);
    background: linear-gradient(90deg, rgba(0, 47, 186, 1) 0%, rgba(0, 9, 255, 1) 50%, rgba(0, 47, 186, 1) 100%);
    -moz-box-shadow: 0 0 10px #00BBFF;
    -webkit-box-shadow: 0 0 10px #000BE3;
    padding: 2px 1;
    box-shadow: 0 5 10px #0A23A6;
    border: 4px;
    border-color: #103136;
    margin-right: 1px;
    margin-left: 1px
}

.headcol span {
    padding: 2px 0;
    flex-basis: auto;
    flex-grow: 1;
    text-align: center;
    font-size: 0;
    border-radius: 5px;
    color: #fff
}

.Head_moved_down {
    background-color: #c03
}

.Head_moved_up {
    background-color: #29abe2
}

.Head_moved_mid {
    background-color: #32cd32
}

.placecol {
    margin-bottom: 1px;
    display: flex
}

.placecol span {
    padding: 2px 0;
    flex-basis: auto;
    flex-grow: 1;
    text-align: center;
    font-size: 0;
    color: #fff
}

.Place_moved_down {
    background-color: #c03
}

.Place_moved_up {
    background-color: #29abe2
}

.Place_moved_none {
    background-color: #fff
}

.chartContainer2 {
    height: 123px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.chartContainer3 {
    height: 150px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.chartContainer0 {
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 123px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block
}

.chartContainer {
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 150px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block
}

.chartContainerDigit {
    height: 123px;
    width: 100%;
    display: inline-block;
    margin: 0 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.chartContainerAxisCord {
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 150px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block
}

.input {
    font-family: monospace;
    background: rgba(12, 54, 8, .59);
    color: #7fff00;
    font-weight: 700;
    border: 1px solid #00eb38
}

#tokenbtn {
    background-color: #e0a800;
    color: #ff0;
    border: 1px solid #ff0;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 10px;
    cursor: pointer;
    transition: transform 0.3s;
    margin: 5px 0;
    filter: drop-shadow(0 0 4px #ff0);
}

#logoutbtn {
    background-color: #e0a800;
    color: #ff0;
    border: 1px solid #ff0;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 10px;
    cursor: pointer;
    transition: transform 0.3s;
    margin: 5px 0;
    filter: drop-shadow(0 0 4px #ff0);
}

#logoutbtn:hover {
    transform: scale(1.05);
}

#tokenbtn:hover {
    transform: scale(1.05);
}

.top-lblA {
    font-size: 11px;
    color: #00f3ff;
    margin-left: 5px;
    font-size: 10px
}

.top-lbl {
    font-size: 9px;
    color: #00f3ff
}

.input[type="password"] {
    width: 100%;
    padding: 5px 15px;
    margin: 2px 0;
    box-sizing: border-box;
    border: 2px solid rgb(102, 255, 0);
    border-radius: 4px;
    color: #adff2f
}

.column {
    float: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: flex-start
}

.row:after {
    content: "";
    clear: both
}

.mnozstvi_sleva {
    box-shadow: 0 10px 14px -7px #3dcc00;
    background: linear-gradient(to bottom, #49e800 5%, #5ca03b 100%);
    background-color: #47d804;
    border-radius: 4px;
    border: 1px solid #1a0;
    display: inline-block;
    cursor: pointer;
    color: #c4efff;
    font-family: Arial;
    font-size: 15px;
    font-weight: 400;
    margin-right: 5px;
    margin-left: 3px;
    height: 20px;
    width: 30px;
    text-decoration: none;
    text-shadow: 0 1px 0 #000;
    -moz-box-shadow: 0 0 13px #ff4f00;
    -webkit-box-shadow: 0 0 14px #4dff00;
    box-shadow: 0 0 3px #4dff00;
    background-color: rgba(60, 188, 0, .56)
}

.mnozstvi_sleva:hover {
    background: linear-gradient(to bottom, #54ff00 5%, #a3b19c 100%);
    -moz-box-shadow: 0 0 13px #ff4f00;
    -webkit-box-shadow: 0 0 14px #4dff00;
    box-shadow: 0 0 10px #4dff00
}

.mnozstvi_sleva:active {
    position: relative;
    top: 2px
}

.mnozstvi_sprava {
    box-shadow: 0 10px 14px -7px #b07a41;
    background: linear-gradient(to bottom, #bc8c8c 5%, #c94949 100%);
    background-color: #c29090;
    border-radius: 4px;
    border: 1px solid #fd0000;
    display: inline-block;
    cursor: pointer;
    color: #96fff9;
    font-family: Arial;
    margin-right: 3px;
    margin-left: 5px;
    font-size: 15px;
    font-weight: 400;
    height: 20px;
    width: 30px;
    text-decoration: none;
    text-shadow: 0 1px 0 #000;
    -moz-box-shadow: 0 0 5px red;
    -webkit-box-shadow: 0 0 13px #e30003;
    box-shadow: 0 0 13px #db2427;
    background-color: rgba(188, 0, 35, .56)
}

.mnozstvi_sprava:hover {
    background: linear-gradient(to bottom, #cfcccc 5%, #b81a1a 100%);
    -moz-box-shadow: 0 0 10px red;
    -webkit-box-shadow: 0 0 10px #e30003;
    box-shadow: 0 0 10px #db2427
}

.mnozstvi_sprava:active {
    position: relative;
    top: 2px
}

.textbox-btm {
    border: 1px solid #00ff1d;
    border-radius: 5px;
    width: 100%;
    background: rgba(5, 46, 12, .07);
    color: rgba(119, 239, 0, 1);
    height: 25px;
    font-size: 18px;
    text-decoration: solid;
    text-shadow: 0 0 5px rgb(156, 253, 0);
    -moz-box-shadow: 0 0 13px rgb(0, 255, 55);
    box-shadow: 0 0 13px rgba(0, 255, 157, .397)
}

.risebtn {
    box-shadow: 0 10px 14px 7px #3dcc00;
    background: linear-gradient(to bottom, #4df500 5%, #5dbc2f 100%);
    background-color: #47d804;
    border-radius: 4px;
    border: 2px solid #209e12;
    cursor: pointer;
    color: #0e0d27;
    font-family: Arial;
    font-size: 10px;
    height: 30px;
    width: 60%;
    text-shadow: 0 2px 3px rgb(0, 66, 11);
    -moz-box-shadow: 0 0 13px #ff4f00;
    -webkit-box-shadow: 0 0 14px #4dff00;
    box-shadow: 0 0 18px #4dff00;
    background-color: rgba(60, 188, 0, .56)
}

.risebtn:hover {
    background: linear-gradient(to bottom, #53ff00 40%, #57c723 100%);
    -moz-box-shadow: 0 0 13px #ff4f00;
    -webkit-box-shadow: 0 0 20px #4dff00;
    box-shadow: 0 0 22px #4dff00;
    background-color: #2f0
}

.risebtn:active {
    position: relative;
    top: 3px
}

.fallbtn {
    box-shadow: 0 10px 14px -7px #b07a41;
    background: linear-gradient(to bottom, #ef4646 5%, #bd0808 100%);
    background-color: #c29090;
    border-radius: 4px;
    border: 2px solid #610707;
    cursor: pointer;
    color: #0e0d27;
    font-size: 10px;
    font-family: Arial;
    height: 30px;
    width: 60%;
    text-decoration: solid;
    text-shadow: 0 0 5px rgb(88, 2, 2);
    -moz-box-shadow: 0 0 13px red;
    -webkit-box-shadow: 0 0 14px #ff0508;
    box-shadow: 0 0 18px #d40002;
    background-color: rgba(224, 2, 43, .76)
}

.fallbtn:hover {
    background: linear-gradient(to bottom, red 40%, #d02121 100%);
    -moz-box-shadow: 0 0 13px red;
    -webkit-box-shadow: 0 0 20px #ff0508;
    box-shadow: 0 0 25px #a6090b;
    background-color: #c94e4e
}

.fallbtn:active {
    position: relative;
    top: 3px
}

.button-active {
    color: #000 !important;
    background-color: #ccc !important
}

#output {
    font-size: 10px;
    margin-top: 5px;
    font-family: "transformers-solid-normal", sans-serif;
    text-align: center;
    line-height: auto;
    height: 300px;
    color: rgb(32, 238, 5);
    padding: 1px 1px;
    text-shadow: 1px 1px 2px rgba(0, 128, 111, .979), 0 0 1em rgb(18, 1, 59), 0 0 .2em rgba(0, 0, 255, .185);
    -moz-box-shadow: 0 0 13px #00ffd5;
    -webkit-box-shadow: 0 0 14px #40d600;
    box-shadow: 0 0 15px rgba(25, 75, 0, .493);
    background-color: rgba(0, 1, 3, .486);
    border-radius: 5px
}

::-webkit-scrollbar-button {
    background-image: url("");
    background-repeat: no-repeat;
    width: 1px;
    height: 0
}

::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0)
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0;
    border-radius: 4px;
    background-color: rgba(0, 184, 19, .29)
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 232, 253, .36)
}

::-webkit-resizer {
    background-image: url("");
    background-repeat: no-repeat;
    width: 1px;
    height: 0
}

::-webkit-scrollbar {
    width: 1px
}

#main {
    display: none;
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 140%
}

#main:target {
    display: block
}

#okno {
    font-family: "transformers-solid-normal", sans-serif;
    text-align: center;
    padding: 15px;
    border: 1px solid #63cc00;
    border-radius: 10px;
    color: #33ff00;
    position: absolute;
    background-color: #000102ea;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow-wrap: break-word
}

.close {
    display: inline-block;
    border: 1px solid hsl(130, 100%, 40%);
    color: hsl(120, 100%, 50%);
    padding: 0 2px;
    margin: 10px;
    text-decoration: color;
    background: #013f04;
    border-radius: 10px;
    font-size: 3vw;
    cursor: pointer;
    text-shadow: 1px 1px 2px red, 25 2 40em blue, 0 0 .2em blue;
    font-size: 13px
}

.close:hover {
    background: #e40316
}

.output {
    display: block;
    margin-top: 1px;
    float: center;
    height: 190px;
    width: auto;
    overflow-x: auto;
    margin: 0 auto
}

.butggton {
    text-decoration: none;
    color: #7f8c8d;
    background: #fefefe;
    padding: 5px 8px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    margin: 20px auto;
    text-align: center;
    display: block;
    width: 120px;
    position: relative;
    height: 25px;
    font: 400 16px verdana
}

a.butggton:after {
    content: "";
    background: linear-gradient(to right, #2ecc71 10%, #3498db 10%, #3498db 20%, #8e44ad 20%, #8e44ad 30%, #e67e22 30%, #e67e22 40%, #c0392b 40%, #c0392b 50%, #2ecc71 50%, #2ecc71 60%, #3498db 60%, #3498db 70%, #8e44ad 70%, #8e44ad 80%, #e67e22 80%, #e67e22 90%, #c0392b 90%);
    background-size: 200% 100%;
    display: inline-block;
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0
}

a.butggton:hover {
    color: #34495e
}

a.obl {
    position: relative;
    display: block;
    color: #ed2400;
    text-decoration: none;
    margin: 20px auto;
    text-align: center;
    width: 125px;
    font-family: verdana;
    font-size: 22px;
    letter-spacing: 2px;
    border-bottom: 2px solid transparent
}

a.obl:hover, a.obl:focus {
    outline: none;
    border-bottom: 2px solid #eee
}

a.obl::before, a.obl::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border: 12px double rgba(0, 0, 0, .1);
    border-radius: 50%;
    content: '';
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(.2);
    -moz-transform: translateX(-50%) translateY(-50%) scale(.2);
    transform: translateX(-50%) translateY(-50%) scale(.2)
}

a.obl:after {
    width: 60px;
    height: 60px;
    border-width: 6px;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(.8);
    -moz-transform: translateX(-50%) translateY(-50%) scale(.8);
    transform: translateX(-50%) translateY(-50%) scale(.8)
}

a.obl:hover:before, a.obl:hover:after {
    -webkit-animation: pulsate 1.2s infinite;
    -moz-animation: pulsate 1.2s infinite;
    -ms-animation: pulsate 1.2s infinite;
    animation: pulsate 1.2s infinite
}

@-webkit-keyframes pulsate {
    30% {
        opacity: 1;
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1)
    }

    100% {
        opacity: .3;
        -webkit-transform: translateX(-50%) translateY(-50%) scale(.5)
    }
}

@-moz-keyframes pulsate {
    30% {
        opacity: 1;
        -moz-transform: translateX(-50%) translateY(-50%) scale(1)
    }

    100% {
        opacity: .3;
        -moz-transform: translateX(-50%) translateY(-50%) scale(.5)
    }
}

@-ms-keyframes pulsate {
    30% {
        opacity: 1;
        -ms-transform: translateX(-50%) translateY(-50%) scale(1)
    }

    100% {
        opacity: .3;
        -ms-transform: translateX(-50%) translateY(-50%) scale(.5)
    }
}

@keyframes pulsate {
    30% {
        opacity: 1;
        transform: translateX(-50%) translateY(-50%) scale(1)
    }

    100% {
        opacity: .3;
        transform: translateX(-50%) translateY(-50%) scale(.5)
    }
}

a.fciA {
    margin: 1px auto;
    font-family: arial;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: -1px;
    text-decoration: none;
    text-align: center;
    display: block;
    width: 10em;
    color: #d703f3;
    position: relative;
    -webkit-transition: color .2s;
    -moz-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
    border-radius: 5px;
    font-family: "transformers-solid-normal", sans-serif
}

a.fciA:hover {
    color: #ff0000;
    background: rgba(250, 0, 0, .1);
    border-radius: 5px
}

a.fciA:after {
    left: -20px;
    -webkit-transition-property: left, opacity, top;
    -moz-transition-property: left, opacity, top;
    -o-transition-property: left, opacity, top;
    transition-property: left, opacity, top;
    -webkit-transition-duration: .2s, .2s, .2s;
    -moz-transition-duration: .2s, .2s, .2s;
    -o-transition-duration: .2s, .2s, .2s;
    transition-duration: .2s, .2s, .2s;
    content: "";
    width: 12px;
    height: 12px;
    background: transparent;
    position: absolute;
    border-left: 5px solid #ff0000;
    border-top: 5px solid #ff0000;
    top: -22px;
    opacity: 0;
    border-radius: 5px
}

a.fciA:hover:after {
    left: -10px;
    top: -12px;
    opacity: 1
}

a.fciA:before {
    right: -20px;
    -webkit-transition-property: right, opacity, top;
    -moz-transition-property: right, opacity, top;
    -o-transition-property: right, opacity, top;
    transition-property: right, opacity, top;
    -webkit-transition-duration: .2s, .2s, .2s;
    -moz-transition-duration: .2s, .2s, .2s;
    -o-transition-duration: .2s, .2s, .2s;
    transition-duration: .2s, .2s, .2s;
    content: "";
    width: 12px;
    height: 12px;
    background: transparent;
    position: absolute;
    border-right: 5px solid #df0000;
    border-top: 5px solid #ff0000;
    top: -22px;
    opacity: 0;
    border-radius: 5px
}

a.fciA:hover:before {
    right: -10px;
    top: -12px;
    opacity: 1;
    border-radius: 5px
}

.fciSpan:after {
    left: -20px;
    -webkit-transition-property: left, opacity, bottom;
    -moz-transition-property: left, opacity, bottom;
    -o-transition-property: left, opacity, bottom;
    transition-property: left, opacity, bottom;
    -webkit-transition-duration: .2s, .2s, .2s;
    -moz-transition-duration: .2s, .2s, .2s;
    -o-transition-duration: .2s, .2s, .2s;
    transition-duration: .2s, .2s, .2s;
    content: "";
    width: 12px;
    height: 12px;
    background: transparent;
    position: absolute;
    border-left: 5px solid #ff0000;
    border-bottom: 5px solid #ff0000;
    bottom: -24px;
    opacity: 0;
    border-radius: 5px
}

.fciSpan:hover:after {
    left: -10px;
    bottom: -14px;
    opacity: 1;
    border-radius: 5px
}

.fciSpan:before {
    right: -20px;
    -webkit-transition-property: right, opacity, bottom;
    -moz-transition-property: right, opacity, bottom;
    -o-transition-property: right, opacity, bottom;
    transition-property: right, opacity, bottom;
    -webkit-transition-duration: .2s, .2s, .2s;
    -moz-transition-duration: .2s, .2s, .2s;
    -o-transition-duration: .2s, .2s, .2s;
    transition-duration: .2s, .2s, .2s;
    content: "";
    width: 12px;
    height: 12px;
    background: transparent;
    position: absolute;
    border-right: 5px solid #ff3300;
    border-bottom: 5px solid #ff0000;
    bottom: -24px;
    opacity: 0;
    border-radius: 5px
}

.fciSpan:hover:before {
    right: -10px;
    bottom: -14px;
    opacity: 1;
    border-radius: 5px
}

a.bot5 {
    display: block;
    width: 80px;
    margin: 20px auto;
    padding: 7px 20px;
    font-family: inherit;
    font-size: 15px;
    color: #111;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 0 2px rgba(255, 255, 255, 1);
    background-color: #ccc;
    background-clip: padding-box;
    border: 1px solid;
    border-color: #202020 #1a1a1a #111;
    border-radius: 2px;
    background-image: -webkit-linear-gradient(top, #efefef, #777);
    background-image: -moz-linear-gradient(top, #efefef, #777);
    background-image: -o-linear-gradient(top, #efefef, #777);
    background-image: linear-gradient(to bottom, #efefef, #777);
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, .09), 0 1px 1px rgba(0, 0, 0, .3);
    box-shadow: inset 0 1px rgba(255, 255, 255, .09), 0 1px 1px rgba(0, 0, 0, .2)
}

a.bot5:hover {
    background-color: #aaaaaa;
    background-image: -webkit-linear-gradient(top, #ccc, #555);
    background-image: -moz-linear-gradient(top, #ccc, #555);
    background-image: -o-linear-gradient(top, #ccc, #555);
    background-image: linear-gradient(to bottom, #ccc, #555)
}

a.bot5:active, .bot5.active {
    background-color: #b42f32;
    border-color: #1c1c1c #202020 #222;
    -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, .3), 0 1px rgba(255, 255, 255, .09);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, .3), 0 1px rgba(255, 255, 255, .09)
}

.output {
    width: 100%;
    margin-top: 1px;
    float: center;
    height: 150px;
    width: auto;
    overflow-x: auto;
    margin: 0 auto
}

.online {
    margin-bottom: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2e8836
}

#block1 {
    float: center;
    display: inherit
}

#block2 {
    float: left;
    display: flex;
    width: 500px;
    margin: 2px
}

.tab {
    overflow: hidden;
    margin-bottom: 0;
    background-color: rgba(30, 30, 30, .00);
    border-radius: 4px
}

.tab button {
    color: rgb(1, 36, 4);
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 2px 6px;
    background-color: rgb(4, 27, 13);
    transition: .3s;
    margin-bottom: 2px;
    font-size: 10px;
    border-radius: 6px;
    border-color: rgba(100, 165, 253, .93);
    -moz-box-shadow: 0 0 1px #035222;
    -webkit-box-shadow: 0 0 3px #044b21;
    box-shadow: 0 0 3px #04B148;
    font-family: "transformers-solid-normal", sans-serif
}

.tab button:hover {
    background-color: #0094C1;
    border-radius: 4px
}

.tab button.active {
    background-color: #00EBFF;
    border-radius: 4px;
    -moz-box-shadow: 0 0 1px #00BBFF;
    -webkit-box-shadow: 0 0 3px #E30003;
    box-shadow: 0 0 3px #00F0F4;
    font-family: "transformers-solid-normal", sans-serif
}

.tabcontent {
    display: none;
    padding: 1px 0;
    border-radius: 0;
    border-top: none;
    color: rgb(0, 247, 255);
    font-family: "transformers-solid-normal", sans-serif
}

.parent {
    display: grid;
    font-family: "transformers-solid-normal", sans-serif;
    grid-template-columns: repeat(0, .1fr);
    grid-template-rows: repeat(0, .1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0
}

.div1 {
    grid-area: 1 / 1 / 2 / 2
}

.div2 {
    grid-area: 3 / 1 / 4 / 2
}

.div3 {
    grid-area: 5 / 1 / 6 / 2
}

.div4 {
    grid-area: 2 / 4 / 3 / 6
}

.div5 {
    grid-area: 4 / 4 / 5 / 6
}

.div6 {
    grid-area: 3 / 3 / 4 / 4
}

.div8 {
    grid-area: 2 / 2 / 3 / 3
}

.div9 {
    grid-area: 2 / 3 / 3 / 4
}

.div10 {
    grid-area: 1 / 2 / 4 / 4
}

.parent2 {
    display: grid;
    grid-template-columns: repeat(0, .1fr);
    grid-template-rows: repeat(0, .1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0
}

.div1 {
    grid-area: 1 / 1 / 2 / 2
}

.div2 {
    grid-area: 3 / 1 / 4 / 2
}

.div3 {
    grid-area: 5 / 1 / 6 / 2
}

.div4 {
    grid-area: 2 / 4 / 3 / 6
}

.div5 {
    grid-area: 4 / 4 / 5 / 6
}

.div6 {
    grid-area: 3 / 3 / 4 / 4
}

.div8 {
    grid-area: 2 / 2 / 3 / 3
}

.div9 {
    grid-area: 2 / 3 / 3 / 4
}

.div10 {
    grid-area: 1 / 2 / 4 / 4
}

.parent3 {
    display: grid;
    grid-template-columns: repeat(0, .1fr);
    grid-template-rows: repeat(0, .1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0
}

.div1 {
    grid-area: 1 / 1 / 2 / 2
}

.div2 {
    grid-area: 3 / 1 / 4 / 2
}

.div3 {
    grid-area: 5 / 1 / 6 / 2
}

.div4 {
    grid-area: 2 / 4 / 3 / 6;
    margin-bottom: 1em
}

.div5 {
    grid-area: 4 / 4 / 5 / 6
}

.div6 {
    grid-area: 3 / 3 / 4 / 4
}

.div8 {
    grid-area: 2 / 2 / 3 / 3
}

.div9 {
    grid-area: 2 / 3 / 3 / 4
}

.div10 {
    grid-area: 1 / 2 / 4 / 4;
    border-radius: 11px;
    box-shadow: inset 6px 6px 5px #13121200, inset -6px -6px 5px #2b2a2a00
}

.tbResult {
    background: #1a1a1a;
    border-spacing: 4px;
    border-collapse: separate;
    padding: 2px;
    border-radius: 8px
}

.tbResult th:empty {
    background: #1a1a1a;
    border: none;
    box-shadow: none;
    padding: 0
}

.tbResult th:not(:empty) {
    background: #242424;
    border-radius: 4px;
    padding: 6px;
    min-width: 24px;
    color: #ffffff;
    font-family: "AvenirNextCyr-Demi", sans-serif;
    transition: transform .2s ease
}

.tbResult th.digitsGrd_moved_Up:not(:empty) {
    background: rgb(0, 47, 186);
    color: #ffffff;
    text-shadow: 0 0 2px rgba(20, 57, 255, .5)
}

.tbResult th.digitsGrd_moved_Down:not(:empty) {
    background: rgb(110, 0, 0);
    color: #ffffff;
    text-shadow: 0 0 2px rgba(255, 20, 57, .5)
}

.tbResult th.digitsGrd_moved_Up:not(:empty):hover, .tbResult th.digitsGrd_moved_Down:not(:empty):hover {
    transform: scale(1.02)
}

.tooltip1 {
    display: inline;
    position: relative
}

.tooltip .tooltiptext {
    visibility: hidden;
    content: attr();
    width: 120px;
    opacity: .6;
    background-color: "rgba(7,0,0,.60)";
    font-size: 10px;
    color: #ffe600;
    text-align: center;
    padding: 0 0;
    position: absolute;
    z-index: 1;
    bottom: 2px;
    left: 400%;
    margin-left: -30px;
    opacity: 0;
    transition: opacity .3s
}

.tooltip .tooltiptext::after {
    position: absolute;
    bottom: 0;
    margin-left: -140px;
    border-width: 5px;
    border-style: solid;
    border-color: #00C3DB transparent transparent transparent
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: .3
}

[data-tooltip] {
    position: relative
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    color: rgb(229, 255, 0);
    padding: .2em;
    pointer-events: none;
    opacity: 0;
    transition: .5s;
    border-radius: 5px
}

[data-tooltip]:hover::after {
    opacity: 1
}

.tooltipvzero {
    height: 1px;
    line-height: 1px;
    background: rgba(0, 183, 255, 0.2);
    font-family: 'AvenirNextCyr-Demi', sans-serif;
    color: transparent;
    font-size: 4px;
    animation: neonPulseOptimized 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(0, 195, 255, 0.5));
    transition: all 0.3s ease;
    will-change: filter;
}

@keyframes neonPulseOptimized {
    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(0, 195, 255, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(0, 195, 255, 0.8));
    }
}

.tooltipvzero:hover {
    background: rgba(0, 183, 255, 0.3);
    animation: none;
    filter: drop-shadow(0 0 12px rgba(0, 195, 255, 0.8));
}

.tooltipUp {
    border: .4px;
    border-top-left-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: 'AvenirNextCyr-Demi', sans-serif;
    font-weight: bold;
    color: #00f;
    font-size: 4px;
    display: block;
    position: relative;
    text-shadow: rgb(0, 0, 0) 4px 4 4px
}

.tooltipUp:hover {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border: .4px;
    background-color: #00ffff25;
    font-family: 'AvenirNextCyr-Demi', sans-serif;
    font-weight: bold;
    text-shadow: rgb(0, 0, 0) 4px 4 4px;
    font-size: 9px
}

.tooltipDw {
    border: .4px;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: 'AvenirNextCyr-Demi', sans-serif;
    font-weight: bold;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 4px;
    text-shadow: rgb(0, 0, 0) 4px 4 4px
}

.tooltipDw:hover {
    border: .4px;
    background-color: rgba(255, 0, 0, .144);
    font-family: 'AvenirNextCyr-Demi', sans-serif;
    font-weight: bold;
    color: #f00;
    text-shadow: rgb(0, 0, 0) 4px 4 4px;
    font-size: 9px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
}

.candltimer {
    width: 8px;
    margin-top: -2px;
    Vertical-align: middle;
    padding: 0
}

.hidden {
    display: none
}

ul.hr {
    margin: 0;
    padding: 0
}

ul.hr li {
    display: inline
}

.hint {
    color: yellow
}

.target-1 {
    color: yellow;
    margin-bottom: -10px
}

.textbox-chrt {
    border: 1px solid #00ff1d;
    border-radius: 5px;
    text-align: center;
    color: rgb(0, 231, 239);
    width: 19px;
    height: 19px;
    text-decoration: solid;
    background-color: #011408e0;
    text-shadow: 0 0 9px rgb(156, 253, 0);
    -moz-box-shadow: 0 0 13px rgb(0, 255, 55);
    box-shadow: 0 0 10px rgba(0, 255, 157, .397)
}

.pulsep {
    margin: 100px;
    display: block;
    width: 22px;
    height: 215px;
    border-radius: 50%;
    background: #cca92c;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(204, 169, 44, .4);
    animation: pulse 1s infinite
}

.pulsep:hover {
    animation: none
}

@-webkit-keyframes pulsep {
    1% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, .4)
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

@keyframes pulsep {
    1% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, .4);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, .4)
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

.pulse1 {
    display: inline-block;
    width: 20px;
    height: 19px;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 183, 255, .4);
    animation: .5s linear 5s pulse
}

.pulse1:hover {
    animation: .5s linear 1s infinite pulse;
    animation-fill-mode: forwards;
    transform: translateY(80px);
    animation-timing-function: ease-out
}

@-webkit-keyframes pulse1 {
    20% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, .4)
    }

    85% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0)
    }

    20% {
        -webkit-box-shadow: 0 0 0 0 rgba(29, 221, 0, .41)
    }
}

@keyframes pulse1 {
    20% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, .4);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, .4)
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0)
    }

    30% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

@keyframes pulse1 {
    50% {
        transform: scale(1.9);
        opacity: 1
    }

    50% {
        opacity: 1
    }

    100% {
        transform: scale(1.1);
        opacity: .8
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        opacity: 1
    }

    100% {
        transform: scale(1.3);
        opacity: .9
    }
}

.pulse::after {
    animation-delay: 1.5s;
    box-shadow: 0 0 0 1px #000000, 0 0 0 1px #00B3FF, 0 0 0 1px orange
}

@keyframes pulse4 {
    0% {
        transform: scale(1);
        opacity: 1
    }

    30% {
        opacity: 1
    }

    50% {
        transform: scale(.9);
        opacity: .8
    }
}

.animate-pulse {
    height: 2px;
    line-height: 2px;
    background: rgba(255, 255, 255, .00);
    border-radius: 24px;
    font-weight: bold;
    font-size: 0;
    margin-top: 5px;
    margin-left: 36%;
    margin-right: 36%;
    padding: 11px;
    text-align: center;
    animation: animate_pulse .5s infinite
}

.animate-pulse:hover {
    animation: none
}

@keyframes animate_pulse {
    15% {
        box-shadow: 0 0 0 10px rgba(255, 0, 30, .10)
    }

    5% {
        box-shadow: 0 0 0 5px rgba(0, 243, 255, .14)
    }

    1% {
        box-shadow: 0 0 0 3px rgba(200, 255, 0, .20)
    }
}

.animate-pulse4 {
    border-radius: 98px;
    font-weight: bold;
    margin-top: 20px;
    margin-left: 36%;
    margin-right: 36%;
    padding: 11px;
    text-align: center;
    animation: animate_pulse 1s infinite
}

.animate-pulse4:hover {
    animation: none
}

@keyframes animate_pulse4 {
    15% {
        box-shadow: 0 0 0 10px rgba(255, 0, 30, .16)
    }

    5% {
        box-shadow: 0 0 0 5px rgba(0, 243, 255, .35)
    }

    1% {
        box-shadow: 0 0 0 3px rgba(200, 255, 0, .53)
    }
}

.blueb {
    background: blue;
    color: white;
    border-radius: 48px;
    animation: animate_pulse .5s infinite;
    box-shadow: 0 0 0 1px #0066ff, 0 0 0 1px #00B3FF, 0 0 0 1px orange
}

.redb {
    background: red;
    border-radius: 48px;
    color: white;
    animation: animate_pulse .5s infinite;
    box-shadow: 0 0 0 1px #fc01c6, 0 0 0 1px #00B3FF, 0 0 0 1px orange
}

.redpoint {
    background: red;
    border-radius: 48px;
    color: white;
    animation: pulse .5s infinite
}

.timer {
    color: #00ffff;
    font-size: 10px;
    font-weight: normal;
    background: rgb(0, 38, 5);
    background: linear-gradient(90deg, rgba(0, 38, 5, 1) 0%, rgba(0, 69, 99, .493) 50%, rgba(0, 38, 5, 1) 100%);
    border-radius: 6px;
    -moz-box-shadow: 0 0 5px #00bbff7e;
    -webkit-box-shadow: 0 0 5px #e3000444;
    box-shadow: 0 0 6px #db242767
}

.signalform {
    display: inline-block;
    line-height: 0;
    padding: 4px;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 10px;
    color: #eeff00;
    border-radius: 5px;
    border-color: #13c00063;
    background: rgba(255, 255, 255, .021) linear-gradient(rgba(0, 30, 94, .199), rgba(2, 58, 2, .384) 60%, rgba(1, 63, 114, .192));
    -moz-box-shadow: 0 0 10px #00BBFF;
    -webkit-box-shadow: 0 0 11px #00CAE3;
    box-shadow: 0 0 10px #ff001e49
}

.signal-up,
.signal-down,
.signal-wait {
    display: inline-block;
    padding: 8px 6px;
    border-radius: 4px;
    font-weight: 700;
    will-change: transform, background-color;

    animation: pulseArrowUp 1s infinite, flashBgUp 0.3s linear infinite;

    animation: pulseArrowDown 1s infinite, flashBgDown 0.3s linear infinite;
    background: #00e676;
    color: #fff;
    font-size: 0.9em;
    text-shadow: 1px 1px 2px #000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    animation: pulseArrowUp 1s infinite, flashBgUp 0.6s linear infinite;

}

.signal-down {
    background: #ff1744;
    color: #fff;
    font-size: 0.9em;
    text-shadow: 1px 1px 2px #000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    animation: pulseArrowDown 1s infinite, flashBgDown 0.6s linear infinite;

}

.signal-wait {
    background: #ffeb3b;
    color: #333;
    font-size: 0.8em;
    text-shadow: 1px 1px 1px #aaa;
    box-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    animation: pulseArrowWait 1.5s infinite, pulseBgWait 2s ease-in-out infinite;
}

.switch {
    position: relative;
    display: inline-block;
    width: 38px;
    font-size: 8px;
    -moz-box-shadow: 0 0 12px #000;
    -webkit-box-shadow: 0 0 10px #000;
    border-radius: 8px
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(178, 243, 0, .247), rgb(61, 3, 39) 60%, rgba(0, 83, 13, .541));
    border-radius: 3px;
    -moz-box-shadow: 0 0 11px #e5ff00;
    -webkit-box-shadow: 0 0 11px #e30000;
    box-shadow: 0 0 12px #12750588;
    -webkit-transition: .4s;
    transition: .4s
}

.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 9%;
    border-color: black;
    background-image: repeating-linear-gradient(90deg, #D0FF00, #000000 20%, #002F00 20%);
    -webkit-transition: .4s;
    transition: .4s
}

input:checked+.slider {
    background-color: green
}

input:focus+.slider {
    box-shadow: 0 0 1px #91D3D9
}

input:checked+.slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px)
}

.slider.round {
    border-radius: 15px
}

.slider.round:before {
    border-radius: 50%
}

.slider:after {
    content: 'off';
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 70%;
    font-size: 10px;
    font-family: Verdana, sans-serif;
    -moz-box-shadow: 0 0 20px #00BBFF;
    -webkit-box-shadow: 0 0 20px #E30003;
    box-shadow: 0 0 10px #0092C7
}

input:checked+.slider:after {
    content: 'on';
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 30%;
    font-size: 10px;
    font-family: Verdana, sans-serif
}

.lablcheck {
    display: flex;
    align-content: stretch
}

.control {
    font-family: arial;
    display: block;
    position: relative;
    margin-bottom: 7px;
    padding-top: 2px;
    cursor: pointer;
    font-size: 6px
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.control_indicator {
    position: absolute;
    font-size: 8;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background: rgba(58, 187, 217, 1.00);
    background: linear-gradient(rgba(58, 122, 0, .50) 0%, rgba(9, 134, 0, .60) 50%, rgba(58, 122, 0, .50) 100%);
    border: 1px solid #00DBFF;
    border-radius: 3px
}

.control:hover input~.control_indicator, .control input:focus~.control_indicator {
    background: linear-gradient(rgba(117, 247, 0, .50) 0%, rgba(14, 220, 0, .60) 50%, rgba(117, 247, 0, .50) 100%)
}

.control input:checked~.control_indicator {
    background: #ff3300
}

.control:hover input:not([disabled]):checked~.control_indicator, .control input:checked:focus~.control_indicator {
    background: #da2505
}

.control input:disabled~.control_indicator {
    background: #251F1F;
    opacity: .6;
    pointer-events: none
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none
}

.control input:checked~.control_indicator:after {
    display: inherit
}

.control-checkbox .control_indicator:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #3FF500;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.control-checkbox input:disabled~.control_indicator:after {
    border-color: #000000
}

.control-checkbox .control_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    margin-left: -6px;
    margin-top: -7px;
    background: #e3f300;
    border-radius: 30px;
    opacity: .7;
    z-index: 8000;
    transform: scale(0)
}

@keyframes s-ripple {
    0% {
        transform: scale(0)
    }

    20% {
        transform: scale(1)
    }

    100% {
        opacity: 0;
        transform: scale(1)
    }
}

@keyframes s-ripple-dup {
    0% {
        transform: scale(0)
    }

    30% {
        transform: scale(1)
    }

    60% {
        transform: scale(1)
    }

    100% {
        opacity: 0;
        transform: scale(1)
    }
}

.control-checkbox input+.control_indicator::before {
    animation: s-ripple 250ms ease-out
}

.control-checkbox input:checked+.control_indicator::before {
    animation-name: s-ripple-dup
}

@-webkit-keyframes loader {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes loader {
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes loader {
    100% {
        transform: rotate(360deg)
    }
}

.hide {
    display: none
}

@-webkit-keyframes pulsing {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    50% {
        -webkit-transform: scale(1.0, 1.0);
        transform: scale(1.0, 1.0)
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@keyframes pulsing {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(.5, .5)
    }

    50% {
        -webkit-transform: scale(1.0, 1.0);
        transform: scale(1.0, 1.0)
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

.memory-game {
    width: 640px;
    height: 640px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-perspective: 1000px;
    perspective: 1000px
}

.memory-card {
    width: calc(25% - 10px);
    height: calc(33.333% - 10px);
    margin: 5px;
    position: relative;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s
}

.memory-card:active {
    -webkit-transform: scale(.97);
    -ms-transform: scale(.97);
    transform: scale(.97);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s
}

.memory-card.flip {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

.front-face, .back-face {
    width: 100%;
    height: 100%;
    padding: 10px;
    position: absolute;
    border-radius: 5px;
    background: black;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.front-face {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible
}

.popup__end {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden
}

.popup__body {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px
}

.popup__content {
    background-color: white;
    color: black;
    width: 80%;
    max-width: 500px;
    height: 80vh;
    max-height: 550px;
    border-radius: 15px;
    border: 1px solid black
}

.start_image {
    border-radius: 15px 15px 0 0
}

.popup__title {
    font-size: 25px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px
}

.popup__text {
    margin-bottom: 20px;
    font-size: 20px;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px
}

.discounts {
    padding-top: 5px
}

.discount {
    list-style: none;
    padding-top: 5px
}

.level__hard {
    width: 60px;
    margin-left: 30px;
    background-color: rgba(199, 12, 0, .91);
    color: white;
    border-radius: 5px;
    border: 1px solid white;
    transform: translateY(-2px)
}

.level__medium {
    width: 60px;
    margin-left: 30px;
    background-color: rgba(116, 215, 1, .91);
    color: white;
    border-radius: 5px;
    border: 1px solid white;
    transform: translateY(-2px)
}

.level__easy {
    width: 60px;
    margin-left: 30px;
    background-color: rgba(217, 239, 1, .96);
    color: white;
    border-radius: 5px;
    border: 1px solid white;
    transform: translateY(-2px)
}

.play_button {
    margin-top: 30px;
    width: 70%;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    text-decoration: none;
    background-color: black;
    border-radius: 15px;
    border: 2px solid black
}

.popup__start {
    font-size: 30px;
    color: white;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px
}

.play {
    padding-left: 20px
}

.score__now {
    font-size: 20px;
    height: 20px;
    width: 0;
    transform: translateX(calc(50vw - 25px));
    z-index: 1
}

.benefit__text, .prize, .score {
    font-size: 20px;
    padding-left: 20px;
    background: aqua
}

.benefit {
    font-size: 25px;
    padding-left: 20px;
    color: white;
    background: rgba(36, 36, 36, .79)
}

.popup__restart {
    margin-left: 15px;
    color: #274580;
    font-size: 35px
}

@media (max-width:470px) {
    .memory-card {
        width: calc(33.333% - 10px);
        height: calc(25% - 10px);
        margin: 5px;
        position: relative;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-transition: -webkit-transform .5s;
        transition: -webkit-transform .5s;
        -o-transition: transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s
    }
}

@media (max-height:330px), (max-height:570px) {
    .popup__title {
        font-size: 25px;
        padding-top: 5px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px
    }

    .popup__text {
        margin-bottom: 10px;
        font-size: 18px;
        padding-top: 0;
        padding-left: 15px;
        padding-right: 15px
    }

    .play_button {
        margin-top: 0;
        height: 45px
    }

    .popup__start {
        padding-top: 3px
    }
}

.telegram-button {
    position: fixed;
    right: 15px;
    bottom: 13px;
    transform: translate(-50%, -50%);
    background: #0014cc;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    color: rgb(255, 255, 255);
    text-align: center;
    line-height: 15px;
    font-size: 15px;
    z-index: 0
}

.telegram-button a {
    color: rgb(255, 0, 179)
}

.telegram-button:before, .telegram-button:after {
    content: " ";
    display: block;
    position: fixed;
    border: 50%;
    border: 1px solid #00cc99;
    left: -5px;
    right: -5px;
    top: -5px;
    bottom: -5px;
    border-radius: 50%;
    animation: animate 2s linear infinite;
    opacity: .6;
    backface-visibility: hidden
}

.telegram-button:after {
    animation-delay: .5s
}

@keyframes animate {
    0% {
        transform: scale(.5);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        transform: scale(1.2);
        opacity: 0
    }
}

.item {
    max-width: 100%;
    min-width: 10%
}

.items {
    text-shadow: 1px 1px 3px rgba(0, 238, 255, .76);
    box-shadow: 0 5 10px #c80c29;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99999
}

.inlinesparkline, .dynamicsparkline {
    display: inline-block;
    margin: 10px
}

/* Плавающая кнопка */
.floating-menu {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Изменено с right на left */
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FF5722;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.floating-menu-items {
    position: absolute;
    bottom: 70px;
    left: 0;
    /* Изменено с right на left */
    display: none;
    flex-direction: column;
    gap: 10px;
}

.floating-menu-items.show {
    display: flex;
}

.menu-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #424242;
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: scale(1.1);
}

/* Удаляем стили для кнопки установки */
#install-btn {
    display: none !important;
}

@keyframes pulseArrowUp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulseArrowDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulseArrowWait {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes flashBgUp {
    0%, 100% {
        background-color: #00e676;
        transform: scale(0.9);
    }
    50% {
        background-color: #32ff95;
        transform: scale(1.2);
    }
}

@keyframes flashBgDown {
    0%, 100% {
        background-color: #ff1744;
        transform: scale(0.9);
    }
    50% {
        background-color: #ff4f66;
        transform: scale(1.2);
    }
}

@keyframes pulseBgWait {
    0%, 100% {
        background-color: #ffeb3b;
        transform: scale(0.75);
    }
    50% {
        background-color: #fff599;
        transform: scale(0.85);
    }
}

#auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

#auth-modal.show {
    display: flex;
}

#auth-modal.hidden {
    display: none;
}

#auth-modal .auth-dialog {
    background: linear-gradient(135deg, #111, #222);
    padding: 30px;
    border-radius: 12px;
    filter: drop-shadow(0 0 6px #0ff);
    max-width: 320px;
    width: 90%;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #0ff;
    border: 1px solid #0ff;
    filter: drop-shadow(0 0 6px #0ff);
}

#auth-modal h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #0ff;
}

#auth-modal .verify-msg {
    margin-top: 15px;
    font-size: 14px;
    color: #0ff;
}

.deriv-auth-btn {
    background-color: #e0a800;
    color: #ff0;
    border: 1px solid #ff0;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 10px;
    cursor: pointer;
    transition: transform 0.3s;
    margin: 5px 0;
    filter: drop-shadow(0 0 4px #ff0);
}

.deriv-auth-btn:hover {
    transform: scale(1.05);
}

.deriv-auth-btn,
.tg-auth-btn {
    border: 1px solid currentColor;
    filter: drop-shadow(0 0 4px currentColor);
    transition: transform 0.3s;
}

.deriv-auth-btn:hover,
.tg-auth-btn:hover {
    transform: scale(1.05);
}


.tg-auth-btn {
    background-color: #0088cc;
    color: #0ff;
    padding: 4px 8px;
    font-size: 10px;
    margin: 5px 0;
}

/* Удалена анимация neonGlowOptimized для снижения нагрузки */

#close-auth-modal {
    margin-top: 15px;
    padding: 8px 16px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.token-auth-btn {
    background-color: #444;
    color: #0ff;
    border: 1px solid #0ff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    filter: drop-shadow(0 0 4px #0ff);
}

.account-select {
    font-size: 10px;
    margin-left: 4px;
    background: #111;
    color: #0ff;
    border: 1px solid #0ff;
    border-radius: 4px;
    padding: 2px 4px;
    max-width: 120px;
    display: none;
}

#token-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

#token-modal.show {
    display: flex;
}

.token-dialog {
    background: linear-gradient(135deg, #111, #222);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #0ff;
    filter: drop-shadow(0 0 6px #0ff);
}

.token-input {
    width: 80%;
    padding: 6px;
    margin: 10px auto;
    background: #000;
    color: #0ff;
    border: 1px solid #0ff;
    border-radius: 4px;
}

#manual-token-inline {
    display: none;
    width: 70px;
    padding: 4px;
    margin-left: 4px;
}

.show-pass-label, .show-pass-label-inline {
    margin-left: 4px;
    font-size: 10px;
    color: #0ff;
    display: inline-flex;
    align-items: center;
}


.show-pass-label::after,
.show-pass-label-inline::after {
    content: '\1F441';
    font-size: 12px;
    margin-left: 2px;
}


#auth-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

#auth-controls > * {
    transition: all 0.3s ease;
}

#auth-controls.collapsed select,
#auth-controls.collapsed button:not(#tokenbtn) {
    width: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.top-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.top-controls .menu {
    align-self: flex-start;
}

.top-controls #auth-controls {
    justify-content: center;
}

@media (max-width: 450px) {
    .top-controls {
        align-items: flex-start;
    }

    .top-controls #auth-controls {
        width: 100%;
        justify-content: center;
    }
}

.stake-popup {
    position: absolute;
    display: none;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #00ff1d;
    border-radius: 6px;
    padding: 4px;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    z-index: 2000;
}

.stake-popup button {
    width: 32px;
    height: 32px;
    background: #333;
    color: #adff2f;
    border: 1px solid #00ff1d;
    border-radius: 4px;
    box-shadow: inset 0 0 4px #00ff1d, 0 2px 4px #000;
    cursor: pointer;
}

.stake-popup button:hover {
    background: #444;
}

/* Layout for profit and balance blocks */
.profit-balance-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

.profit-balance-container .info-block {
    flex: 1;
    text-align: center;
    padding: 2px;
}

.neo-select {
    appearance: none;
    padding: 4px 8px;
    border-radius: 6px;
    background: #111;
    border: 1px solid #00ff1d;
    box-shadow: inset 2px 2px 4px #000, inset -2px -2px 4px #222, 0 0 8px rgba(0, 255, 157, 0.4);
    color: rgba(119, 239, 0, 1);
    outline: none;
    font-size: 14px;
}

.menu-neumorphic {
    margin-bottom: 4px;
    display: flex;
    color: rgb(229, 255, 0);
    text-shadow: 0 0 5px rgba(0, 17, 19, .993), 0 0 10px #ff0000d5, 0 0 15px;
}

.instrument-warning {
    display: none;
    margin-top: 4px;
    background: rgba(0, 0, 0, 0.85);
    color: #ff0;
    padding: 4px 8px;
    border: 1px solid #ff0;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
}

.neumorphic-select {
    appearance: none;
    padding: 4px 8px;
    border-radius: 6px;
    background: #111;
    border: 1px solid #00ff1d;
    box-shadow: inset 2px 2px 4px #000, inset -2px -2px 4px #222, 0 0 8px rgba(0, 255, 157, 0.4);
    color: rgba(119, 239, 0, 1);
    outline: none;
    font-size: 12px;
    max-width: 150px;
}

.neumorphic-select:focus {
    box-shadow: inset 2px 2px 4px #000, inset -2px -2px 4px #444, 0 0 8px #00ff1d;
}

.neo-select:focus {
    box-shadow: inset 2px 2px 4px #000, inset -2px -2px 4px #444, 0 0 8px #00ff1d;

}

.disabled-panel {
    pointer-events: none;
    opacity: 0.5;
}

#Rise.parent {
    display: grid;
}

#Rise .div10 {
    width: 100%;
}


.stake-label {
    display: inline-block;
    padding: 2px 6px;
    border: 1px solid #00ff1d;
    border-radius: 4px;
    background: linear-gradient(#333, #222);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: yellow;
}

.stake-label:hover {
    background: linear-gradient(#444, #333);
}

.stake-popup {
    position: absolute;
    display: none;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #00ff1d;
    border-radius: 6px;
    padding: 4px;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    z-index: 2000;
}

.stake-popup button {
    width: 32px;
    height: 32px;
    background: #333;
    color: #adff2f;
    border: 1px solid #00ff1d;
    border-radius: 4px;
    box-shadow: inset 0 0 4px #00ff1d, 0 2px 4px #000;
    cursor: pointer;
}

.stake-popup button:hover {
    background: #444;
}



#gpt-chat-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 3000;
}

#gpt-chat-btn img {
    width: 100%;
    height: 100%;
    animation: gptFloat 3s ease-in-out infinite;
}

@keyframes gptFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Animation for balance updates */
@keyframes balanceChange {

    0% { transform: translateY(5%) scale(1); opacity: 0.7; }
    50% { transform: translateY(0) scale(1.08); opacity: 1; }
    100% { transform: translateY(0) scale(1); }
}

.balance-change {
    display: inline-block;
    animation: balanceChange 0.6s ease-out forwards;

}

/* Ensure the stats dialog expands to its content and only scrolls when
   it reaches the viewport height */
#stats-content {
    height: auto;
    overflow-x: auto;
    overflow-y: visible;
}

.stats-dialog {
    max-height: 100vh;
    overflow-y: auto;
}


@keyframes particleAssemble {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.5);
  }
  60% {
    opacity: 0.7;
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.animate__particleAssemble {
  animation: particleAssemble 2s forwards;
}
