:root {
    --main-bg-color: #F7f7f7;
    --dark-bg: #354267;
    --medium-bg: #6182C9;
    --medium-bg-fg: #506BA6;
    --medium-bg-fos: #F9f9f9;
    --medium-grey: #5E5E5E;
    --medium-under-bg: #506BA6;
    --medium-under-grey: #525252;
    --medium-high-grey: #636363;
    --alt-medium-bg: #F7882F;
    --sec-bg: #6550A6;
    --error-medium-bg: #e36e6e;
    --medium-fg: #FFFBEB;
    --medium-fg-fos: #444;
    --alt-bg: #DCDCDC;
    --font-on-light: #fff;
    --font-on-norm: #444;
    --container-bg: rgba(255, 255, 255, 0.4);
    --button-highlight: #6688D4;
    --bottom-top: rgba(0, 0, 0, 0.2)
}

.logo,
#bitcoin-amount,
button,
.image,
.example,
.assets {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@font-face {
    font-family: icomoon;
    src: url(fonts/icomoon7693.eot?h6gv9e);
    src: url(fonts/icomoon7693.eot?h6gv9e#iefix) format('embedded-opentype'), url(fonts/icomoon7693.ttf?h6gv9e) format('truetype'), url(fonts/icomoon7693.woff?h6gv9e) format('woff'), url(fonts/icomoon7693.svg?h6gv9e#icomoon) format('svg');
    font-weight: 400;
    font-style: normal
}

body,
html {
    padding: 0;
    margin: 0;
    font-family: "Abel", sans-serif;
    background: #5876b7;
}

* {
    box-sizing: border-box
}

*:hover,
*:focus,
*:active {
    outline: 0!important
}

.main-title h2 {
    background: var(--bottom-top);
    color: #efefef
}

#main button {
    background: #f5f5f5;
    color: var(--medium-under-bg);
    font-size: 16px;
    text-shadow: none;
    box-shadow: 0 4px 0 #aaa;
    text-transform: uppercase;
}

#main button:hover {
    background: #fcfcfc
}

#main button:active {
    background: #fcfcfc;
    box-shadow: 0 3px 0 #aaa
}

#add-in {
    height: 50px;
    text-align: center;
    font-size: 18px;
    color: #555;
    font-weight: 700;
    font-family: "Abel", sans-serif;
    background-color: var(--main-bg-color)!important
}

button {
    border: 0;
    cursor: pointer;
    line-height: 50px;
    background: #85a7e8;
    font-size: 20px;
    font-weight: 700;
    font-family: "Abel", sans-serif;
    color: #eee;
    border-radius: 3px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 4px 0 var(--medium-under-bg)
}

button:hover {
    background: var(--button-highlight)
}

button:active {
    position: relative;
    box-shadow: 0 3px 0 var(--medium-under-bg);
    top: 1px;
    background: var(--button-highlight)
}

button.cancel {
    background: var(--medium-grey);
    box-shadow: 0 4px 0 var(--medium-under-grey)
}

button.cancel:hover {
    background: var(--medium-high-grey)
}

button.cancel:active {
    box-shadow: 0 3px 0 var(--medium-under-grey)
}

.version {
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -20px
}

input[type=text] {
    border: 0;
    border-radius: 3px;
    transition: box-shadow .15s ease;
    box-shadow: 0 4px 0 rgba(0, 0, 0, .1)
}

#main input[type=text] {
    box-shadow: 0 4px 0 rgba(0, 0, 0, .2)
}

input[type=text].invalid {
    box-shadow: 0 4px 0 #e36e6e!important
}

input[type=text].valid {}

#add-in+lable {
    transform: scaleX(0);
    position: relative;
    top: -5px;
    margin: 0 auto;
    border-radius: 3px;
    line-height: 20px;
    font-size: 14px;
    width: 160px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    text-align: center;
    background: #e36e6e;
    transition: transform .1s ease
}

#add-in.invalid+lable {
    transform: scaleX(1)
}

.range-slider-track>.dragger {
    box-shadow: 0 2px 1px 1px rgba(0, 0, 0, .1)
}

.range-slider-track:before {
    box-shadow: 0 4px 0 rgba(0, 0, 0, .08)
}

.range-slider-track>.range-size-shower {
    box-shadow: 0 4px 0 var(--medium-under-bg)
}

#address-wrapper>.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    padding: 5px;
    padding-top: 20px
}

#address-wrapper p {
    font-size: 16px;
    padding: 0 20px;
    line-height: 1.9em;
    text-align: center
}

#address-wrapper>.left {
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 100%;
    padding: 20px;
    padding-top: 20px;
    box-sizing: border-box;
    justify-content: center
}

#address-wrapper {
    height: 40%;
    margin-bottom: 0;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    transform: translateY(0%);
    transition: transform .4s ease;
    transition-delay: .05s
}

.clean {
    overflow: hidden
}

.done #address-wrapper {
    transform: translateY(-150%)
}

.done .main-title {
    transform: translateY(-150%)
}

.bottom-pre {
    transform: translateY(0%);
    transition: transform .2s ease
}

.done .bottom-pre {
    transform: translateY(150%);
    margin-top: -115px;
}

.done #comp-stats {
    transform: translateY(150%)
}

.main-title {
    margin: 0;
    display: flex;
    height: 40px;
    position: relative;
    z-index: 10;
    overflow: visible;
    transform: translateY(0%);
    transition: transform .4s ease
}

.main-title>h2 {
    position: relative;
    line-height: 39px;
    font-size: 28px;
    width: 100%;
    z-index: 20;
    margin: 0;
    background: #3961b8;
    text-transform: uppercase;
  
}

nav .wrapx {
    max-width: 900px;
    margin: 0 auto
}

nav {
    background: var(--medium-bg-fos);
    color: var(--medium-fg-fos);
    display: block;
    text-align: center;
    line-height: 60px;
    height: 60px
}

nav:after {
    content: "";
    clear: both
}

.logo {
    font-weight: 700;
    font-family: "Abel", sans-serif;
    font-size: 26px;
    color: #fff;
    background: var( --medium-bg);
    float: left;
    line-height: 38px;
    height: 40px;
    position: relative;
    top: 10px;
    margin-left: 5px;
    padding-right: 28px;
    border-radius: 30px 0 0 30px;
    background: #85a7e8;
}

.logo:before {
    content: "";
    display: block;
    float: left;
    width: 50px;
    border-radius: 30px;
    position: relative;
    top: -6px;
    right: 9px;
    height: 49px;
    box-shadow: 0 2px 0 1px rgba(0, 0, 0, .1);
    background: #fff url(logo2.svg);
    background-size: 36px 36px;
    background-position: center center;
    background-repeat: no-repeat
}

.logo:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 0 solid transparent;
    border-right: 20px solid #fff;
    position: absolute;
    right: 0;
    top: 0
}

.social {
    float: right
}

.ll {
    color: #FFF;
}

#main {
    color: var(--font-on-light);
    height: 600px;
    max-width: 900px;
    margin: 0 auto;
    display: flex
}

#pre-comp {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
    margin-top: 10px;
}

#pre-comp.done {}

#pre-comp>div {
    display: flex;
    flex-direction: row;
    flex: 1 auto;
    background: linear-gradient(-90deg, #85a7e8, #85a7e8);
    
}

.main-sub {
    display: flex;
    flex: 1 auto;
    color: var(--medium-bg-fosx);
    width: 60%
}

.left .example {
    text-align: center
}

.right ul {
    margin: 0;
    padding: 0 5px
}

.right li {
    list-style: none;
    margin-top: 8px
}

.simp-sub {
    display: flex;
    margin-left: 0;
    padding: 20px;
    padding-top: 4px;
    position: relative;
    flex-direction: column;
    flex: 1 auto;
    width: 100%;
    justify-content: center;
    margin-top: -5px;
}

h2 {
    font-size: 32px;
    color: #555;
    line-height: 55px;
    text-shadow: 0 2px 1px rgba(0, 0, 0, .1);
    background: var(--main-bg-color);
    text-align: center;
    margin-top: 5px;
    font-family: "Abel", sans-serif;
}

h3 {
    text-align: center;
    margin: 8px 0;
    margin-top: 5px;
    font-size: 20px
}

h4 {
    text-align: center;
    margin: 8px 0;
    font-size: 16px
}

#sub {
    width: 100%;
    display: block;
    background: var(--medium-bg-fos);
    color: var(--medium-fg-fos);
    margin-top: 10px;
}

#bitcoin-amount {
    display: block;
    width: 96%;
    margin: 10px auto;
    padding: 0 10px
}

#BTC-COUNT {
    font-size: 36px;
    font-family: roboto slab;
    font-weight: 700;
    color: var(--font-on-light);
    text-align: center;
    margin-bottom: 5px
}

#range-wrap>h3,
#range-wrap>#bitcoin-amount {}

#range-wrap {
    padding: 18px;
    display: flex;
    width: 100%;
    flex-direction: column;
    box-sizing: border-box
}

.range-slider {
    margin: 0 5px 10px
}

.range-slider-track {
    width: auto;
    height: 36px;
    margin: 0 auto;
    position: relative;
    cursor: pointer
}

.range-slider-track:before {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #eee;
    border-radius: 20px
}

.range-size-shower {
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 20%;
    height: 20px;
    background-color: var(--medium-bg);
    border-radius: 20px
}

.range-slider-track .dragger {
    display: block;
    width: 36px;
    border-radius: 40px;
    height: inherit;
    position: relative;
    z-index: 2;
    overflow: visible;
    background-color: rgba(250, 250, 250, .9);
    cursor: inherit
}

.range-slider-track .dragger::before {
    content: ' ';
    display: block;
    width: 24px;
    position: absolute;
    left: 6px;
    top: 6px;
    border-radius: 26px;
    height: 24px;
    position: relative;
    z-index: 2;
    background-color: #bbb;
    box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, .15);
    cursor: inherit
}

.range-slider-vertical {
    display: inline-block;
    vertical-align: middle;
    margin: 5px 10px 5px 0
}

.range-slider-vertical .range-slider-track {
    cursor: n-resize;
    width: 20px;
    height: 100px
}

.range-slider-vertical .range-slider-track:before {
    top: 0;
    right: auto;
    left: 9px;
    width: 2px;
    height: 100%
}

.range-slider-vertical .range-slider-track .dragger {
    width: inherit;
    height: 10px
}

.button-wrap {
    padding-top: 5px;
    display: flex;
    margin: 0;
    justify-content: center
}

.button-wrap>button {
    width: 40%;
    margin: 0 10px
}

#darker-screen {
    top: 0;
    left: 0;
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    transition: opacity .2s ease;
    display: none
}

#confirm-window>li {
    direction: block
}

#confirm-window.show {
    display: block;
    transform: translateY(-100vw)
}

#confirm-window.show.animate {
    transform: translateY(0vw)
}

#darker-screen.show {
    display: block;
    opacity: 0
}

#darker-screen.show.animate {
    opacity: 1
}

#confirm-window.show {
    display: block
}

.close-window {
    display: block;
    width: 32px;
    height: 32px;
    background: #777 url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0cHgiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0cHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxwYXRoIGQ9Ik0yMi4yNDUsNC4wMTVjMC4zMTMsMC4zMTMsMC4zMTMsMC44MjYsMCwxLjEzOWwtNi4yNzYsNi4yN2MtMC4zMTMsMC4zMTItMC4zMTMsMC44MjYsMCwxLjE0bDYuMjczLDYuMjcyICBjMC4zMTMsMC4zMTMsMC4zMTMsMC44MjYsMCwxLjE0bC0yLjI4NSwyLjI3N2MtMC4zMTQsMC4zMTItMC44MjgsMC4zMTItMS4xNDIsMGwtNi4yNzEtNi4yNzFjLTAuMzEzLTAuMzEzLTAuODI4LTAuMzEzLTEuMTQxLDAgIGwtNi4yNzYsNi4yNjdjLTAuMzEzLDAuMzEzLTAuODI4LDAuMzEzLTEuMTQxLDBsLTIuMjgyLTIuMjhjLTAuMzEzLTAuMzEzLTAuMzEzLTAuODI2LDAtMS4xNGw2LjI3OC02LjI2OSAgYzAuMzEzLTAuMzEyLDAuMzEzLTAuODI2LDAtMS4xNEwxLjcwOSw1LjE0N2MtMC4zMTQtMC4zMTMtMC4zMTQtMC44MjcsMC0xLjE0bDIuMjg0LTIuMjc4QzQuMzA4LDEuNDE3LDQuODIxLDEuNDE3LDUuMTM1LDEuNzMgIEwxMS40MDUsOGMwLjMxNCwwLjMxNCwwLjgyOCwwLjMxNCwxLjE0MSwwLjAwMWw2LjI3Ni02LjI2N2MwLjMxMi0wLjMxMiwwLjgyNi0wLjMxMiwxLjE0MSwwTDIyLjI0NSw0LjAxNXoiLz48L3N2Zz4=);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    filter: invert(100%);
    cursor: pointer;
    border-radius: 20px;
    top: -10px;
    right: -10px
}

#main2 {
    position: absolute;
    width: 100%;
    height: 400px;
    display: flex;
    overflow: hidden
}

#comp {
    display: flex;
    visibility: hidden;
    flex-direction: row;
    width: 900px;
    height: 100%;
    margin: 0 auto
}

#comp.start {
    visibility: visible;
    position: relative;
    z-index: 10
}

#status-wrap {
    flex: 1 auto;
    width: 40%;
    transition: transform .4s ease;
    transform: translateX(-200%);
    padding: 20px;
    padding-right: 0;
    color: var(--font-on-light)
}

#term-wrap {
    transform: translateX(200%);
    transition: transform .4s ease;
    transition-delay: .1s;
    flex: 1 auto;
    width: 60%;
    padding: 20px
}

.start #term-wrap,
.start #status-wrap {
    transform: translateX(0%)
}

#status-wrap h2 {
    border-radius: 3px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, .08);
    margin-bottom: 20px;
    text-shadow: none;
    margin-top: 0
}

#term-emu {
    height: 100%;
    background: #333;
    color: #bbb;
    font-family: source code pro;
    overflow-y: scroll;
    padding: 10px;
    font-size: 14px;
    border-radius: 3px;
    border: 6px solid var(--main-bg-color);
    box-shadow: 0 4px 0 rgba(0, 0, 0, .08)
}

.status-list {
    margin: 0;
    padding: 0
}

.main2 .status-list {
    color: var(--font-on-light)!important
}

.status-list>li {
    list-style: none;
    line-height: 1.7em;
    margin-bottom: 2px;
    text-shadow: none;
    font-weight: 700
}

.status-list>li>span {
    float: right;
    font-weight: 400
}

.current-wrapper {
    border-radius: 3px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, .08);
    margin-top: 20px;
    padding: 10px;
    background: var(--main-bg-color)
}

.current-wrapper span {
    display: block;
    text-align: center;
    color: rgba(0, 0, 0, .6)
}

#current-op {
    text-align: center;
    font-size: 19px;
    color: var(--font-on-norm);
    font-family: "Abel", sans-serif;
    font-weight: 700;
}

#term-emu {
    padding-left: 35px;
    text-indent: -20px;
    overflow-wrap: break-word;
    word-break: break-all
}

#term-emu b {
    color: #b5bd68
}

#term-emu span {
    color: #c66
}

#term-emu div {
    min-height: 20px;
    overflow-wrap: break-word;
    word-break: break-word
}

#term-emu i {
    color: #81a2be
}

.sub-main {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    padding-bottom: 20px;
    flex-direction: row
}

.Y2hhdC13cmFw {
    color: #333;
    flex: 1;
    display: block;
    margin-left: 20px;
    border-radius: 0 0 4px 4px;
    overflow: hidden
}

#msg-wrap {
    height: 360px;
    background: #608bdc;
    padding: 7px 0;
    overflow: hidden
}

.Y2hhdC13cmFw .message {
    padding: 8px;
    font-size: 14px;
    display: flex;
    height: 79px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, .2);
    margin: 6px 14px;
    transform: translateY(0%);
    transition: margin .2s ease, transform .25s ease
}

.Y2hhdC13cmFw .message.dead {
    margin-bottom: -85px;
    transform: translateY(-100px)
}

.Y2hhdC13cmFw .image {
    display: flex;
    width: 50px;
    height: 62px;
    padding-right: 8px;
    border-right: 1px solid rgba(0, 0, 0, .2)
}

.profileico {
    margin-top: 3px;
    display: block;
    width: 45px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 0 var(--medium-under-bg);
    font-family: roboto slab;
    font-weight: 700;
    font-size: 22px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .1);
    color: rgba(255, 255, 255, .9);
    background: #85a7e8;
}

.Y2hhdC13cmFw .message-ram {
    display: block;
    width: 100%;
    margin-bottom: 1px
}

.Y2hhdC13cmFw .username {
    display: inline!important;
    font-weight: 700
}

.Y2hhdC13cmFw .time {
    display: inline-block!important;
    color: rgba(0, 0, 0, .7);
    font-size: .9em;
    position: absolute;
    right: 8px;
    bottom: 8px
}

.Y2hhdC13cmFw .aux {
    padding-left: 8px;
    display: flex;
    flex: 1 auto;
    flex-direction: column;
    height: 100%
}

.Y2hhdC13cmFw span b {
    font-weight: 400;
    font-style: .8em
}

.text-wrap {
    flex: 1;
    display: flex;
    color: var(--medium-fg-fos);
    flex-direction: column
}

.sub-main h2 {
    background: #85a7e8;
    margin: 0;
    margin-bottom: 25px;
    text-shadow: none;
    font-size: 24px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
}

.text-wrap h4 {
    display: block;
    margin: 0;
    font-size: 15px;
    text-align: left;
    margin-bottom: 5px;
    color: #666;
    font-family: "Abel", sans-serif;
    text-transform: uppercase;
}

.text-wrap p {
    color: #666;
    text-indent: 0;
    font-size: 16px;
    margin: 0;
    margin-bottom: 20px;
    text-align: justify;
}

#error-message {
    background: var(--error-medium-bg);
    position: absolute;
    z-index: 5;
    display: block!important;
    color: #fff;
    width: 100%;
    bottom: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: roboto slab;
    text-align: center;
    height: 40px;
    line-height: 40px;
    transform: translateY(150%);
    transition: transform .2s ease-out, visibility .1s linear .3s;
    visibility: hidden;
    left: 0
}

#error-message.show {
    visibility: visible;
    transition: transform .2s ease-in;
    transform: translateY(0%)
}

.chat-form {
    background: #ddd;
    padding: 10px;
    padding-bottom: 15px
}

.chat-form input[type=text] {
    height: 40px;
    width: 100%;
    font-size: 14px;
    color: #555;
    padding: 0 14px;
    font-family: roboto;
    font-weight: 700;
    background-color: var(--main-bg-color)!important
}

textarea {
    resize: none;
    height: 78px;
    width: 100%;
    border: 0;
    border-radius: 3px;
    transition: box-shadow .15s ease;
    box-shadow: 0 4px 0 rgba(0, 0, 0, .1);
    margin: 10px 0;
    margin-bottom: 7px;
    font-size: 14px;
    color: #555;
    padding: 10px;
    font-family: roboto;
    font-weight: 700;
    background-color: var(--main-bg-color)!important
}

textarea.invalid {
    box-shadow: 0 4px 0 #e36e6e
}

#sub-msg {
    width: 50%;
    height: 45px;
    line-height: 35px;
    font-size: 16px;
    background: #85a7e8;
}

#msg-name+lable {
    transform: scaleX(0);
    position: relative;
    top: 3px;
    border-radius: 3px;
    line-height: 20px;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    text-align: center;
    background: #e36e6e;
    float: right;
    display: block;
    padding: 0 15px;
    margin-top: -20px;
    transition: transform .1s ease
}

#msg-name.invalid+lable {
    transform: scaleX(1)
}

#msg+lable {
    transform: scaleX(0);
    position: relative;
    top: -7px;
    border-radius: 3px;
    line-height: 20px;
    padding: 0 15px;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    text-align: center;
    background: #e36e6e;
    float: right;
    display: block;
    margin-top: -20px;
    transition: transform .1s ease
}

#msg.invalid+lable {
    transform: scaleX(1)
}

.simp-wrap {
    display: flex;
    flex-direction: column
}

.aux>div {
    word-break: break-word;
    overflow: hidden;
    height: 100%;
    position: relative
}

.aux>div:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1));
    display: block;
    height: 1em
}

.ico-wrap {
    font-family: icomoon;
    font-size: 50px;
    display: block;
    height: inherit;
    float: left
}

.ico-wrap>span {
    font-size: 25px;
  position: absolute;
  background: #85a7e8;
  height: 40px;
  width: 45px;
  box-shadow: 0 2px 0 var(--medium-under-bg);
  border-radius: 6px;
  text-align: center;
  color: rgba(255, 255, 255, .9);
  line-height: 40px;
}

.about-block {
    position: relative;
    display: block;
    margin: 0 20px;
    margin-bottom: 8px;
    flex-direction: row
}

.about-text {
    padding-left: 50px
}

.Y2hhdC13cmFw h2 {
    margin-bottom: 0!important;
    background: #85a7e8;
    color: #fff!important
}

.social {
    font-family: icomoon;
    color: #000;
    font-size: 35px
}

.social li {
    list-style: none;
    margin-left: 0;
    display: block;
    float: right;
    margin-left: 8px
}

a:link,
a:visited {
    color: #000;
    cursor: pointer;
    text-decoration: none
}

a:hover,
a:active {
    color: #000;
    cursor: pointer;
    text-decoration: none
}

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

.wrapx {
    max-width: 900px;
    margin: 0 auto
}

.copyright {
    width: 100%;
    color: var(--font-on-light);
    line-height: 50px;
    height: 50px;
    display: block;
    text-align: center
}

footer {
    background: #85a7e8;
}

.uwrap {
    font-weight: 700;
    line-height: 30px;
    
}

#user-online {
    font-weight: 400
}

#comp-stats {
    color: #ddd;
    display: flex;
    background: var(--bottom-top);
    height: 50px;
    font-size: 14px;
    line-height: 28px;
    transition: transform .2s ease;
    transform: translateY(0%);
    padding: 0 12px;
    position: relative;
    margin-top: 10px;
    border: 1px solid #fff;
  border-radius: 5px;

}

#confirm-window>h2 {
    font-size: 28px!important;
    color: #fff;
    margin-top: 0;
    border-radius: 4px 4px 0 0;
    background: #85a7e8;
}

#confirm-window {
    display: none;
    position: fixed;
    z-index: 101;
    top: 50%;
    right: 50%;
    width: 500px;
    height: 275px;
    padding: 0;
    margin-right: -250px;
    margin-top: -150px;
    border-radius: 4px;
    box-shadow: 0 4px 1px rgba(0, 0, 0, .1);
    color: #222;
    background: var(--main-bg-color);
    transition: transform .2s ease
}

#wall-stat {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 170px
}

#confirm-window>h2 {
    margin-bottom: 18px
}

#confirm-window>p {
    padding: 0 30px
}

#confirm-window>ul {
    font-size: 16px;
    padding: 0 30px
}

#finale-window {
    z-index: 201;
    display: none;
    position: relative;
    max-width: 800px;
    color: #222;
    border-radius: 4px;
    transition: transform .2s ease;
    box-shadow: 0 4px 1px rgba(0, 0, 0, .1);
    background: var(--main-bg-color)
}

#finale-window img {
    margin: 0 auto;
    display: block;
    margin-bottom: 15px
}

#finale-window.show {
    display: block;
    transform: translateY(-100vw)
}

#finale-window.show.animate {
    transform: translateY(0vw)
}

#finale-window>h2 {
    font-size: 28px!important;
    color: #fff;
    margin-top: 0;
    border-radius: 4px 4px 0 0;
    background: #85a7e8;
}

#finale-window>p {
    padding: 0 30px
}

#finale-window>ul {
    font-size: 16px;
    padding: 0 30px
}

#finale-window>li {
    direction: block
}

.slide-downs {
    z-index: 201;
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    display: none;
    align-self: center;
    align-items: center;
    justify-content: center
}

.slide-downs.show {
    display: flex
}