/* MAIN */

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(iconfont/MaterialIcons-Regular.eot); /* For IE6-8 */
    src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(iconfont/MaterialIcons-Regular.woff2) format('woff2'),
    url(iconfont/MaterialIcons-Regular.woff) format('woff'),
    url(iconfont/MaterialIcons-Regular.ttf) format('truetype');
}

html {
    font-family: 'Varela Round', sans-serif, Verdana;
}

a {
    text-decoration: none;
    color: #68bff9;
}

* {
    padding: 0;
    margin: 0;
}

ul, li {
    list-style-type: none;
}

.field-info {
    font-size: .8em;
    color: #848484;
    margin-top: -4px;
    margin-bottom: 3px;
}

ol, ul, dl {
    margin-bottom: 0;
}

html, body, canvas, #app {
    width: 100%;
    height: 100%;
    margin: 0;

    overflow: hidden;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #212529;
    text-align: left;
}

button, .btn {
    background-color: #f1f1f1;
    border: 0;
    border-radius: 3px;
    /* box-shadow: 0 2px 0 #c3c3c3; */
    /* margin-bottom: 2px; */
    cursor: pointer;
    padding:5px;
}

.btn {
    background-color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    /* box-shadow: 0 2px 0 #ddd; */
}

.btn:hover {
    color: #fff;
}

.btn-white {
    background-color: #ffffff;
    box-shadow: 0 2px 0 #f2f2f2;
    color: #6b6b6b;
}

.btn-white:hover {
    color: #000000;
}

.btn-transparent {
    color: #6b6b6b;
    background-color: transparent;
}

.btn-transparent:hover {
    color: #000000;
}

.btn-small {

    padding: 5px 6px;

    font-size: .9em;
}

button.icon-button {
    padding:0;
}

a.mobile-icon-button {
    background-color: #ca5b5b;
    padding: 3px 6px;
    border-radius: 5px;
    box-shadow: 0 2px 0 #844747;
    color: #610d0d !important;
}

.btn-green {
    background-color: #16d400;
    box-shadow: 0 2px 0 #12b300;
    color: #fff;
}

.btn-red {
    background-color: #ff0000;
    box-shadow: 0 2px 0 #d00000;
    color: #fff;
}

.btn-blue {
    background-color: #00a9ea;
    color: #fff;
    box-shadow: 0 2px 0 #007bab;
}

.btn-orange {
    background-color: #ffb161;
    color: #ffffff;
}

.btn-primary {
    color: #fff;
    background-color: #15b3ff;
    border-color: #15b3ff;
}

.button-group {
    font-size: 0;
}
.button-group .btn:first-child {
    border-radius: 5px 0 0 5px;
    border-right: 1px solid #0699d2;
}
.button-group .btn:last-child {
    border-radius: 0 5px 5px 0;
}

button:disabled {
    cursor: default !important;
    background-color: #f1f1f1 !important;
    color: #ddd !important;
    box-shadow: 0 2px 0 #ddd !important;
}

/* COLS */



.colx-1, .colx-2, .colx-3, .colx-4, .colx-5, .colx-5-5, .colx-6, .colx-7, .colx-8, .colx-9, .colx-10, .colx-11, .colx-12 {
    float: left;
}
.colx-12 {
    width: 100%;
}
.colx-11 {
    width: 91.66666667%;
}
.colx-10 {
    width: 83.33333333%;
}
.colx-9 {
    width: 75%;
}
.colx-8 {
    width: 66.66666667%;
}
.colx-7 {
    width: 58.33333333%;
}
.colx-6 {
    width: 50%;
}
.colx-5-5 {
    width: 45.833333%;
    /* overflow: hidden; */
}
.colx-5 {
    width: 41.66666667%;
}
.colx-4 {
    width: 33.33333333%;
}
.colx-3 {
    width: 25%;
}
.colx-2 {
    width: 16.66666667%;
}
.colx-1 {
    width: 8.33333333%;
}

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

.top-buffer {
    margin-top: 10px;
}

.top-buffer-sm {
    margin-top: 5px;
}

.bottom-buffer {
    margin-bottom: 10px;
}

.left-buffer {
    margin-left: 10px;
}

.right-buffer {
    margin-right: 10px;
}

.horizontal-center {
    position: fixed;
    left: 50%;
    transform: translate(-50%,0);
}

.vertical-center {
    position: fixed;
    top:50%;
    transform: translate(0,-50%);
}

.full-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.material-icon {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
    vertical-align: middle;
}

img {
    max-width: 100%;
    max-height: 100%;
}

input[type=text],input[type=password], textarea {
    padding: 3px;
    border-radius: 4px;
    border: 0;
    color: #000;
}

input[type=text]:read-only, textarea:read-only {
    color: #5d5d5d;
    background-color: transparent !important;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.img-container {
    font-size: 0;
}

.img-container img {
    vertical-align: middle;
}

.nowrap {
    white-space: nowrap;
}

.children-inline > * {
    display: inline-block;
    vertical-align: middle;
}

.children-inline-top > *{
    display: inline-block;
    vertical-align: top;
}

input[type=text].horizontal, textarea.horizontal {
    width: 100%;
}

/* END GLOBAL */

#app {
    background-color: transparent;
    position: fixed;
    pointer-events: none;
}

#item-bar {
    width: 100%;
    /* position: fixed; */
    /* bottom: 5px; */
    text-align: center;
}
#item-bar ul {}

#drop-area {}

#bottom-bar {
    width: 100%;
    position: fixed;
    bottom: 5px;
    text-align: center;
}

#bottom-bar > div {
}

#adContainer.windowed > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.inventory-list>li {
    height: 6vw;
    width: 6vw;
    max-height: 60px;
    max-width: 60px;
    display: inline-block;
    /* box-shadow: inset 1px 1px 10px rgba(0,0,0,.3); */
    background-color: rgba(0,0,0,0.141);
    border-radius: 5px;
    margin-right: 5px;
    pointer-events: all;
    /* overflow: hidden; */
    position: relative;
}

#item-bar ul li {}

.inventory-list>li.equipped {
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.35);
    margin-bottom: 5px;
}

.inventory-list>li .actions {
    position: absolute;
    top: -29px;
    text-align: center;
    left: 0;
    right: 0;
}

.inventory-list>li>.item-inner{
    width:100%;
    height:100%;
}

.inventory-list>li .actions .store-button {
    box-shadow: 0 2px 0 #ff8100;
}

.inventory-list .item-info {
    position: absolute;
    bottom: 100%;
    /* right: 0; */
    /* left: 0; */
    text-align: center;
    white-space: nowrap;
    display: inline-table;
}

.inventory-list .item-info .inner {
    background-color: rgba(0,0,0,0.568);
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 7px;
}

.inventory-list .item-info .inner:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: rgba(0,0,0,0.568);
    border-width: 7px;
    margin-left: -7px;
    margin-top: -7px;
}

.inventory-list .item-info .name {
    display: block;
    color: #fff;
    font-size: .8em;
}

.inventory-list .item-info .item-actions {margin-top: 5px;}

.inventory-list .item-info .item-actions > * {
    padding: 4px;
}

.inventory-list .item-info .repair-list {
    display: block;
    background-color: rgba(255,255,255,0.121);
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
}


.inventory-list .item-info .repair-list:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: rgba(255,255,255,0.121);
    border-width: 7px;
    margin-left: -24px;
    /* margin-top: -7px; */
}

.inventory-list .item-info .repair-list li {
    border-radius: 5px;
    margin: 3px;
    /* padding: 5px; */
    width: 30px;
    height: 30px;
    position: relative;
    display: inline-block;
}

.inventory-list .item-info .repair-list li img {
    display: inline-block;
    vertical-align: middle;
}

.inventory-list .item-info .repair-list li .amount {
    position: absolute;
    bottom: 0;
    right: 0px;
    font-size: .7em;
    color: #fff;
}

#item-bar ul li.equipped {}

.inventory-item {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.inventory-item>div {
    width:100%;
    height:100%;
}

.inventory-item img {max-width: 80%;max-height: 80%;display: inline-block;position: absolute;top: 0;bottom: 0;margin: auto;/* transform: rotate(45deg); */left: 0;right: 0;/* z-index: 1; */}

.inventory-item .count {
    position: absolute;
    bottom: 0px;
    right: 2px;
    font-weight: bold;
}

.inventory-item .hp.meter {
    position: absolute;
    width: 80%;
    left: 10%;
    height: 5px;
    bottom: 7px;
    background-color: #ff0000;
    opacity: .6;
}
.inventory-item .hp .meter-inner {
    background-color: #91ff00;
}

.inventory-item .index {
    position: absolute;
    left: 4px;
    top: 2px;
    font-size: .8em;
    color: rgba(255,255,255,0.741);
}

/* STATS */

.meter {
    background-color: #000;
    width: 100px;
    position: relative;
    height: 15px;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
}

.meter .meter-inner {
    background-color: #ff0000;
    height: 100%;
}

.meter .meter-text {
    position: absolute;
    font-size: 12px;
    vertical-align: middle;
    color: #fff;
    top: 50% !important;
    /* left: 0; */
    transform: translate(-50%,-50%) !important;
    /* right: 0; */
    width: 100%;
}

#stats {
    /* position: fixed; */
    /* bottom: 8vw; */
    width: 100%;
    text-align: center;
    margin-top: 4px;
}

#stats ul {}

#stats ul li {
    display: inline-block;
    text-align: center;
    position: relative;
}

#stats .meter {
    width: 175px;
    height: 20px;
    background-color: rgba(0,0,0,0.321);
    border-radius: 5px;
}

#stats .meter-inner {
    /* border-radius: 5px; */
}

.meter.health .meter-inner {
    background-color: rgb(255, 0, 0);
    background-color: rgba(255, 0, 0, 0.5);
}

.meter.oxygen .meter-inner {
    background-color: rgb(163, 198, 255);
    background-color: rgba(163, 198, 255, 0.5);
}

.meter.temperature .meter-inner {
    background-color: rgb(0, 240, 255);
    background-color: rgba(0, 240, 255, 0.5);
}

.meter.salinity .meter-inner {
    background-color: rgb(242, 242, 242);
    background-color: rgba(242, 242, 242, 0.5);
}

.meter.pressure .meter-inner {
    background-color: rgb(252, 255, 0);
    background-color: rgba(252, 255, 0, 0.5);
}

.low-meter-warning {
    position: absolute;
    color: #fff;
    bottom: 100%;
    background-color: #ff0000;
    background-color: rgba(255,0,0,0.36);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: .9em;
    margin-bottom: 10px;
    width: 100%;
}

.low-meter-warning .arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    border-top: 10px solid #ff0000;
    border-top: 10px solid rgba(255,0,0,0.36);
    bottom: -10px;
}

#stats .meter.xp, #stats .meter.piranha {
    display: inline-block;
    width: 60%;
    height: 23px;
    padding: 2px;
    overflow: visible;
    margin: 3px 0;
    background-color: rgba(255,255,255,0.321);
    position: relative;
    border-radius: 0;
    padding: 0;
    min-width: 335px;
}

#stats .meter.piranha {
    width: 230px;
}

#stats .meter.xp .meter-inner, #stats .meter.piranha .meter-inner {
    background-color: rgba(0, 255, 0, 0.5);
    /* border-radius: 3px; */
}

#stats .meter.xp .level, #stats .meter.piranha .level {
    position: absolute;
    left: -14px;
    background-color: #5d5d5d;
    border-radius: 20px;
    width: 30px;
    height: 30px;
    line-height: 31px;
    font-size: .8em;
    bottom: -3px;
    border: 1px solid rgba(0,0,0,0.45);
    color: #fff;
    display: none;
}

/* DIALOG */

.dialog-mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0,0,0,.33);
    z-index: 1000;
    pointer-events: all;
}

.dialog-content {
    margin: 0 20px;
    padding: 6px 40px;
    border-radius: 4px;
    background-color: #4e6679;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
    color: #ffffff;
}

.dialog-content header {
    margin: 0px 0 16px;
    font-size: 1.1em;
    /* font-weight: 700; */
}

.dialog-content p {
    white-space: pre-line;
}
.dialog-content footer {
    margin-top: 20px;
}
.dialog-content footer button {
    margin-right: 10px;
    padding: 8px 18px;
}
.dialog-content footer button:last-child {
    margin-right: 0;
}
.dialog-actions {
    text-align: center;
    padding-top: 5px;
}

.message-box .dialog-content {
    min-width: 240px;
    text-align: center;
    font-size: 16px
}

/* STORAGE */

.dialog-background {
    position: fixed;
    width: 99.9%;
    height: 99.9%;
    width: 100vw;
    height: 100vh;
    opacity: .2;
    z-index: 99;
    background-color: #000;
    pointer-events: all;
}

.draggable-dialog {
    position: fixed;
    z-index: 100;
    display: table;
}

.draggable-dialog>.dialog-content {
    padding: 0;
    background-color: rgba(47,86,113,0.701);
    border-radius: 5px;
    pointer-events: all;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.431);
    /* border: 1px solid #58320b; */
    color: #cecece;
}

.draggable-dialog>.sub-content {
    margin-top: 15px;
    text-align: center;
}

.draggable-dialog>.sub-content>.title {position: absolute;top: 0;text-align: center;font-size: .7em;color: rgba(206,206,206,0.611);}

.draggable-dialog>.dialog-content>.content {
    padding: 5px;
}
.draggable-dialog>.dialog-content>.content>.inner {}

.draggable-dialog>.dialog-content>.header {
    min-height: 30px;
    position: relative;
}

.draggable-dialog>.dialog-content>.header .title {
    vertical-align: middle;
    display: block;
    text-align: center;
    color: #ffffff;
    padding: 0 40px;
    padding-top: 7px;
}

.draggable-dialog.white>.dialog-content {
    background-color: #ffffff;
    box-shadow: 0px 5px 0 #dfdfdf;
    color: #222222;
}

.draggable-dialog.white>.dialog-content>.header .title {
    color: #000000;
}

.draggable-dialog.white>.dialog-content input[type=text],
.draggable-dialog.white>.dialog-content input[type=password],
.draggable-dialog.white>.dialog-content textarea {
    background-color: #f2f2f2;
}

.draggable-dialog>.dialog-content>.header .close {
    vertical-align: middle;
    /* font-size: 20px; */
    position: absolute;
    right: 3px;
    top: 3px;
    background-color: #d83030;
    padding: 0px 2px;
    border-radius: 5px;
    /* box-shadow: 0 2px 0 #6d3535; */
    color: #610d0d;
}

.draggable-dialog>.dialog-content>.header .close i {
    font-size: 20px;
    line-height: 25px;
    vertical-align: top;
    margin-top: 0px;
    color: #fff;
}

.draggable-dialog .actions {text-align: center;padding: 6px 3px 2px;}

.draggable-dialog .actions button {font-size: .9em;padding: 4px 11px;/*color: #ffffff;*/}

/* FPS DISPLAY */

#fps-display {
    position: fixed;
    top: 0;
    left: 5px;
    color: #27ff00;
}

/* CHAT */

#chat-container {
    /* position: fixed; */
    text-align: center;
    /* bottom: 100px; */
    margin-bottom: 20px;
}

#chat-container .message-container {}

#chat-container .message-container input {
    border: 0;
    border-radius: 5px;
    padding: 5px;
    background-color: rgba(0,0,0,0.211);
    color: #fff;
    pointer-events: all;
}

#chat-container .chat-actions {
    text-align: center;
    margin-top: 5px;
}

#chat-container .chat-actions button {
    background-color: rgba(0,0,0,0.211);
    box-shadow: none;
    pointer-events: all;
    margin-right:5px;
}

#chat-container .chat-actions button:last-child {
    margin-right:0;
}

/* CHANGELOG DIALOG */

.changelog-button {
    width: 266px;
    padding: 6px;
    margin-bottom: 6px;
    margin-top: 3px;
}

.changelog-dialog {}

.changelog-dialog header {
    text-align: center;
}

.dialog-content.white {
    background-color: #ffffff;
    box-shadow: 0 5px 0 #d0d0d0;
    color: #222222;
}
.changelog-dialog .dialog-content p {
    max-height: 60vh;
    overflow-y: scroll;
    font-size: .9em;
    color: #636363;
    white-space: pre-line;
}

/* STORE LINKS */



.store-links.desktop {
    position: absolute;
    bottom: 48px;
    left: 5px;
    z-index: 60;
    pointer-events: all;
}
.store-links.mobile {
    margin-top: 12px;
}
.store-links > div {
    width: 170px;
    border-radius: 5px;
    font-size: 0;
    overflow: hidden;
    box-shadow: 0 0px 4px #0000005c;
}

@media screen and ( max-height: 768px ) {
    .store-links > div {
        width: 140px;
    }
}

@media screen and ( max-height: 500px ) {
    .store-links > div {
        width: 120px;
    }
}
.store-links > div:last-child {}

/* MENU */

.content-box {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 5px 0 #d0d0d0;
    padding: 5px;
    pointer-events: all;
    position: relative;
    text-align: center;
}

.content-box .title {
    color: #929292;
    margin-bottom: 5px;
    display: block;
}

#menu-container {
    -webkit-box-align: center;
    align-items: center;
    /* color: rgba(255, 255, 255, 0.8); */
    display: -webkit-box;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    justify-content: center;
    left: 0;
    line-height: 20px;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 20;
    pointer-events: all;
}

#menu-container>#main-menu {
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

#menu-container>#main-menu>.inner{
    position: relative;
    max-width: 960px;
}

@media (max-height: 768px) and (min-width: 851px), (max-width: 1200px) {
    #menu-container>#main-menu>.inner{
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
    }
}

#menu-container .logo {
    font-size: 80px;
    color: #fff;
    text-shadow: 0 2px 0 #b1b1b1;
    /* font-weight: bold; */
    line-height: 80px;
    text-align: center;
}

#menu-container .game-name {
    position: relative;
}

#menu-container .game-subtitle {
    position: absolute;
    font-size: 14px;
    top: -10px;
    white-space: nowrap;
    text-shadow: none;
    left: 100%;
}

#menu-container .game-version {
    position: absolute;
    font-size: 12px;
    bottom: -18px;
    white-space: nowrap;
    text-shadow: none;
    left: 101%;
    color: #ddd;
}

#menu-container .boxes-container {
    white-space: nowrap;
}

#menu-container .boxes-container > div {
    display: inline-block;
    margin-right: 5px;
    vertical-align: top;
}

#menu-container .boxes-container > div:last-child {
    margin-right: 0;
}

#menu-container #center-menu {
    text-align: center;
    white-space: initial;
}

#menu-container #center-menu .warn-container {
    max-width: 346px;
    padding: 15px;
}
#menu-container #center-menu .warn-container p {
    white-space: pre-line;
}

#menu-container #left-sidebar {
    width: 300px;
    white-space: initial;
}
#menu-container #left-sidebar > *{
    margin-bottom: 12px;
}
#menu-container #left-sidebar > *:last-child{

    margin-bottom: 0;
}

@media (max-width: 639px) {
    #right-sidebar {
        display: none !important;
    }
}

@media (max-width: 1000px) {
    #left-sidebar {
        display: none !important;
    }
}

#menu-container #right-sidebar {
    width: 300px;
    white-space: initial;
}

#menu-container .changelog-container {

}

#menu-container .language-container {
    font-size: .8em;
    color: #808080;
    margin-top: 12px;
}

#menu-container .rate-box {
    margin-top: 12px;
}

#menu-container .language-container #language-selector {
    border-radius: 5px;
    border: 0;
    padding: 2px;
    text-align: center;
    background-color: #efefef;
}

#menu-container .changelog {
    width: 100%;
    min-height: 30px;
    background-color: #f7f7f7;
    border-radius: 5px;
    color: #b5b5b5;
    font-size: .8em;
    white-space: pre-line;
    max-height: 90px;
    overflow-y: scroll;
    padding: 5px;
    box-sizing: border-box;
    text-align: left;
    pointer-events: all;
}

#menu-container .social-links {
    margin: 5px 0;
}
#menu-container .social-links a {
    display: inline-block;
    color: #464646;
}

#menu-container .social-links .reddit {
    color: #fff;
    background-color: #15b3ff;
    box-shadow: 0 2px 0 #0c85bf;
}

#menu-container .social-links .reddits {}
#menu-container .social-links .reddits .title {
    background-color: #10a4eb;
    border-radius: 5px 5px 0 0;
    color: #fff;
    margin-bottom: 0;
}
#menu-container .social-links .reddits .links {
    font-size: 0;
}
#menu-container .social-links .reddits .links a {
    border-radius: 0;
    border-right: 1px solid #10a4eb;
    font-size: 14px;
    line-height: 12px;
    padding: 9px 7px;
}
#menu-container .social-links .reddits .links a:first-child {
    border-radius: 0 0 0 5px;
}
#menu-container .social-links .reddits .links a:last-child {
    border-radius: 0 0 5px 0;
}

#menu-container .social-links .discord {
    color: #fff;
    background-color: #4e4e4e;
    box-shadow: 0 2px 0 #000000;
}

#menu-container .play-container {
    padding: 10px 5px;
    width: 346px;
}

@media screen and ( max-height: 500px ) {

    #menu-container .logo {
        position: fixed;
        top: -3px;
        left: 0;
        right: 0;
        font-size: 60px;
        line-height: 60px;
    }
    #menu-container .boxes-container {
        margin-top: 67px;
    }

    #menu-container .game-name {
    }

    #menu-container .game-name .title {
    }

    #menu-container .game-subtitle {
        font-size: 13px;
        top: 3px;
    }
}

@media screen and ( max-height: 400px ) {

    #menu-container .logo {
        position: fixed;
        top: -3px;
        left: 0;
        right: 0;
        font-size: 34px;
        line-height: 34px;
    }
    #menu-container .boxes-container {
        margin-top: 35px;
    }

    #menu-container .game-name {
    }

    #menu-container .game-name .title {
    }

    #menu-container .game-subtitle {
        font-size: 11px;
        top: 6px;
    }
}

#menu-container .ad-container {
    width: 346px;
    min-height: 0;
    margin-top: 25px;
}

.dialog-ad-container {
    min-width: 250px;
    min-height: 250px;
    max-width: 300px;
    max-height: 250px;
    padding: 28px 10px 5px;
    position: relative;
    text-align: center;
    display: inline-block;
}

.dialog-ad-container .title {
    top: 5px;
    position: absolute;
    font-size: .9em;
    color: #adadad;
}

.bottom-ad {
    left: 0;
    margin-left: auto;
    margin-right: auto;
    pointer-events: auto;
    position: absolute;
    right: 0;
    text-align: center;
    margin-top: 30px;
    background-color: #0000002b;
    border-radius: 5px;
    box-shadow: 0px 5px 0 #00000026;
    /* padding: 5px 0; */
    /* pointer-events: all; */
    /* position: relative; */
    /* text-align: center; */
}

#menu-container input.name {
    padding: 3px;
    border-radius: 5px;
    /* border: 3px solid #f1f1f1; */
    border: 1px solid #ddd;
    /* box-shadow: inset 0px 2px 3px #ddd; */
    background-color: #ddd;
    color: #000;
    font-weight: bold;
    text-align: center;
    font-size: 23px;
}

#menu-container select.servers {
    padding: 4px;
    border-radius: 5px;
    /* border: 3px solid #f1f1f1; */
    border: 1px solid #ddd;
    background-color: #ddd;
    max-width: 260px;
}

#menu-container #center-menu .name-container {}
#menu-container #center-menu .servers-container {
    margin-top: 10px;
}

#menu-container .actions-container {margin-top: 8px;}

#menu-container .actions-container > * {
    position: relative;
    height: 42px;
}

#menu-container .actions-container .play {font-size: 20px;padding: 6px 30px;box-shadow: 0 2px 0 #12b300;}
#menu-container .actions-container .feedback {font-size: 20px;padding: 6px 10px;/* box-shadow: 0 2px 0 #12b300; */}


/* PLAY STATS */

#play-stats {text-align: center;padding: 0 10px 5px 10px;}

#play-stats .die-message {
}

#play-stats .name {color: #fff;}

#play-stats .player-details {
    margin: 3px 0 0px 0;
    padding: 7px 0;
    /* border-top: 1px solid #754d11; */
    /* border-bottom: 1px solid #754d11; */
    /* background-color: #4c6170; */
    /* border-radius: 5px; */
    /* box-shadow: 0 3px 0px #424e57; */
}

#play-stats .user-details {
    display: inline-block;
    background-color: #607a8d;
    padding: 7px;
    border-radius: 5px;
    box-shadow: 0px 2px 0 #4b6070;
}
#play-stats .user-details .user-picture {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
    margin: 5px 10px 5px 4px;
    font-size: 0;
    overflow: hidden;
}
#play-stats .user-details .user-picture img {
    vertical-align: middle;
}
#play-stats .user-details .user-data {
    text-align: left;
}
#play-stats .user-details .user-data .user-name {
    color: #fff;
}
#play-stats .user-details .user-data .user-message {
    max-width: 360px;
    font-style: italic;
    min-width: 366px;
    color: #dfdfdf;
    font-size: .9em;
    max-height: 200px;
    overflow-y: hidden;
    text-overflow: ellipsis;
}

@media screen and ( max-height: 400px ) {
    #play-stats .user-details .user-data .user-message {
        max-height: 50px;
        overflow-y: scroll;
    }
}

@media screen and ( max-height: 600px ) {
    #play-stats .user-details .user-data .user-message {
        max-height: 100px;
        overflow-y: scroll;
    }
}

#play-stats .player-details > * {
    display: inline;
    vertical-align: middle;
}

#play-stats .player-details img {
    height: 23px;
}

#play-stats .tribe {
}

#play-stats .details {margin: 0 0 3px;padding: 4px 10px 0px;/* border-bottom: 1px solid #754d11; */border-radius: 5px;}

#play-stats .details>div {display: inline-block;/* margin: 5px; */padding: 4px 4px;/* background-color: #734f17; *//* border-radius: 5px; *//* box-shadow: 0 2px 0 #50350b; */}

#play-stats .title {display: block;font-size: 0.8em;color: #ddd;}

#play-stats .value {display: block;font-size: 1.4em;color: #fff;}

#play-stats .actions {

}
#play-stats .actions .next-round-note {display: block;margin-bottom: 12px;margin-top: -5px;font-size: .8em;color: #ffffff;}

#play-stats .actions .next-round-note .level {
    color: #fff;
    /* font-weight: bold; */
}

#play-stats .actions button {font-size: 1em;padding: 6px 15px;}

.social-link {
    margin-right: 5px;
}

.social-link:last-child {
    margin-right: 0;
}

.social-link a {
    background-color: #ddd;
    padding: 4px 2px 0;
    font-size: 12px;
    border-radius: 4px;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.3)
}

.social-link a.fb {
    background-color: #3e5b98
}

.social-link a.googlePlus {
    background-color: #dd4b39
}

.social-link a.vk {
    background-color: #5a7fa6
}

.social-link a.youtube {
    background-color: #e02a20
}

.social-link a.twitter {
    background-color: #4da7de
}


/* SERVER MESSAGES */

#server-messages{
    position: fixed;
    top: 5px;
}

.gamemode-2 #server-messages{
    top: 20px
}

#server-messages ul {}

#server-messages ul li {
    /* border-radius: 5px; */
    font-size: 1em;
    color: #cbd3d9;
    margin-bottom: 5px;
    text-align: center;
}

#server-messages ul li:first-child {
    font-size: 1.5em;
    color: #fff;
}

#server-messages ul li.type-1 {
    /* border-radius: 5px; */
    font-size: 1em;
    color: #fff;
}

#server-messages span.message {
    padding: 1px 10px;
    background-color: rgba(140,140,140,0.219);
    border-radius: 5px;
}
#server-messages li.type-1 span.message {
    background-color: rgba(255,255,255,0.219);
}

/* HOME */

a.translate {
    background-color: #15b3ff;
    margin: 3px;
    /* display: block; */
    padding: 5px 55px;
    box-shadow: 0 2px 0 #0c85bf;
    font-size: 0.9em;
}

.comunities {
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
    border-bottom-style: dashed;
    margin-bottom: 4px;
}

.comunities ul {
    /* padding: 0 34px; */
}

.comunities li {
    /* list-style: disc; */
    /* list-style-position: outside; */
    /* color: #b8e1fc; */
    /* text-align: left; */
    display: inline-block;
}

.comunities .comunity {
    padding: 1px 6px;
    border-radius: 11px;
    color: #fff;
    background-color: #68bff9;
    text-decoration: none;
}

.comunities .comunity:hover {
    background-color: #10a4eb;
}

#links {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    padding: 4px 10px;
    border-radius: 0 5px 0 0;
    box-shadow: 0px 1px 7px rgba(0,24,33,0.301);
}

#links a {
    text-decoration: none;
    color: #7d7d7d;
}

.gamemode-button {
    font-size: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 0 #424242;
    cursor:  pointer;
}

.gamemode-button img {
    vertical-align: middle;
}
.gamemode-button .name {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: rgba(255,255,255,0.78);
    padding: 0 3px;
    border-radius: 5px;
    height: 20px;
    width: 80px;
}


/* JOYSTICKS */

#joystick-area {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: all;
    /*z-index: 100;*/
}

/* TOP RIGHT MENU */

#top-right-menu {
    position: fixed;
    top: 10px;
    right: 10px;
}

#top-right-menu > div {
    display: inline-block;
    vertical-align: top;
    text-align: right;
}

#top-right-menu .button-container {margin-bottom: 5px;}

#top-right-menu .button-container .ui-button {
    background-color: rgba(0,0,0,0.25);
    padding: 15px;
    border-radius: 5px;
    display: inline-block;
    color: #fff;
    pointer-events: all;
    position: relative;
    text-align: center;
}

#top-right-menu .button-container .ui-button .button-note {position: absolute;bottom: -10px;left: 50%;transform: translateX(-50%);background-color: #e80202;padding: 0 5px;border-radius: 3px;color: #fff;box-shadow: 0 2px 3px #0003;}

#top-right-menu .button-container .ui-button .button-note.green {
    background-color: #1fe219;
}
#top-right-menu .button-container .ui-button .hint {
    position: absolute;
    bottom: -7px;
    right: -11px;
    transform: translateX(-50%);
    background-color: rgba(255,255,255,0.211);
    padding: 0 5px;
    border-radius: 3px;
    color: #fff;
    box-shadow: 0 2px 3px #0003;
    border: 1px solid rgba(255,255,255,0.258);
    font-size: .8em;
}

@media (max-width: 768px) {
    #top-right-menu .button-container .ui-button {border-radius: 10px;padding: 6px;margin-left: 4px;}
}

/* LEADERBOARD */

#leaderboard {
    background-color: rgba(0,0,0,0.38);
    color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

#leaderboard #toggle-leaderboard {
    background-color: rgba(48,180,229,0.329);
    padding: 15px;
    border-radius: 5px;
    display: inline-block;
    color: #fff;
    pointer-events: all;
}

#leaderboard .title {
    padding: 2px 10px;
    text-align: center;
    color: #ffffff;
    background-color: rgba(255,255,255,0.121);
}

#leaderboard ul {
    padding: 2px;
}

#leaderboard ul li {
    padding: 2px 5px;
    font-size: .8em;
    color: #ddd;
}

#leaderboard ul li .pos {
    float: left;
    min-width: 29px;
    text-align: left;
    color: rgba(255,255,255,0.329);
    /* padding-right: 7px; */
}

#leaderboard ul li .name {
    float: left;
    max-width: 150px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word;
}

#leaderboard ul li .team {
}

#leaderboard ul li .score {
    float: right;
    margin-left: 10px;
    color: #fff;
}
#leaderboard ul li#top-1 {
    color: #ffbe00;
    font-size: 1em;
}
#leaderboard ul li#top-2 {
    font-size: .9em;
    color: #b5b5b5;
}
#leaderboard ul li#top-3 {
    font-size: .9em;
    color: #886500;
}

/* TRIBES */

.near-tribes-container {
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.15);
}

.near-tribes-container ul {
    min-width: 160px;
    min-height: 70px;
    max-height: 150px;
}

.near-tribes-container ul li {
}

.horizontal-spread {
    text-align: justify;
    font-size: 1px;
}

.horizontal-spread:after{
    content: '';
    display: inline-block;
    width: 100%;
    height: 0;
    font-size:0;
    line-height:0;
}

.near-tribes-container ul li .name {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #e4e4e4;
}

.near-tribes-container ul li .join {
    /* float: right; */
    display: inline-block;
    vertical-align: middle;
}

.near-tribes-container .refresh {
    color: #fff;
}

.create-tribe-container {}

.create-tribe-container .tribe-name {
    border-radius: 5px;
    border: 0;
    padding: 5px;
}

.create-tribe-container .create-tribe {}


.tribe-members {
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.129);
}

.tribe-members ul {
    min-width: 160px;
    min-height: 70px;
    max-height: 150px;
}

.tribe-members ul li {}

.tribe-members ul li .name {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #fff;
}

.tribe-members ul li .kick {
    display: inline-block;
    vertical-align: middle;
}

.tribe-actions {
    text-align: center;
}

.tribe-actions .quit-tribe {
    background-color: #ff0000;
    color: #fff;
    box-shadow: 0 2px 0 #900000;
}

.near-tribes-container .title, .tribe-members .title {
    display: block;
    text-align: center;
    font-size: 1em;
    color: #cacaca;
    margin-top: -3px;
    /* font-size: .8em; */
}

/* TRIBE REQUESTS */

#tribe-join-requests {
    background-color: rgba(0,0,0,0.109);
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    /* text-align: center; */
}

#tribe-join-requests .person-name {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

#tribe-join-requests button {
    background-color: rgba(255,255,255,0.458);
    pointer-events: all;
    display: inline-block;
    vertical-align: middle;
}

#tribe-join-requests .accept {color: #00a90e;}

#tribe-join-requests .refuse {
    color: #aa0101;
}

/* CHOICES */

#choices {
    text-align: center;
    /* top: 21px; */
    position: fixed;
    background-color: rgba(0,0,0,.2);
    color: #fff;
    padding: 8px;
    /* box-shadow: 0 0 3px 2px rgba(0,0,0,.3); */
    transition: .25s ease-out;
    border-radius: 0 0 10px 10px;
    min-width: 280px;
    /* pointer-events: all; */
    z-index:10;
}

#choices:hover {
    background-color: rgba(0, 0, 0, 0.26);
}

#choices.minimized {
    background-color: rgba(0,0,0,.2);
    padding: 4px;
}

#choices.minimized .inner {
    display: none;
}

#choices .minimize {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: rgba(18, 55, 103, 0.39);
    border: 1px solid rgba(0, 0, 0, 0.41);
    border-radius: 5px;
    color: #fff;
    padding: 3px 10px;
    box-shadow: 0px 0px 3px rgba(0,0,0,.3);
    z-index: 10;
    pointer-events: all;
}

#choices.minimized .minimize {
    position: relative;
    top: 0;
    right: 0;
    border: 0;
}

#choices .title {
    margin-bottom: 10px;
    font-size: .8em;
    opacity: .8;
    text-align: left;
    padding-left: 10px;
}

#choices .key {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(11, 52, 82, 0.57);
    border: 1px solid #286088;
    font-style: normal;
    color: #fbfbfb;
    border-radius: 2px;
    padding: 1px 3px;
    font-size: .8em;
}

#options-container>.inner,#share-dialog {
    font-size: 15px;
    transform: translate(-50%,-50%)
}

#choices .choice-list-container {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
}
#choices .choice-list-container.able {
    background-color: rgba(9,90,144,0.211);
}
#choices .choice-list-container.able.only {
    background-color: transparent;
}
#choices .choice-list-container.unable {
    background-color: rgba(115,51,51,0.211);
}

#choices .choice-list li {
    background-color: transparent;
    border: 0;
    margin-right: 15px;
    cursor: pointer;
    pointer-events: all;
    vertical-align: middle;
    position: relative;
    display: inline-block;
}

#choices .choice-list li:last-child {
    margin-right: 0
}

#choices .choice-list li img {
    /* max-width: 3vw; */
    opacity: .7;
    /* width: 5vw; */
    height: 10vh;
    max-height: 70px;
    min-height: 40px;
}

#choices .choice-list li:hover img {
    opacity: 1
}

#choices .choice-list-container .choices-title {
    font-size: .8em;
}
#choices .choice-list-container.able.only .choices-title {
    display: none;
}

#choices .can-live {
}

#choices .cannot-live {
}


/* TOOLTIPS */

.tooltip {
    display: block !important;
    z-index: 10000;
    font-size: .8em;
}

.tooltip .tooltip-inner {
    background: rgba(0,0,0,.8);
    color: white;
    border-radius: 5px;
    padding: 3px 6px 2px;
}

.tooltip .tooltip-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    margin: 5px;
    border-color: black;
    z-index: 1;
}

.tooltip[x-placement^="top"] {
    margin-bottom: 5px;
}

.tooltip[x-placement^="top"] .tooltip-arrow {
    border-width: 5px 5px 0 5px;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    bottom: -5px;
    left: calc(50% - 5px);
    margin-top: 0;
    margin-bottom: 0;
}

.tooltip[x-placement^="bottom"] {
    margin-top: 5px;
}

.tooltip[x-placement^="bottom"] .tooltip-arrow {
    border-width: 0 5px 5px 5px;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    border-top-color: transparent !important;
    top: -5px;
    left: calc(50% - 5px);
    margin-top: 0;
    margin-bottom: 0;
}

.tooltip[x-placement^="right"] {
    margin-left: 5px;
}

.tooltip[x-placement^="right"] .tooltip-arrow {
    border-width: 5px 5px 5px 0;
    border-left-color: transparent !important;
    border-top-color: transparent !important;
    border-bottom-color: transparent !important;
    left: -5px;
    top: calc(50% - 5px);
    margin-left: 0;
    margin-right: 0;
}

.tooltip[x-placement^="left"] {
    margin-right: 5px;
}

.tooltip[x-placement^="left"] .tooltip-arrow {
    border-width: 5px 0 5px 5px;
    border-top-color: transparent !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    right: -5px;
    top: calc(50% - 5px);
    margin-left: 0;
    margin-right: 0;
}

.tooltip.popover .popover-inner {
    background: #f9f9f9;
    color: black;
    padding: 24px;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(black, .1);
}

.tooltip.popover .popover-arrow {
    border-color: #f9f9f9;
}

.tooltip[aria-hidden='true'] {
    visibility: hidden;
    opacity: 0;
    transition: opacity .15s, visibility .15s;
}

.tooltip[aria-hidden='false'] {
    visibility: visible;
    opacity: 1;
    transition: opacity .15s;
}

/* END TOOLTIPS */

/* SECONDARY STATS */

.secondary-stats-container {
    background-color: #7d5b25;
    padding: 5px;
    border-radius: 4px;
    min-width: 200px;
}

.secondary-stats-container .available-points {
    text-align: center;
    margin-bottom: 5px;
}

.secondary-stats-container .available-points span {
    color: #fff;
}

.secondary-stats-container .stat-header {
    text-align: justify;
    margin-bottom: -1em;
}

.secondary-stats-container .stat-header:after{
    content: '';
    display: inline-block;
    width: 100%;
    height: 0;
    font-size:0;
    line-height:0;
}

.secondary-stats-container .stat-header > *,
.secondary-stats-container .stat-child > *{
    display: inline-block;
    vertical-align: middle;
}

.secondary-stats-container > .stat-row .stat-name {}

.secondary-stats-container > .stat-row .stat-value {
    color: #fff;
}

.secondary-stats-container > .stat-row .stat-value > * {
    display: inline-block;
    vertical-align: middle;
}

.secondary-stats-container > .stat-row .stat-actions {}

.secondary-stats-container > .stat-row .stat-actions button {}

.secondary-stats-container > .stat-row .stat-children {
    font-size: .8em;
    color: #b18f59;
    margin-top: -20px;
}

.secondary-stats-container > .stat-row .stat-children .stat-child {}

.secondary-stats-container > .stat-row .stat-children .stat-child .name {}

.secondary-stats-container > .stat-row .stat-children .stat-child .value {
    color: #b1a086;
}
/* END SS */

/* RECENT VIDEOS */

.content-box.video-box {
    height: 204px;
}

.video-box .no-video-yet {
    font-size: .8em;
    color: #717171;
}

#recent-videos {
    text-align: center;
}

#recent-videos ul {}

#recent-videos ul li {
    max-width: 48%;
    display: inline-block;
    border-radius: 5px;
    overflow: hidden;
    margin: 2px;
    box-shadow: 0px 1px 5px #ccc;
    position: relative;
    opacity: .7;
}

#recent-videos ul li:hover{
    opacity:1;
}

#recent-videos ul li a {}

#recent-videos ul li a img {
    display: inline-flex;
    vertical-align: middle;
}

#recent-videos ul li a .title {
    position: absolute;
    bottom: 0;
    color: rgba(255,255,255,0.819);
    background-color: rgba(0,0,0,0.388);
    font-size: 0.8em;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    padding: 2px 2px;
}

#recent-videos ul li .live {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ff0000;
    padding: 0px 4px;
    border-radius: 5px;
    color: #fff;
    font-size: .9em;
}

/* CONTENT GROUP */

.content-group {
    background-color: #f5f5f5;
    border-radius: 5px;
    margin: 0;
}

.content-group .title {
    font-size: .8em;
    color: #b5b5b5;
}

/* DESIGNERS */

#fish-level-info-container {
    /* z-index: 5; */
}

#fish-level-info-container ul {}

#fish-level-info-container .fish-info {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: rgba(0,36,62,0.768);
    border-radius: 6px;
    font-size: .85em;
    box-shadow: 0 4px 3px rgba(0,0,0,0.141);
    text-align: center;
    border: 2px solid #003863;
    pointer-events: all;
    background-color: rgba(46,90,125,.94);
    border: 1px solid rgba(13,73,121,.66);
    color: #ddd;
}

#fish-level-info-container .fish-info .title > *,
#fish-level-info-container .fish-info .creator > * {
    vertical-align: middle;
}

#fish-level-info-container .fish-info .title {
    margin-bottom: 3px;
}

#fish-level-info-container .fish-info .title img {
    max-height: 20px;
    margin: 0 3px 0 1px;
}

#fish-level-info-container .fish-info .title .fish-name {
    font-weight: bold;
}

#fish-level-info-container .fish-info .creator {
    color: #fff;
}

#fish-level-info-container .fish-info .creator img {
    max-height: 20px;
    margin: 0 3px 0 1px;
    border-radius: 3px;
}

#fish-level-info-container .fish-info .creator-name {
    font-weight: bold;
}

#fish-level-info-container .fish-info .ideator {
    color: #ffffff;
    margin-top: 3px;
    font-size: 0.8em;
    opacity: .7;
}

#fish-level-info-container .fish-info .ideator img {
    max-height: 20px;
    margin: 0 3px 0 1px;
    border-radius: 3px;
}

#fish-level-info-container .fish-info .ideator-name {
    font-weight: bold;
    /* color: #0aa8c3; */
}


/* USER */

#logged-user-container {
    text-align: left;
    position: relative;
}
#logged-user-container .user-data {
    text-align: left;
}
#logged-user-container .user-data .user-picture {
    width: 50px;
    height: 50px;
    margin-right: 5px;
    /* display: inline-block; */
    line-height: 50px;
    text-align: center;
}
#logged-user-container .user-data .user-picture img {
    vertical-align: middle;
}
#logged-user-container .user-data .user-name {
    width: 150px;
    text-overflow: ellipsis;
    overflow: hidden;
}
#logged-user-container .user-data .user-username {
    font-size: .8em;
    color: #898989;
    position: relative;
}
#logged-user-container .user-data .user-username #edit-profile {
    margin-bottom: -11px;
    background-color: transparent;
    margin-top: -13px;
    padding-left: 2px;
    right: 0;
}
#logged-user-container .user-data .coins {position: absolute;right: 0;top: 7px;background-color: #f2f2f2;padding: 5px;border-radius: 5px;}
#logged-user-container .user-data .coins .amount {/* font-weight: bold; */color: #000000;}
#logged-user-container .user-data .coins .icon {
}
#logged-user-container .user-profile-actions {
    text-align: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
#logged-user-container .user-profile-actions button {
    display: inline;
}

.user-profile-sub-actions {
    margin: 2px;
    margin-top: 6px;
    padding-top: 4px;
    border-top: 1px dashed #ddd;
    text-align: left;
}

.user-profile-sub-actions button {
}

#open-store {
}



/* RANKING */

#today-ranking-container {}
#today-ranking-container .options {}
#today-ranking-container .options select {
    padding: 2px 2px;
    border-radius: 5px;
    /* border: 3px solid #f1f1f1; */
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    max-width: 40%;
    font-size: .8em;
}
#today-ranking-container .items-container {background-color: #f7f7f7;padding: 5px 0;border-radius: 5px;}
#today-ranking-container .items {
    width: 100%;
    border-collapse: collapse;
    /* display: block; */
}
#today-ranking-container .item {
    font-size: .9em;
    width: 100%;
}
#today-ranking-container .item:hover {

    background-color: #ebebeb;

    /* cursor: pointer; */
}
#today-ranking-container .item > * {

    padding-top: 2px;

    padding-bottom: 2px;
}
#today-ranking-container .item:last-child > * {

}
#today-ranking-container .item .position {color: #929292;/* border-radius: 5px; */font-size: .8em;}
#today-ranking-container .item:first-child .position {/* font-weight: bold; *//* color: #a79972; */}
#today-ranking-container .item .picture {padding: 2px 4px;width: 20px;height: 20px;}
#today-ranking-container .item .picture img {width: 20px;vertical-align: middle;height: 20px;border-radius: 2px;}
#today-ranking-container .item .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100px;
}
#today-ranking-container .item .score {
    padding-right: 2px;
}
#today-ranking-container .item .animal {
    font-size: 0;
}
#today-ranking-container .item .animal img {
    max-height: 25px;
    vertical-align: middle;
}
#today-ranking-container .user-social-links {
    padding: 0 4px;
}
#today-ranking-container .user-social-links .social-link {}
#today-ranking-container .user-social-links .social-link:last-child {}

.ranking-stats-popover {
}

.ranking-stats-popover .footer {padding: 5px;background-color: #f2f2f2;font-size: .9em;color: #656565;border-top: 1px solid #ddd;white-space: pre-line;}

.ranking-stats-popover .footer .description {
    font-style: italic;
}

.ranking-stats-popover .popover {
    max-width: 370px;
    /* overflow: hidden; */
}
.ranking-stats-popover .popover-body {
    padding: 0;
    border-radius: 0.3rem;
    overflow: hidden;
}
.ranking-stats-popover .right {

}
.ranking-stats-popover .right .top-bar {position: absolute;width: 100%;height: 25px;background-color: #f2f2f2;z-index: -1;left: 0;border-radius: 0.3em;}
.ranking-stats-popover .left {
    max-width: 80px;
    max-height: 80px;
    padding: 0px;
    background-color: #f2f2f2;
    line-height: 76px;
    text-align: center;
}
.ranking-stats-popover .left img {
    vertical-align: middle;
}
.ranking-stats-popover .popover-title {padding: 2px 5px;background-color: #f2f2f2;margin-bottom: 3px;}
.ranking-stats-popover .popover-title .position {
    font-size: .8em;
    color: #adadad;
}
.ranking-stats-popover .popover-title .name {
    font-size: .9em;
    color: #747474;
}
.ranking-stats-popover .stats {
    padding: 2px 5px;
}
.ranking-stats-popover .stat-item {
    text-align: center;
    border-right: 1px solid #e9e9e9;
    padding: 0 6px 0 0;
}
.ranking-stats-popover .stat-item:last-child {
    border-right: 0;
}
.ranking-stats-popover .stat-item .title {
    font-size: .9em;
    color: #868686;
}
.ranking-stats-popover .stat-item .value {
    color: #000;
}
.ranking-stats-popover .stat-item .sub {
    color: #555555;
    font-size: .8em;
}
.ranking-stats-popover .stat-item .red {
    color: #b11c1c;
}
.ranking-stats-popover .stat-item .green {
    color: #1cb15e;
}
.ranking-stats-popover .stat-item .yellow {
    color: #d8bf00;
}
/* PROFILE EDIT */

#profile-edit {}
#profile-edit .profile-picture .image-container {
    width: 90px;
    height: 90px;
    text-align: center;
    line-height: 90px;
}
#profile-edit .profile-picture .image-container img {
    vertical-align: middle;
}
#profile-edit #profile-message {
    min-width: 317px;
}
#profile-edit .picture-container {
}
#profile-edit .picture-container .profile-picture {
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
}
#profile-edit .picture-container button {background-color: #fff;box-shadow: 0 2px 0 #dfdfdf;}
#profile-edit .social-network-item {
    text-align: center;
}

.social-network-icon img {
    width: 20px;
    border-radius: 4px
}

#fb-link .toggle,#gplus-link .toggle,#twitter-link .toggle,#vk-link .toggle,#youtube-link .toggle {
    display: inline-block;
    padding: 3px 21px 0px 5px;
    background-color: #e1e1e1;
    border-radius: 5px;
    margin-bottom: 3px;
    width: 20px;
    cursor: pointer;
}

#fb-link.active .toggle {
    background-color: #3b5998;
    cursor: default;
    color: #fff;
}

#gplus-link.active .toggle {
    background-color: #dd4b39;
    cursor: default;
    color: #fff;
}

#youtube-link.active .toggle {
    background-color: #cd201f;
    cursor: default;
    color: #fff;
}

#vk-link.active .toggle {
    background-color: #45668e;
    cursor: default;
    color: #fff;
}

#twitter-link.active .toggle {
    background-color: #4da7de;
    cursor: default;
    color: #fff;
}

#death-dialog-preview {
    clear: both;
}
#death-dialog-preview #play-stats {
    background-color: rgba(47,86,113,0.701);
    border-radius: 5px;
    pointer-events: all;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.431);
    /* border: 1px solid #58320b; */
    color: #cecece;
    margin: 15px;
    margin-top: 5px;
}

/* SETTINGS */

.settings-container {
    width: 450px;
}
.settings-container > * {}

/* GAMEMODES */

.game-mode-list {
    text-align: left;
}

.game-mode-list > div {
    margin-top: 7px;
    width: 60px;
    border-radius: 5px;
    overflow: hidden;
    height: 30px;
    margin-right: 5px;
    transition-duration: 200ms;
    cursor: pointer;
}
.game-mode-list > div:last-child {
    margin-right: 0;
}
.game-mode-list > div img {
    display: block;
    height: 30px;
    width: auto;
    max-width: none;
    margin-left: -3px;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
    transition-duration: 200ms;
}
.game-mode-list > div:hover img {
    filter: none;
    -webkit-filter: grayscale(0%);
}

.active-game-mode {
    text-align: left;
    border-radius: 5px;
    overflow: hidden;
    background-color: #f2f2f2;
    height: 35px;
}
.active-game-mode img {}
.active-game-mode .name {
    font-size: .8em;
    color: #363636;
}

.game-modes-container {
    min-width: 291px;
}

.game-modes-container .settings {
    font-size: .8em;
    text-align: left;
    padding-top: 2px;
    margin-top: 7px;
    border-top: 1px solid #f2f2f2;
    padding-left: 6px;
    padding-right: 6px;
}
.game-modes-container .settings .row > div:first-child {
    text-align: left;
}
.game-modes-container .settings .row > div:last-child {
    text-align: right;
}

/* SKINS STORE */

.tier-selector {
    margin-right: -8px;
}
.tier-selector > div {text-align: center;padding: 2px 13px 2px 7px;color: #929292;cursor: pointer;}
.tier-selector > div.active {
    background-color: #ddd;
    cursor: default;
    border-radius: 5px 0 0 5px;
    color: #525252;
}
.skins-container {
    background-color: #ddd;
    width: 350px;
    min-height: 280px;
    border-radius: 5px;
}
.skins-container .skins {
    padding: 7px;
}
.skins-container .skins .item {
    width: 50px;
    height: 50px;
    border-radius: 7px;
    display: inline-block;
    box-shadow: 0 1px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    margin: 0 3px;
    text-align: center;
    position: relative;
    background-color: #f3f3f3;
}
.skins-container .skins .item .animal{}
.skins-container .skins .item img {
    max-width: 40px;
    max-height: 40px;
    /* vertical-align: middle; */
    /* display: inline-block; */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.skins-container .skins .item .equiped {
    position: absolute;
    height: 20px;
    width: 20px;
    bottom: 2px;
    right: 2px;
    background-color: rgba(140, 140, 140, 0.47);
    border-radius: 5px;
    text-align: center;
    color: #00ff08;
    font-size: .8em;
    padding: 2px;
}
.skins-container .skins .item .equiped div {
    /* vertical-align: middle; */
    /* display: inline-block; */
    background-color: #08ed33;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}
.skins-container .nav-bar {
    padding: 4px 0 0 6px;
}
.skins-container .nav-bar > * {
    background-color: #fff;
    padding: 2px 6px;
    font-size: .9em;
    border-radius: 8px;
    color: #000;
    box-shadow: 0 2px 1px rgba(0,0,0,0.231);
    cursor: pointer;
}
.skins-container .nav-bar > *.active {

    cursor: default;

    box-shadow: none;

    background-color: #f1f1f1;

    color: #000;
}

.skin-container {
    padding: 10px;
}
.skin-container .skin-display {
    text-align: center;
}
.skin-container .skin-display .skin, .skin-container .skin-display .original {
    width: 100px;
    height: 150px;
    background-color: #4c6d9a;
    padding: 10px;
    position: relative;
    border-radius: 10px;
    border: 3px solid #ededed;
}
.skin-container .skin-display .then {
    text-align: center;
    width: 70px;
    color: #6b6b6b;
}
.skin-container .skin-display .skin img, .skin-container .skin-display .original img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    max-width: 80px;
    max-height: 130px;
}
.skin-container .skin-display .skin .skin-note {position: absolute;top: 4px;right: 4px;color: #62c0ff;border-radius: 100px;background-color: #0f5584;line-height: 1em;box-shadow: 0 1px 3px #0000004f;z-index: 100;}
.skin-container .meta {
    text-align: right;
}
.skin-container .meta .price {
    font-weight: bold;
    color: #000;
}
.skin-container .meta .price i {
    color: #daaf36;
}
.skin-container .meta .designer {
    float: left;
    font-size: .9em;
    font-weight: bold;
    margin-top: .25em;
    color: #9d9d9d;
}
.skin-container .meta .designer img {
    max-height: 20px;
    /* margin: 0 3px 0 1px; */
    border-radius: 3px;
}
.skin-container .meta .designer .creator-name {}
.skin-container .actions {
    text-align: right;
}
.skin-container .actions button {
    padding: 5px 20px;
    margin-left: 5px;
}

/* AREA KINGS */

#area-kings {
    position: fixed;
    top: 25px;
    left: 5px;
}
#area-kings > div {
    background-color: rgba(0,0,0,0.149);
    color: #929292;
    font-size: .9em;
    padding: 3px 7px;
    margin-bottom: 3px;
}
#area-kings > div .title {}
#area-kings > div .title span {}
#area-kings > div .name {
    color: #d2d2d2;
    margin-left: 5px;
}

#area-kings > div.biome-swamp .title span {
    color: #4ec849;
}
#area-kings > div.biome-artic .title span {
    color: #b4e5ff;
}
#area-kings > div.biome-open-ocean .title span {
    color: #3889d4;
}
#area-kings > div.biome-deep .title span {
    color: #a55bff;
}

#area-kings > div .score {
    color: #baafaf;
    margin-left: 0px;
}
#area-kings > div .animal {margin-left: 5px;font-size: 0;}
#area-kings > div .animal img {
    max-height: 19px;
}


/* OVO HEADER */

#ovo-header {
    /* margin-top: 5px; */
    position: fixed;
    top: 5px;
    width: 99.9%;
    color: #cecece;
}

#ovo-header .ovo-player {}

#ovo-header .player-animal {
    position: relative;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 51, 87, 0.23);
    margin: 0px 15px;
    border-radius: 10px;
}

#ovo-header .player-animal img {
    max-height: 100px;
    max-width: 100%;
}

#ovo-header .health-meter {
    /* border: 2px solid rgb(139, 201, 248); */
    height: 20px;
    margin-bottom: 4px;
}

#ovo-header .health-inner {
}

#ovo-header .name {
    font-size: 20px;
    font-weight: bold;
    line-height:30px;
}

#ovo-header .score {
    font-weight: bold;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.83);
    padding: 4px 10px;
    border-radius: 4px;
    color: #000;
}

#ovo-header .timer-container {
    position: relative;
    height: 60px;
}

#ovo-header .timer {
    background-color: rgba(0, 19, 33, 0.68);
    height: 60px;
    border-radius: 5px;
    /* border: 11px solid #ffffff; */
    font-size: 33px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.49);
    position: absolute;
    width: 100%;
}

#ovo-header .timer span {
    vertical-align: middle;
    color: #ffffff;
}

#ovo-header .health-container {
    padding-top: 22px;
}

#ovo-header #player-1 .player-animal {}

#ovo-header #player-1 .player-animal img {}

#ovo-header #player-1 .health-meter {
    border-radius: 5px 0 0 5px;
    /* border-right: 0; */
}

#ovo-header #player-1 .health-inner {
    border-radius: 4px 0 0 4px;
}

#ovo-header #player-1 .name {}

#ovo-header #player-2 .player-animal {}

#ovo-header #player-2 .player-animal img {}

#ovo-header #player-2 .health-meter {
    border-radius: 0 5px 5px 0;
    border-left: 0;
}

#ovo-header #player-2 .health-inner {
    border-radius: 0 4px 4px 0;
}

#ovo-header #player-2 .name {
    text-align: right;
}

.health-meter {
    width: 100%;
    height: 10px;
    background-color: #ff0000;
}

.health-meter .health-inner {
    width: 100%;
    height: 100%;
    background-color: #00ff00;
}

/* FINISHED ROOM */

.ovo-player {
    text-align: center;
    background-color: rgba(0,0,0,0.039);
    border-radius: 10px;
    padding: 5px 20px;
}
.ovo-player > .title {
    font-weight: bold;
    font-size: 1.2em;
    /* color: #000; */
    margin-bottom: 5px;
}
.ovo-player .data {}
.ovo-player .data .animal {
    max-width: 40px;
    max-height: 40px;
}
.ovo-player .player-data {
    margin-top: 5px;
}
.ovo-player .player-data .picture {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background-color: #fff;
}
.ovo-player .player-data .picture img {}
.ovo-player .name {}
.ovo-player .social-networks {}
.ovo-player .description-container {
    font-size: .8em;
    font-style: italic;
    max-width: 190px;
    color: #555555;
    white-space: pre-line;
}
.ovo-player .description-container p {
    margin-bottom: 5px;
    max-height: 200px;
    overflow: hidden;
    text-overflow: ellipsis;

}

@media screen and ( max-height: 400px ) {
    .ovo-player .description-container p {
        max-height: 50px;
        overflow-y: scroll;
    }
}

@media screen and ( max-height: 600px ) {
    .ovo-player .description-container p {
        max-height: 100px;
        overflow-y: scroll;
    }
}

.ovo-player .score {}
.ovo-player .score .title {
    font-weight: 600;
    color: #6d6d6d;
}
.ovo-player .score .val {
    font-weight: bold;
    font-size: 1.5em;
}
.finished-room .chatbox,
.loading-room .chatbox {}
.finished-room .chatbox .title,
.loading-room .chatbox .title {
    text-align: center;
}
.finished-room .chatbox .messages,
.loading-room .chatbox .messages {
    width: 230px;
    height: 173px;
    background-color: #f3f3f3;
    border-radius: 10px;
    margin-bottom: 7px;
    padding: 5px;
    overflow-y: scroll;
}
.finished-room .chatbox .messages .message,
.loading-room .chatbox .messages .message {
    white-space: pre-line;
    word-break: break-all;
    font-size: 15px;
}
.finished-room .chatbox .messages .message .name,
.loading-room .chatbox .messages .message .name {
    font-weight: 500;
}
.finished-room .chatbox .messages .message .text,
.loading-room .chatbox .messages .message .text {}
.finished-room .chatbox .messages #message,
.loading-room .chatbox .messages #message {}
.finished-room .chatbox .messages #send-message,
.loading-room .chatbox .messages #send-message {}

.loading-room .players-count {
    text-align: center;
    font-size: .9em;
    margin-bottom: 5px;
    /* font-weight: bold; */
    color: #aaaaaa;
}
.loading-room .players-count .actual {
}
.loading-room .players-count .needed {
    font-weight: normal;
}

.finished-room .room-leaderboard .title {
    text-align: center;
    font-weight: 500;
    color: #3c3c3c;
    background-color: #f5f5f5;
    border-radius: 5px;
}
.finished-room .room-leaderboard table {
    font-size: .9em;
}
.finished-room .room-leaderboard table td,
.finished-room .room-leaderboard table th {
    padding-right:5px;
}
.finished-room .room-leaderboard table tr {}
.finished-room .room-leaderboard table tr:hover {
    background-color: #f2f2f2;
}
.finished-room .room-leaderboard table thead {}
.finished-room .room-leaderboard table thead th {
    color: #bbbbbb;
    font-weight: 500;
    font-size: .8em;
    text-align: center;
}
.finished-room .room-leaderboard table .level {
    text-align: center;
}
.finished-room .room-leaderboard table .level img {
    max-width: 20px;
    max-height: 20px;
}
.finished-room .room-leaderboard table .team {
}
.finished-room .room-leaderboard table .user {
    border-radius: 5px;
    text-align: center;
    line-height: 14px;
    width: 22px;
    height: 22px;
    padding: 1px;
}
.finished-room .room-leaderboard table .user .profile-picture {
    max-width: 20px;
    max-height: 20px;
    vertical-align: middle;
    display: inline-block;
}
.finished-room .room-leaderboard table .name {}
.finished-room .room-leaderboard table .kills {}
.finished-room .room-leaderboard table .score {}

/* RESPAWN */

.respawn-dialog {}
.respawn-dialog .title {
    text-align: center;
    padding: 0 20px;
}
.respawn-dialog .title .value {
    font-size: 1.3em;
    color: #000;
}

/* PD HEADER */

#pd-info-container {
    position: fixed;
    width: 100%;
    top: 8px;
    opacity: .8;
    color: #fff;
    font-size: 0;
}

#pd-info-container .col {}

#pd-info-container .team-info {
    padding: 10px;
    font-weight: bold;
    font-size: 1.3em;
    padding-top: 0;
}

#pd-info-container .team-info > span {
    float: left;
    clear: both;
}

#pd-info-container .team-name {
    font-size: 1.5em;
}

#pd-info-container .team-score {
    font-weight: normal;
}

#pd-info-container .pearl-model {position: relative;}

#pd-info-container .pearl-health {
    margin-top: 10px;
}

#pd-info-container .health-meter {
    width: 100%;
    height: 10px;
    background-color: #ff0000;
}

#pd-info-container .health-meter .health-inner {
    width: 100%;
    height: 100%;
    background-color: #00ff00;
}

#pd-info-container .pearl-stand {
    background-image: url("/assets/pearl_stand_only.png");
    width: 115px;
    height: 67px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: bottom;
}

.team-1 .pearl-stand, .team-1 .pearl, .team-1 .pearl-cover {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

#pd-info-container .pearl {
    background-image: url(/assets/pearl_only.png);
    width: 115px;
    height: 89px;
    background-repeat: no-repeat;
    background-position-y: 12px;
    background-position-x: center;
    position: absolute;
    top: 0;
    background-size: 30px;
}

#pd-info-container .pearl-cover {
    background-image: url(/assets/pearl_cover.png);
    width: 115px;
    height: 67px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: top;
    position: absolute;
    top: 0;
}

#pd-info-container .pearls-left {position: absolute;bottom: 15px;right: 0;padding: 3px 8px;border-radius: 10px;background-color: rgba(255,255,255,0.768);border: 1px solid rgba(0,0,0,0.211);color: #000;font-weight: bold;}

#pd-info-container .team-1 {
    /* position: absolute; */
    text-align: left;
    left: 0;
    top: 0;
    width: 49.9%;
    white-space: nowrap;
    font-size: 12px;
}

#pd-info-container .team-2 {
    text-align: right;
    /*position: absolute;*/
    top: 0;
    width: 49.9%;
    font-size: 12px;
    right: 0;
}

#pd-info-container .players {
    top: 10px
}

#pd-info-container .players .pearl {
    display: block !important;
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    background-size: 20px;
    height: 21px;
    background-position-y: 0;
    top: auto;
}

#pd-info-container .players ul li {
    float: left;
    margin-left: 10px;
    position: relative;
    max-width: 54px;
    width: 2vw;
}

@media (max-width: 1300px) {
    #pd-info-container .players ul li {
        width: 1.3vw;
    }
}

@media (max-width: 1000px) {
    #pd-info-container .players ul li {
        width: 1vw;
    }
}

#pd-info-container .team-2 .players ul li {
    margin-left: 0;
    margin-right: 10px;
}

#pd-info-container .players ul li img {max-width: 100%;}

#pd-info-container .players ul li.dead img {
    opacity: .5
}

#pd-info-container .players ul li .name {width: 100%;}

#pd-info-container .players ul li .name span {font-size: 11px;overflow: hidden;white-space:nowrap;text-overflow:ellipsis;width: 100%;display:inline-block;text-align: center;/* font-weight: bold; */}

#pd-info-container .players ul li .respawn-left {
    position: absolute;
    line-height: 20px;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    font-weight: 700
}

/* KILLS */

.kills-container {
    position: absolute;
    bottom: 200px;
    right: 8px;
}
.kills-container .kill {
    background-color: rgba(0,0,0,0.188);
    color: #a9a9a9;
    font-size: .9em;
    padding: 3px 10px;
    margin-top: 5px;
    border-radius: 5px;
}
.kills-container .kill .team {}
.kills-container .kill .name {}
.kills-container .kill .attacker {}
.kills-container .kill .victim {}
.kills-container .kill .level {}
.kills-container .kill .level img {
    max-width: 20px;
    max-height: 20px;
}
.kills-container .kill .reason {}

/* NEW ITEMS */

.new-items-container {
    bottom: 20px;
    z-index: 60;
}
.new-items-container .new-item {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 3px 0 #d0d0d0, 0 0 10px rgba(0,0,0,0.321);
    padding: 5px 20px;
    pointer-events: all;
    margin-top: 10px;
}
.new-items-container .new-item .title {
    font-size: .9em;
    text-align: center;
}
.new-items-container .new-item .item-data {
    text-align: center;
}
.new-items-container .new-item .item-data .amount {
    font-weight: 500;
    color: #000000;
}
.new-items-container .new-item .item-data .picture.finished-room .chatbox .messages, .loading-room .chatbox .messages {
    font-size: 0;
}
.new-items-container .new-item .item-data .picture img {
}

/* FORM */

.form-group {
    margin-bottom: 0;
}

.form-group .form-input {
    margin-bottom: 10px;
}

@media (max-height: 400px) {
    .form-group .form-input {
        margin-bottom: 2px;
    }
}

.form-group .form-input:last-child {
    margin-bottom: 0;
}

.form-input label.title {
    text-align: left;
    font-size: .9em;
    margin-bottom: 0;
}

.form-input input {}

/* LOGIN */

.login-container {
    width: 400px;
}
.login-container .form-input input{
    width: 100%;
}

/* MESSAGE DIALOG */

.message-content {}
.message-content p {
    margin-bottom: 0;
    padding: 8px 10px 8px;
    /*background-color: #f2f2f2;*/
    border-radius: 5px;
}

.note-message {
    padding: 10px 15px;
    background-color: #f0f9ff;
    border-radius: 10px;
    font-size: .9em;
    color: #64879e;
}

/* SET PASSWORD */

.set-password-container {
    max-width: 320px;
}
.set-password-container .form-input input{
    width: 100%;
}

/* REGISTER */

.register-container {
    width: 250px;
}
.register-container .form-input input{
    width: 100%;
}

/* LMS finished ROOM */

.lms-finished-room .chatbox .messages {
    height: 215px;
}

/* LMS */

#players-alive {
    top: 0;
    font-size: 34px;
    color: #fff;
}

#players-alive .count {
    font-size: 1.5em;
    padding-right: 10px;
    /* font-weight: bold; */
    line-height: 1.5em;
}

@media (max-width: 639px) {
    #players-alive {
        font-size: 16px;
    }
}

@media (max-width: 1000px) {
    #players-alive {
        font-size: 24px;
    }
}

/* LMS PLAY HISTORY */

.lms-play-history {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 32px;
    color: #00b6ff;
}

@media (max-width: 639px) {
    .lms-play-history {
        font-size: 16px;
    }
}

@media (max-width: 1000px) {
    .lms-play-history {
        font-size: 24px;
    }
}
.lms-play-history .position {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1em;
}
.lms-play-history .content {
    width: 100%;
}
.lms-play-history .content .player {}
.lms-play-history .content .fish-level {
    /* font-size: 0; */
    height: 2em;
}
.lms-play-history .content .fish-level img {}
.lms-play-history .content .name {
    color: #fff;
}
.lms-play-history .content .message {
    font-size: 1.3em;
    font-weight: 500;
}
.lms-play-history .content .stats {}
.lms-play-history .content .stat {
    margin-right: 10px;
}
.lms-play-history .content .stat:last-child {
    margin-right: 0;
}
.lms-play-history .content .stats .stat .title {
    color: #e2e2e2;
}
.lms-play-history .content .stats .stat .value {
    line-height: 1em;
    /* font-weight: 500; */
}

.lms-play-history .content .actions {
    margin-top: .8em;
    pointer-events: all;
}
.lms-play-history .content .actions button {
    padding: 5px 20px;
    color: #fff;
    background-color: #ddd;
    border-radius: 10px;
    padding-bottom: .3em;
    margin-right: .7em;
}
.lms-play-history .content .actions button:last-child {
    margin-right: 0;
}
.lms-play-history .content .actions .to-menu {
    background-color: #00b6ff;
}
.lms-play-history .content .actions .spec {
    background-color: #6b00ff;
}

/* CDialog */

.c-container {
    max-width: 320px;
}
.c-container .form-input input{
    width: 100%;
}
.c-container .c {margin-bottom: 0px;text-align: center;}

.c-container .c img {
}

/* MUTED */

.muted-list {
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.129);
}

.muted-list ul {
    min-width: 300px;
    min-height: 100px;
    max-height: 200px;
    overflow-y: scroll;
    padding-right: 5px;
}

.muted-list ul li {}

.muted-list ul li .name {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #fff;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.muted-list ul li .name .id {font-size: .8em;color: #a2a2a2;}

.muted-list ul li .chats {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #a3b9ca;
}

.muted-list ul li .chats .material-icon {font-size: 1em;}

.muted-list .title {
    display: block;
    text-align: center;
    font-size: 1em;
    color: #cacaca;
    margin-top: -3px;
    /* font-size: .8em; */
}

/* YES NO CANCEL */

.yes-no-dialog {}
.yes-no-dialog .dialog-content {}
.yes-no-dialog .dialog-content p {}
