
body.drag:before, body.drag:after {
    content: "";
    position: fixed;
    background: green;
    left: 0;
    right: 0;
    height: 3px;
}
body.drag:before {
    top: 0;
}
body.drag:after {
    bottom: 0;
}
body.drag {
    border-left: 3px solid green;
    border-right: 3px solid green;
}

#inventory-top table {
    width: 100%;
    color: #dadada;
    font-size: 14px;
}

#inventory-top table thead th {
    background: black;
    border: 1px solid black;
    padding: 5px 0;
}

#inventory-top table .th2 {
    text-align: left;
    padding-left: 10px;
}

#inventory-top table .td1 {
    text-align: center;
    color: grey;
    font-size: 13px;
}

#inventory-top table .td2 {
    color: #5d5d5d;
    text-shadow: 0 0 1px rgba(0,0,0,0.1), 0 0 1px rgba(0,0,0,0.1);
    line-height: 30px;
    display: inline-block;
    padding-left: 10px;
}

#inventory-top table .td2 img{
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 3px;
    border-radius: 5px;
}

#inventory-top table .td2 a {
    color: #5d5d5d;
    line-height: 25px;
    font-weight: 500;
    overflow: hidden;
    display: inline-block;
    text-shadow: 0 0 1px rgba(0,0,0,.1), 0 0 1px rgba(0,0,0,.1);
}

body.dark #inventory-top table .td2 a {
    color: #a7a7a7;
}

#inventory-top table .td3 {
    text-align: center;
}

#inventory-top table .td3 a {
    font-size: 12px;
    color: #00AD14;
}

#inventory-top table .td3 a:hover {
    text-decoration: underline;
}

#inventory-top table .td4 {
    text-align: center;
    font-weight: bold;
}

#inventory-top table .td4 .plus {
    color: green;
}

#inventory-top table .td4 .minus {
    color: red;
}

#inventory-top table .td4 .neutral {
    color: grey;
}

.scroll-container {
    display: none;
}

#modal-dialog .bad-deal {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: .5s;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: .5s;
    -moz-animation-timing-function: ease-out;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;

    color: #ff5d38;
}

#modal-dialog .uprice {
    position: absolute;
    float: right;
    top: 0;
    left: 0;
    padding: 15px;
    color: grey;
    font-size: 14px;
}

#inv_graph {
    background: rgba(30, 30, 30, 0.7);
    width: 100%;
    height: 150px;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#modal-dialog .morris-hover {
    margin: -28px;
}

#modal-dialog .morris-hover-row-label {
    display: none;
}

#modal-dialog tspan {
    max-width: 100px;
    overflow: hidden;
}

#modal-dialog p .best {
    padding: 2px 5px;
    margin-left: 5px;
    background: #396d00;
    color: #c7c7c7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#modal-dialog p .offer {
    padding: 2px 5px;
    margin-left: 5px;
    background: #006ba3;
    color: #c7c7c7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.inventory {
    background: rgba(30, 30, 30, 0.95);
    overflow: hidden;
}

.inventory .start-loading {
    color: #bdbdbd;
    text-align: center;
    font-size: 16px;
    width: 100%;
    display: block;
    float: left;

    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}

.inventory .start-loading img {
    width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.inventory .top-bar {
    width: calc(100% - 24px);
    padding: 5px 12px;
    background: rgba(25, 25, 25, 0.9);
    display: none;
}

.inventory .top-bar .button {
    display: inline-block;
    padding: 10px 30px;
    box-shadow: rgb(0, 181, 2) 0 0 20px;
    background: rgb(0, 120, 2);
    border: 1px solid #989696;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #d6d6d6;
    cursor: pointer;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.inventory .top-bar .button.blink {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1.5s;
    -moz-animation-timing-function: ease-out;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.inventory .top-bar .button:hover {
    box-shadow: rgb(0, 255, 3) 0 0 40px;
    background: rgb(0, 191, 3);
    -webkit-animation-name: none;
    -moz-animation-name: none;
    animation-name: none;
}

.inventory #inv-search {
    display: none;
    position: relative;
}

.inventory #inv-search input {
    line-height: 40px;
    padding: 0 10px;
    margin: 0 10px;
    width: calc(100% - 40px);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 15px;
    border: 1px solid #adadad;
    color: #ffffff;
    background: #141414;
}

.inventory #inv-search .inv-search-return {
    overflow: auto;
    position: absolute;
    max-height: 400px;
    width: calc(100% - 20px);
    background: #2d2d2d;
    border: 1px solid #3e3e3e;
    left: 10px;
    z-index: 20;
    list-style: none;
}

.inventory #inv-search .inv-search-return li {
    float: left;
    width: calc(100% - 40px);
    padding: 0 20px 0 20px;
    cursor: pointer;
    line-height: 31px;
    border-bottom: 1px solid rgb(0 0 0 / 25%);
    color: #cdcdcd;
}

.inventory #inv-search .search-reset {
    display: none;
    height: 20px;
    right: 0;
    top: 0;
    position: absolute;
    width: 15px;
    margin: 10px 25px 0 0;
    background: url(../img/search-cancel.png);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    filter: invert(1);
}

.inventory #inv-search .inv-search-return li:hover {
    background: #3e3e3e;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes market_blink {
    from {background-color: rgb(0, 120, 2);}
    to {background: rgb(0, 191, 3);}
}

/* Standard syntax */
@keyframes market_blink {
    from {background-color: rgb(0, 120, 2);}
    to {background: rgb(0, 191, 3);}
}

.inventory .top-bar .settings {
    display: block;
    height: 41px;
    width: 45px;
    box-shadow: rgb(255, 141, 0) 0 0 10px;
    border: 1px solid #989696;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #d6d6d6;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    float: right;
    background: rgb(255, 84, 0) url(../img/inventory/settings.png);
    background-size: 68%;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
}

.inventory .top-bar .settings:hover {
    background: rgb(226, 61, 0) url(../img/inventory/settings.png);
    background-size: 68%;
    background-repeat: no-repeat;
    background-position: center;
}

.inventory .trade-window {
    display: none;
    position: relative;
    clear: both;
    overflow: visible;
    border: 1px solid #949494;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: inset rgba(255, 255, 255, 0.4) 0 0 20px;
}

.inventory .trade-window .trade-chat {
    width: 100%;
    font-family: Helvetica, Arial, sans-serif;
}

.inventory .trade-window .trade-chat ul {
    max-height: 250px;
    overflow-y: scroll;
    list-style: none;
    margin: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.inventory .trade-window .trade-chat input[type=text] {
    width: calc(100% - 120px);
    height: 32px;
    border: 1px solid #adadad;
    padding-left: 7px;
    margin-left: 5px;
    float: left;
    background: rgba(0,0,0,.4);
    color: #e8e8e8;
}

.inventory .trade-window .trade-chat input[type=submit] {
    background: #c27100;
    height: 34px;
    border: 1px solid #e4e4e4;
    font-size: 11px;
    color: #fdfdfd;
    cursor: pointer;
    width: 100px;
    text-align: center;
}

.inventory .trade-window .trade-chat input[type=submit]:hover {
    background: #ff9500;
}

.inventory .trade-window .trade-chat ul li {
    display: inline-block;
    clear: both;
    padding: 8px 20px;
    margin: 2px 12px;
    border-radius: 7px;
    font-size: 14px;
}

.inventory .trade-window .trade-chat ul li.other {
    background: #292929f7;
    color: #bbbbbb;
    float: left;
    box-shadow: rgb(208, 208, 208) 0 0 10px;
}

.inventory .trade-window .trade-chat ul li.self {
    background: #006709e0;
    color: #e6e6e6;
    float: right;
    box-shadow: rgb(0, 181, 2) 0 0 10px;
}

.inventory .trade-window .trade-chat ul li.other + .self{
    margin-top: -10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.inventory .trade-window .trade-chat ul li.self + .self{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.inventory .trade-window .trade-chat ul li.self:last-of-type {
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

.inventory .trade-window .trade-chat ul li:first-child {
    margin-top: 10px;
}

.inventory .trade-window .trade-chat ul li:last-child {
    margin-bottom: 10px;
}

.inventory .trade-window .announcement {
    line-height: 30px;
    color: #d8d8d8;
    font-size: 14px;
    text-align: center;
    display: block;
    background: rgb(185 0 0 / 30%);
    cursor: pointer;
    padding-bottom: 5px;
}

.inventory .trade-window .announcement:hover {
    background: rgba(100, 100, 100, 0.5);
}

.inventory .trade-window.final {
    border: 1px solid #656565;
    box-shadow: inset rgba(0, 0, 0, 0.45) 0 0 21px;
    background: rgba(59, 140, 0, 1);
}

.inventory .trade-window.final .items li.ui-draggable {
    background: #351c1c;
}

.inventory .trade-window .window {
    width: calc(50% - 20px);
    padding: 5px;
    margin: 5px;
    min-height: 150px;
    display: inline-block;
    float: left;
}

.inventory .trade-window .window-1 {
    float: right;
}

.inventory .trade-window .window-1 .action {
    background-color: rgba(25, 25, 25, 0.95);
    -webkit-animation-name: inv_act; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 7s; /* Chrome, Safari, Opera */
    animation-name: inv_act;
    animation-duration: 7s;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes inv_act {
    from {background-color: rgba(152, 131, 0, 0.95);}
    to {background-color: rgba(25, 25, 25, 0.95);}
}

/* Standard syntax */
@keyframes inv_act {
    from {background-color: rgba(152, 131, 0, 0.95);}
    to {background-color: rgba(25, 25, 25, 0.95);}
}

.inventory .trade-window .window .head {
    width: calc(100% - 15px);
    line-height: 42px;
    color: #c7c7c7;
    font-size: 17px;
    padding-left: 12px;
}

.inventory .trade-window .window .head div {
    font-weight: 700;
    color: #a78800;
    padding-left: 15px;
    display: inline-block;
}

.inventory .trade-window .window .items {
    clear: both;
}

.inventory .trade-window .window li {
    margin: 2px;
    padding: 5px;
    width: calc(100% / 4 - 16px);
}

.inventory .trade-window .window .confirm {
    line-height: 40px;
    color: #e0e0e0;
    text-align: center;
    clear: both;
}

.inventory .trade-window .window-2 {
    float: left;
}

.inventory .trade-window .window-2 .confirm {
    background: rgb(60, 60, 60);
    border: 1px solid #b7b7b7;
    margin: 2px;
    /*width: calc(100% - 4px);*/
    float: left;
    width: calc(100% - 64px);
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: inset rgba(0, 0, 0, 0.5) 0 0 15px;
    clear: both;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: width 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.inventory .trade-window .window-2 .confirm.disabled {
    background: rgba(255, 31, 31, 0.74);
}

.inventory .trade-window .window-2 .confirm:hover {
    background: rgb(0, 139, 43);
}

.inventory .trade-window .window-2 .confirm.disabled:hover {
    background: rgba(255, 31, 31, 0.74);
}

.inventory .trade-window .window-2 .confirm.call {
    background: #232323;
    border: 1px solid #008c00;
    color: #9c9c9c;
}

.inventory .trade-window .window-2 .confirm.wait {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blinker;
    -moz-animation-duration: 1.5s;
    -moz-animation-timing-function: ease-out;
    -moz-animation-iteration-count: infinite;
    animation-name: blinker;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    background: rgb(0, 139, 43);
}

.inventory .trade-window .window-2 .cancel {
    background: rgb(188, 13, 0);
    border: 1px solid #909090;
    margin: 2px;
    width: 48px;
    line-height: 40px;
    color: #e0e0e0;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: inset rgba(0, 0, 0, 0.5) 0 0 15px;
    /* clear: both; */
    float: right;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: width 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.inventory .trade-window .window-2 .cancel:hover {
    background: rgb(236, 13, 0);
}

#fade-inventory {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.80;
    filter: alpha(opacity=80);
    z-index: 90;
}

.inventory [class^="icon-"], [class*=" icon-"] {
    display: block;
    margin-top: 0;
}

.inventory .combo-info {
    margin: 10px 0;
    right: 0;
    float: right;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid #828282;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: inset rgba(255,255,255,.2) 0 0 20px;
    text-align: center;
    left: 50%;
    min-width: 100px;
    max-width: 1100px;
    width: calc(100% - 170px);
    transform: translateX(-50%);
    padding: 50px;
    position: fixed;
    height: calc(100% - 170px);
    z-index: 91;
    overflow-y: scroll;
    top: 45px;
    display: none;
}

.inventory .combo-info .recycle {

}

.inventory .combo-info .recycle img {
    height: 100px;
}

.inventory .combo-info .recycle img:nth-child(4) {
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.inventory .combo-info .recycle .label {
    margin: 13px auto;
    font-size: 22px;
}

.inventory .combo-info .recycle .label span {
    font-weight: bold;
    color: #3fff00;
}

.inventory .combo-info .recycle input[type=range] {
    -webkit-appearance: none;
    width: 80%;
    max-width: 400px;
    margin: 7px auto;
    display: block;
    background: none;
}
.inventory .combo-info .recycle input[type=range]:focus {
    outline: none;
}
.inventory .combo-info .recycle input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 15px;
    cursor: pointer;
    background: rgba(103, 127, 0, 0.84);
    border-radius: 25px;
    border: 0 solid rgba(0, 0, 0, 0);
}
.inventory .combo-info .recycle input[type=range]::-webkit-slider-thumb {
    height: 26px;
    width: 26px;
    border-radius: 7px;
    background: rgba(74, 190, 0, 0.98);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -6.55px;
}
.inventory .combo-info .recycle input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(103, 127, 0, 0.84);
}

.inventory .combo-info .recycle #recycle-input {
    margin: 0 auto;
    width: 75%;
    max-width: 300px;
    margin-top: 5px;
}

.inventory .combo-info .recycle p {
    text-shadow: 1px 1px #000000;
}

.inventory .combo-info .recycle .scraps-list h2 {
    color: #e1e500;
    font-weight: 500;
    font-size: 17px;
    margin-top: 10px;
}

.inventory .combo-info .recycle .scraps-list img {
    height: 30px;
    vertical-align: middle;
}

.inventory .combo-info .recycle .scraps-list table {
    width: calc(90% - 20px);
    margin: 0 10px 0 10px;
    table-layout:fixed;
    color: #bdbdbd;
}

.inventory .combo-info .recycle .scraps-list table td {
    width: calc(50% - 20px);
    text-align: right;
    padding: 0 10px;
}

.inventory .combo-info .recycle .scraps-list table td.col2 {
    text-align: left;
}

.inventory .combo-info .recycle .scraps-list table span {
    font-weight: bold;
    color: #fffd00;
}

.inventory .combo-info .recycle .scraps-list p {
    color: #6a6a6a;
}

.inventory .combo-info .recycle .button {
    padding: 6px 30px;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgb(255 255 255 / 20%), 0 1px 2px rgb(0 0 0 / 5%);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 20%), 0 1px 2px rgb(0 0 0 / 5%);
    width: 200px;
    max-width: 80%;
    display: block;
    margin: 18px auto;
    border: 1px solid #fff;
    background: #0cab00;
    color: #dfdfdf;
}

.inventory .combo-info .recycle .button:hover {
    background: #0cc400;
}

.inventory .combo-info .settings {
    text-align: left;
    padding: 0 30px;
}

.inventory .combo-info .settings a {
    color: #08c;
}

.inventory .combo-info .settings a:hover {
    text-decoration: underline;
}

.inventory .combo-info .settings h2 {
    color: #139700;
    font-size: 18px;
    text-align: center;
}

.inventory .combo-info .settings p {
    color: #b4b3b5;
    font-size: 15px;
    margin: 20px 10px 5px 0;
}

.inventory .combo-info .settings .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.inventory .combo-info .settings .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.inventory .combo-info .settings .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.inventory .combo-info .settings .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.inventory .combo-info .settings input:checked + .slider {
    background-color: #2196F3;
}

.inventory .combo-info .settings input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.inventory .combo-info .settings input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.inventory .combo-info .settings #volume-msg {
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    font-size: 15px;
    padding: 10px 0;
    width: 400px;
    max-width: 60%;
}

/* slider */
.inventory .combo-info .settings input[type=range] {
    -webkit-appearance: none;
    width: 400px;
    margin: 10px 0;
    display: block;
    max-width: 60%;
}
.inventory .combo-info .settings input[type=range]:focus {
    outline: none;
}
.inventory .combo-info .settings input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 12.9px;
    cursor: pointer;
    box-shadow: 0px 0px 1.3px #000000, 0px 0px 0px #0d0d0d;
    background: rgba(119, 120, 116, 0.3);
    border-radius: 25px;
    border: 0px solid rgba(0, 0, 0, 0);
}
.inventory .combo-info .settings input[type=range]::-webkit-slider-thumb {
    box-shadow: 0.9px 0.9px 1px #000031, 0px 0px 0.9px #00004b;
    border: 0px solid #9896ff;
    height: 26px;
    width: 26px;
    border-radius: 7px;
    background: rgba(184, 189, 190, 0.95);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -6.55px;
}
.inventory .combo-info .settings input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(132, 133, 129, 0.78);
}
.inventory .combo-info .settings input[type=range]::-moz-range-track {
    width: 100%;
    height: 12.9px;
    cursor: pointer;
    box-shadow: 0px 0px 1.3px #000000, 0px 0px 0px #0d0d0d;
    background: rgba(119, 120, 116, 0.78);
    border-radius: 25px;
    border: 0px solid rgba(0, 0, 0, 0);
}
.inventory .combo-info .settings input[type=range]::-moz-range-thumb {
    box-shadow: 0.9px 0.9px 1px #000031, 0px 0px 0.9px #00004b;
    border: 0px solid #9896ff;
    height: 26px;
    width: 26px;
    border-radius: 7px;
    background: rgba(184, 189, 190, 0.7);
    cursor: pointer;
}
.inventory .combo-info .settings input[type=range]::-ms-track {
    width: 100%;
    height: 12.9px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
.inventory .combo-info .settings input[type=range]::-ms-fill-lower {
    background: rgba(106, 107, 103, 0.78);
    border: 0px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    box-shadow: 0px 0px 1.3px #000000, 0px 0px 0px #0d0d0d;
}
.inventory .combo-info .settings input[type=range]::-ms-fill-upper {
    background: rgba(119, 120, 116, 0.78);
    border: 0px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    box-shadow: 0px 0px 1.3px #000000, 0px 0px 0px #0d0d0d;
}
.inventory .combo-info .settings input[type=range]::-ms-thumb {
    box-shadow: 0.9px 0.9px 1px #000031, 0px 0px 0.9px #00004b;
    border: 0px solid #9896ff;
    height: 26px;
    width: 26px;
    border-radius: 7px;
    background: rgba(184, 189, 190, 0.7);
    cursor: pointer;
    height: 12.9px;
}
.inventory .combo-info .settings input[type=range]:focus::-ms-fill-lower {
    background: rgba(119, 120, 116, 0.78);
}
.inventory .combo-info .settings input[type=range]:focus::-ms-fill-upper {
    background: rgba(132, 133, 129, 0.78);
}

.inventory .combo-info .users-list .user {
    display: block;
    overflow: hidden;
    border-top: 1px solid #2b2b2b;
    box-shadow: inset rgba(5,5,5,.8) 0 0 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: width 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: calc(100% / 3);
    float: left;
    cursor: default;
}

.inventory .combo-info .users-list .user:hover {
    background: rgb(30, 30, 30);
}

.inventory .combo-info .users-list .user:last-child {
    border-bottom: 1px solid #2b2b2b;
}

.inventory .combo-info .users-list .user .left {
    float: left;
    width: 80px;
    height: 80px;
    position: relative;
    margin: 15px 15px;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid #2b2b2b;
    box-shadow: inset rgba(5,5,5,.8) 0 0 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.inventory .combo-info .users-list .user .left img {
    max-height: calc(100% - 2px);
    max-width: calc(100% - 2px);
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.inventory .combo-info .users-list .user .right {
    float: right;
    width: calc(100% - 130px);
    display: block;
    padding: 10px 15px 10px 0;
    text-align: left;
}

.inventory .combo-info .users-list .user .right .label {
    font-size: 17px;
    color: #f8f8ff;
    font-weight: 700;
    line-height: 17px;
    padding: 0 5px 0 5px;
    overflow: hidden;
    display: inline-grid;
    max-height: 17px;
}

.inventory .combo-info .users-list .user .right .label:hover {
    text-decoration: underline;
}

.inventory .combo-info .users-list .user .right .desc {
    font-size: 14px;
    color: #d0ba00;
}

.inventory .combo-info .users-list .user .right .desc div {
    margin-left: 4px;
    color: white;
    display: inline-block;
}

.inventory .combo-info .users-list .user .right .desc div .rank{
    font-weight: bold;
    text-decoration: underline;
    border: 1px solid #dcdcdc;
    padding: 1px 5px;
}

.inventory .combo-info .users-list .user .right .desc div .plus {
    color: green;
}

.inventory .combo-info .users-list .user .right .desc div .minus {
    color: red;
}

.inventory .combo-info .users-list .user .right .desc div .neutral {
    color: grey;
}

.inventory .combo-info .users-list .user .right .buttons {
    margin-top: 5px;
}

.inventory .combo-info .users-list .user .right .buttons .button.message {
    background: black url(../img/pm-large.png) no-repeat;
    background-size: auto 100%;
    background-position: center -3px;
    border: 1px solid #00b8ff;
}

.inventory .combo-info .users-list .user .right .buttons .button.message:hover {
    background: #003f56 url(../img/pm-large.png) no-repeat;
    background-size: auto 100%;
    background-position: center -3px;
}

.inventory .combo-info .users-list .user .right .buttons .button.bag {
    background: white url(https://www.freeiconspng.com/uploads/backpack-school-bag-icon-14.png) no-repeat;
    background-size: auto 85%;
    background-position: center 2px;
    border: 1px solid #00b8ff;
    filter: invert(1);
}

.inventory .combo-info .users-list .user .right .buttons .button.bag:hover {
    background: rgba(0, 138, 179, 0.27) url(https://www.freeiconspng.com/uploads/backpack-school-bag-icon-14.png) no-repeat;
    background-size: auto 85%;
    background-position: center 2px;
    border: 1px solid #00b8ff;
    filter: invert(1);
}

.inventory .combo-info .users-list .user .right .buttons .button.trade {
    background: black url(../img/exchange.png) no-repeat;
    background-size: auto 100%;
    background-position: center;
    border: 1px solid #3bc700;
}

.inventory .combo-info .users-list .user .right .buttons .button.trade:hover {
    background: #004a02 url(../img/exchange.png) no-repeat;
    background-size: auto 100%;
    background-position: center;
}

.inventory .combo-info .users-list .user .right .buttons .button {
    float: left;
    width: calc(100%/3 - 50px);
    height: 37px;
    max-width: 100px;
    display: block;
    padding: 5px 20px;
    border: 1px solid #738000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-right: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: width 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.inventory .combo-info .users-list .user .right .buttons .button:last-child {
    margin-right: 0;
}

/*.inventory .combo-info .users-list .user .right .buttons .button:hover {
    box-shadow: inset rgba(236, 217, 0, 0.6) 0 0 30px;
}*/

/*.inventory .combo-info .users-list .user .right .desc.link {
    color: #0075ff;
    cursor: pointer;
}

.inventory .combo-info .users-list .user .right .desc.link:hover {
    text-decoration: underline;
    color: #00abff;
}*/

.inventory .combo-info .items-list .item {
    display: block;
    border-top: 1px solid #2b2b2b;
    box-shadow: inset rgba(5,5,5,.8) 0 0 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: width 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 50%;
    float: left;
    height: 160px;
}

.inventory .combo-info .items-list .item:hover {
    background: rgb(30, 30, 30);
}

.inventory .combo-info .items-list .item:last-child {
    border-bottom: 1px solid #2b2b2b;
}

.inventory .combo-info .items-list .item .left {
    float: left;
    width: 160px;
    height: 128px;
    position: relative;
    margin: 15px;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid #2b2b2b;
    box-shadow: inset rgba(5,5,5,.8) 0 0 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.inventory .combo-info .items-list .item.artefact .left {
    border: 1px solid #ffd400;
    box-shadow: inset rgb(255, 0, 59) 0 0 30px;
    color: #fff900;
}

.inventory .combo-info .items-list .item.orb .left {
    border: 1px solid #00e7ff;
    color: #18bdff;
    box-shadow: inset rgb(0, 124, 197) 0 0 10px;
}

.inventory .combo-info .items-list .item.rare .left {
    border: 1px solid #fff700;
    color: #a3e22d;
    box-shadow: inset rgba(244, 255, 0, 0.4) 0 0 25px;
}

.inventory .combo-info .items-list .item:hover .left {
    background: rgba(53, 53, 53, 0.9);
}

.inventory .combo-info .items-list .item .left img {
    max-height: calc(100% - 2px);
    max-width: calc(100% - 2px);
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.inventory .combo-info .items-list .item .right {
    float: right;
    width: calc(100% - 222px);
    display: block;
    padding: 10px 15px;
    text-align: left;
    max-height: 118px;
    overflow: hidden;
}

.inventory .combo-info .items-list .item:hover .right {
    max-height: inherit;
    overflow: auto;
    z-index: 10;
    background: #1d1d1d;
    position: relative;
}

.inventory .combo-info .items-list .item .right .label {
    font-size: 22px;
    color: #f8f8ff;
    font-weight: bold;
    padding: 10px 0 3px 0;
}

.inventory .combo-info .items-list .item .right .groups {
    font-size: 13px;
    color: #fffb3a;
    margin: 5px 0;
}

.inventory .combo-info .items-list .item .right .desc {
    font-size: 15px;
    color: #afadad;
    position: relative;
}

.inventory .combo-info .items-list hr {
    height: 2px;
    border-width: 0;
    color: gray;
    background-color: gray;
    display: block;
    width: 100%;
}

.inventory .combo-info .merchant-list {
    overflow: hidden;
}

.inventory .combo-info .merchant-list .info {
    display: block;
    color: #a1a1a1;
    margin: 10px;
    padding: 0 50px;
    font-size: 13px;
}

.inventory .combo-info .merchant-list .buttons {
    margin: 0 auto;
}

.inventory .combo-info .merchant-list .buttons .choice {
    display: inline-block;
    padding: 10px 40px;
    margin: 10px;
    border: 1px solid #352a00;
    background: #504500;
    color: #a7a7a7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.inventory .combo-info .merchant-list .buttons .choice:hover {
    background: #5e5300;
}

.inventory .combo-info .merchant-list .buttons .choice.active {
    background: #776c00;
    color: #bbbbbb;
}

.inventory .combo-info .merchant-list .buttons .choice.active:hover {
    background: #908500;
    color: #dcdcdc;
}

.inventory .combo-info .merchant-list .user-inventory {
    width: calc(100% - 42px);
    overflow: hidden;
    border: 1px solid #5b2200;
    margin: 10px 0;
    padding: 20px;
    background: url(https://img.freepik.com/free-photo/3d-curved-wooded-presentation-background_1048-7587.jpg?size=626&ext=jpg);
    background-size: cover;
    background-position: center bottom -90px;
}

.inventory .combo-info .merchant-list .user-inventory .empty-text {
    text-align: center;
    cursor: default;
    color: white;
    margin: 30px 10px;
    display: block;
}

.inventory .combo-info .merchant-list .user-inventory .warning-text {
    text-align: center;
    cursor: default;
    color: #ffd0d0;
    border: 1px solid #c70000;
    display: block;
    width: calc(100% - 40px);
    overflow: hidden;
    background: #5a0000a6;
    padding: 20px;
}

.inventory .combo-info .merchant-list .user-inventory h2 {
    width: calc(100% - 34px);
    background: #3a2600;
    border: 1px solid #131313;
    padding: 12px 17px;
    font-size: 15px;
    font-weight: bolder;
    color: #bebebe;
    text-align: left;
    cursor: default;
}

.inventory .combo-info .merchant-list .user-inventory h2 span {
    float: right;
}

.inventory .combo-info .merchant-list .user-inventory > div {
    width: calc(100%/8 - 24px);
    cursor: pointer;
    background: rgba(35, 35, 35, 0.95);
    margin: 6px;
    padding: 5px;
    float: left;
    display: block;
    height: 140px;
    font-size: 13px;
    background: rgba(25, 25, 25, 0.65);
    border: 1px solid #4a4a4a;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: inset rgba(255,255,255,.2) 0 0 20px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    color: #d6d6d6;
    -webkit-animation: pop-in 0.5s;
    -moz-animation: pop-in 0.5s;
    -ms-animation: pop-in 0.5s;
}

.inventory .combo-info .merchant-list .user-inventory .mkt-action, .inventory .combo-info .merchant-list .user-sale-items .mkt-action {
    -webkit-animation-name: inv_act_yellow;
    -webkit-animation-duration: 1.0s;
    animation-name: inv_act_yellow;
    animation-duration: 1.0s;
}

.inventory .combo-info .merchant-list .user-inventory > div.action {
    background-color: rgba(255, 255, 255, 0);
    -webkit-animation-name: inv_act_green;
    -webkit-animation-duration: 0.5s;
    animation-name: inv_act_green;
    animation-duration: 0.5s;
}

.inventory .combo-info .merchant-list .user-inventory > div:hover {
    background: rgba(45, 45, 45, 0.95);
}

.inventory .combo-info .merchant-list .user-inventory > div img {
    height: 57px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.inventory .combo-info .merchant-list .user-inventory > div .label {
    text-shadow: 1px 1px 1px #000;
}

.inventory .combo-info .merchant-list .user-inventory > div .desc span {
    color: yellow;
}

.inventory .combo-info .merchant-list .user-inventory > div .sum span {
    color: green;
}

.inventory .combo-info .merchant-list .user-sale-items {
width: calc(100% - 2px);
    overflow: hidden;
    border: 1px solid #555555;
    margin: 10px 0;
    background: #362500;
    background: url(https://www.bowlero.com/sites/bowlero/files/styles/sm_responsive/public/Bowlero_CenterHero_Bg_1800x980.jpg?itok=OQDPhHxx);
    background-size: 100%;
}    

.inventory .combo-info .merchant-list .user-sale-items h2 {
    width: 100%;
    background: #2a2a2a;
    padding: 12px 17px;
    font-size: 15px;
    font-weight: bolder;
    color: #bebebe;
    text-align: left;
}

.inventory .combo-info .merchant-list .user-sale-items > div {
    width: calc(100%/8 - 16px);
    cursor: pointer;
    background: rgba(35, 35, 35, 0.95);
    margin: 2px;
    padding: 5px;
    float: left;
    display: block;
    height: 128px;
    font-size: 13px;
    background: rgba(44, 44, 44, 0.57);
    border: 1px solid #232323;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: inset rgba(255,255,255,.2) 0 0 20px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    color: #d6d6d6;
    -webkit-animation: pop-in 0.5s;
    -moz-animation: pop-in 0.5s;
    -ms-animation: pop-in 0.5s;
}

.inventory .combo-info .merchant-list .user-sale-items > div.owner {
    background: rgb(82 53 0 / 92%);
}

.inventory .combo-info .merchant-list .user-sale-items > div.owner:hover {
    background: rgb(122 79 0 / 92%);
}

.inventory .combo-info .merchant-list .user-sale-items > div:hover {
    background: rgba(45, 45, 45, 0.95);
}

.inventory .combo-info .merchant-list .user-sale-items > div.artefact, .inventory .combo-info .merchant-list .user-inventory > div.artefact{
    border: 1px solid #ffd400;
    box-shadow: inset rgb(255, 0, 59) 0 0 30px;
    color: #fff900;
}

.inventory .combo-info .merchant-list .user-sale-items > div.orb, .inventory .combo-info .merchant-list .user-inventory > div.orb{
    border: 1px solid #00e7ff;
    color: #18bdff;
    box-shadow: inset rgb(0, 124, 197) 0 0 10px;
}

.inventory .combo-info .merchant-list .user-sale-items > div.rare, .inventory .combo-info .merchant-list .user-inventory > div.rare{
    border: 1px solid #fff700;
    color: #a3e22d;
    box-shadow: inset rgba(244, 255, 0, 0.4) 0 0 25px;
}

.inventory .combo-info .merchant-list .user-inventory > div.old {
    color: #f4ffec;
    border: 1px solid #a4a4a4;
    background: #ff0000bf;
}

.inventory .combo-info .merchant-list .user-sale-items > div img {
    height: 57px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.inventory .combo-info .merchant-list .user-sale-items > div .label {
    text-shadow: 1px 1px 1px #000;
}

.inventory .combo-info .merchant-list .user-sale-items > div .desc {

}

.inventory .combo-info .merchant-list .user-sale-items > div .desc span {
    color: yellow;
}

.inventory .combo-info .merchant-list .user-sale-items > div .sum span {
    color: green;
}

.inventory .combo-info .merchant-list .item {
    display: block;
    overflow: hidden;
    border-top: 1px solid #2b2b2b;
    box-shadow: inset rgba(5,5,5,.8) 0 0 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: calc(100% / 3);
    float: left;
    cursor: pointer;
}

.inventory .combo-info .merchant-list .logo {
    display: block;
    height: 250px;
    max-width: 80%;
    margin: 0 auto 10px auto;
}

.inventory .combo-info .merchant-list .item:hover {
    background: rgb(80, 69, 0) !important;
}

.inventory .combo-info .merchant-list .item:last-child {
    border-bottom: 1px solid #2b2b2b;
}

.inventory .combo-info .merchant-list .item .left {
    float: left;
    width: 80px;
    height: 64px;
    position: relative;
    margin: 15px;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid #2b2b2b;
    box-shadow: inset rgba(5,5,5,.8) 0 0 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.inventory .combo-info .merchant-list .item.artefact .left {
    border: 1px solid #ffd400;
    box-shadow: inset rgb(255, 0, 59) 0 0 30px;
    color: #fff900;
}

.inventory .combo-info .merchant-list .item.orb .left {
    border: 1px solid #00e7ff;
    color: #18bdff;
    box-shadow: inset rgb(0, 124, 197) 0 0 10px;
}

.inventory .combo-info .merchant-list .item.rare .left {
    border: 1px solid #fff700;
    color: #a3e22d;
    box-shadow: inset rgba(244, 255, 0, 0.4) 0 0 25px;
}

.inventory .combo-info .merchant-list .item:hover .left {
    background: rgba(53, 53, 53, 0.9);
}

.inventory .combo-info .merchant-list .item .left img {
    max-height: calc(100% - 2px);
    max-width: calc(100% - 2px);
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.inventory .combo-info .merchant-list .item .right {
    float: right;
    width: calc(100% - 142px);
    display: block;
    padding: 10px 15px;
    text-align: left;
}

.inventory .combo-info .merchant-list .item .right .label {
    font-size: 17px;
    line-height: 16px;
    color: #a5a100;
    font-weight: 700;
    padding: 10px 0 3px 0;
}

.inventory .combo-info .merchant-list .item .right .groups {
    font-size: 13px;
    color: #fffb3a;
    margin: 5px 0;
}

.inventory .combo-info .merchant-list .item .right .desc {
    font-size: 15px;
    color: #afadad;
}

.inventory .combo-info .merchant-list .item.action-red {
    background-color: rgba(255, 255, 255, 0);
    -webkit-animation-name: inv_act_red;
    -webkit-animation-duration: 0.5s;
    animation-name: inv_act_red;
    animation-duration: 0.5s;
}

.inventory .combo-info .merchant-list .item.action-green {
    background-color: rgba(255, 255, 255, 0);
    -webkit-animation-name: inv_act_green;
    -webkit-animation-duration: 0.5s;
    animation-name: inv_act_green;
    animation-duration: 0.5s;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes inv_act_red {
    from {background-color: rgba(255, 10, 0, 0.5);}
    to {background-color: rgba(25, 25, 25, 0.95);}
}

/* Standard syntax */
@keyframes inv_act_red {
    from {background-color: rgba(255, 10, 0, 0.51);}
    to {background-color: rgba(25, 25, 25, 0.95);}
}

@-webkit-keyframes inv_act_yellow {
    from {background-color: rgba(243, 178, 114, 0.5);}
    to {background-color: rgba(25, 25, 25, 0.95);}
}

/* Standard syntax */
@keyframes inv_act_yellow {
    from {background-color: rgba(243, 178, 114, 0.5);}
    to {background-color: rgba(25, 25, 25, 0.95);}
}

/* Chrome, Safari, Opera */
@-webkit-keyframes inv_act_green {
    from {background-color: rgba(17, 255, 0, 0.51);}
    to {background-color: rgba(25, 25, 25, 0.95);}
}

/* Standard syntax */
@keyframes inv_act_green {
    from {background-color: rgba(17, 255, 0, 0.51);}
    to {background-color: rgba(25, 25, 25, 0.95);}
}

.inventory .combo-info .crafting img.picture {
    height: 200px;
    width: auto;
    border: 3px solid #ffef00;
    box-shadow: rgba(255, 250, 0, 1) 0 -6px 20px;
    background: black;
}

.inventory .combo-info .crafting .label {
    color: #cdcdcd;
    font-size: 16px;
    border: 1px solid rgb(187, 187, 187);
    padding: 10px 30px;
    width: fit-content;
    background: #3c3c3c;
    display: block;
    margin: 3px auto;
}

.inventory .combo-info .crafting {
    border: 1px solid rgb(163, 163, 163);
    padding: 20px;
    background: #1f1f1f;
}

.inventory .combo-info.combined .picture {
    max-height: 300px;
    max-width: 400px;
    width: auto;
    height: auto;
    margin: 10px auto;
    /*transition: all 2.5s ease;*/
    -webkit-animation: pop-in 2.0s;
    -moz-animation: pop-in 2.0s;
    -ms-animation: pop-in 2.0s;
}

.inventory .combo-info.combined .ray_box {
    height: auto;
    position: relative;
    margin: auto;
    top: 200px;
    z-index: -10;
    left: 0;
    right: 0;
    bottom: 0;
    width: 140px;
    -webkit-animation: ray_anim 6s linear infinite;
    animation: ray_anim 6s linear infinite;
}
.inventory .combo-info.combined .ray_box .ray {
    margin-left:10px;
    border-radius:100% 100% 0 0;
    position:absolute;
}
.inventory .combo-info.combined .ray_box.artefact .ray {
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.1) 0%, rgb(251 0 255) 50%, rgba(255,255,50,0.1) 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    opacity:0.35;
}
.inventory .combo-info.combined .ray_box.good .ray {
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.1) 0%, rgb(255 235 0) 50%, rgba(255,255,50,0.1) 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    opacity:0.25;
}
.inventory .combo-info.combined .ray_box .ray1 {
    height: 207px;
    width: 30px;
    -webkit-transform: rotate(180deg);
    top: -213px;
    left: 44px;
}
.inventory .combo-info.combined .ray_box .ray2 {
    height: 143px;
    width: 8px;
    -webkit-transform: rotate(220deg);
    top: -156px;
    left: 129px;
}
.inventory .combo-info.combined .ray_box .ray3 {
    height: 197px;
    width: 50px;
    -webkit-transform: rotate(250deg);
    top: -137px;
    left: 141px;
}
.inventory .combo-info.combined .ray_box .ray4 {
    height: 181px;
    width: 14px;
    -webkit-transform: rotate(305deg);
    top: -16px;
    left: 164px;
}
.inventory .combo-info.combined .ray_box .ray5 {
    height: 183px;
    width: 30px;
    -webkit-transform: rotate(-15deg);
    top: 20px;
    left: 80px;
}
.inventory .combo-info.combined .ray_box .ray6 {
    height: 158px;
    width: 50px;
    -webkit-transform: rotate(30deg);
    top: 41px;
    left: -18px;
}
.inventory .combo-info.combined .ray_box .ray7 {
    height: 217px;
    width: 10px;
    -webkit-transform: rotate(70deg);
    top: -46px;
    left: -49px;
}
.inventory .combo-info.combined .ray_box .ray8 {
    height: 201px;
    width: 30px;
    -webkit-transform: rotate(100deg);
    top: -105px;
    left: -77px;
}
.inventory .combo-info.combined .ray_box .ray9 {
    height: 142px;
    width: 10px;
    -webkit-transform: rotate(120deg);
    top: -124px;
    left: -54px;
}
.inventory .combo-info.combined .ray_box .ray10 {
    height: 190px;
    width: 23px;
    -webkit-transform: rotate(150deg);
    top: -182px;
    left: -11px;
}

.inventory .combo-info.combined .label {
    font-size: 32px;
    color: #f8f8ff;
    font-weight: bold;
    margin: 10px 0;
}

.inventory .combo-info.combined .groups {
    font-size: 13px;
    color: #fffb3a;
    margin: 5px 0;
}

.inventory .combo-info.combined .combos {
    margin-top: 6px;
}

.inventory .combo-info.combined .combos .combo-list {
    border: 1px solid #5a5a5a;
    padding: 5px 5px 5px 10px;
    margin: 10px 0;
}

.inventory .combo-info.combined .combos .combo-items-title {
    font-size: 15px;

    color: #ffce0d;
    margin: 8px 0 5px 0;
}

.inventory .combo-info.combined .combos .combo-list .combo-title {
    color: #d8d8d8;
    font-size: 15px;
}

.inventory .combo-info.combined .combos .combo-list .combo-items {
    color: #00a907;
    font-size: 14px;
}

.inventory .combo-info.combined .combos .combo-list .combo-item {
    font-weight: bold;
}

.inventory .combo-info.combined .combos .combo-list .combo-desc {
    font-size: 13px;
    color: #b9b9b9;
    margin: 5px 0;
}

.inventory .combo-info.combined .description {
    font-size: 16px;
    color: #afadad;
    padding: 0 40px;
}

.inventory .combo-info.combined .button {
    padding: 6px 30px;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
    width: 200px;
    max-width: 80%;
    display: block;
    margin: 30px auto;
    border: 1px solid #ffffff;
    background: #0cab00;
    color: #dfdfdf;
}

.inventory .combo-info.combined .button-active:hover {
    background: #0cc400;
}

.inventory .combo-info.combined .button.return {
    background: #006fab;
}

.inventory .combo-info.combined .button.return:hover {
    background: #0080ab;
}

.inventory .combo-info.combined .button.auto-repeat {
    background: #ab0085;
}

.inventory .combo-info.combined .button.auto-repeat:hover {
    background: #cd00a7;
}

/*.inventory .combo-info.combined .item-info {
    margin: 0 auto;
    width: inherit;
}*/

.inventory .combo-info video {
    border: 2px solid lime;
    box-shadow: rgb(37, 255, 0) 0 0 80px;
    width: 100%;
    height: auto;
}

.inventory .combo-info .crafting-item {
    padding: 25px;
    color: white;
    font-size: 23px;
}

.inventory .combo-info .crafting-item span {
    color: #02ff00;
}

.inventory .combo-info .exit {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4438;
    border: 1px solid #ED0000;
    padding: 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.inventory .combo-info .exit:hover {
    background: #ff6154;
}

.inventory .combo-info .combo-list {
    border: 1px solid #5a5a5a;
    padding-bottom: 20px;
    margin-bottom: 50px;
    background: rgba(39, 39, 39, 0.6);
}

.inventory .combo-info .combo-items-title {
    font-size: 17px;
    color: #ffce0d;
    margin: 8px 0;
    font-weight: bold;
}

.inventory .combo-info .combo-list .combo-title {
    color: #c3c3c3;
    font-size: 16px;
    padding: 10px 15px;
    font-weight: bold;
    text-align: left;
    background: rgba(50, 50, 50, 0.8);
    text-shadow: 2px 2px 3px #000;
}

.inventory .combo-info .combo-list .combo-items {
    color: #d9ded6;
    font-size: 14px;
    /*  border: 1px solid #616161;  */
    clear: both;
    overflow: hidden;
    /*  background: rgba(39, 39, 39, 0.7);  */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 10px 0;
}

.inventory .combo-info .combo-list .combo-item {
    font-weight: bold;
    max-width: calc(40% - 30px);
    width: 130px;
    height: 130px;
    display: block;
    float: left;
    border: 2px solid #5a5a5a;
    margin: 10px;
    padding: 10px;
    box-shadow: rgb(82, 82, 82) 0 0 20px;
    background: #1d1d1d;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    min-height: 122px;
    cursor: pointer;
    position: relative;
}

.inventory .combo-info .compact .combo-list .combo-item {
    height: 20px;
    min-height: 22px;
}

.inventory .combo-info .combo-list .combo-item .quickbuy {
    background: #00ab35;
    border: 1px solid #00ff37;
    line-height: 50px;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    position: absolute;
    margin-top: -12px;
    margin-right: -13px;
}

.inventory .combo-info .combo-list .combo-item .quickbuy:hover {
    background: #00d338;
}

.inventory .combo-info .combo-list .combo-item .quicksell {
    background: #0070ab;
    border: 1px solid #00aeff;
    line-height: 50px;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    position: absolute;
    margin-top: -12px;
    margin-left: -13px;
}

.inventory .combo-info .combo-list .combo-item .quicksell:hover {
    background: #008dab;
}

.inventory .combo-info .combo-list .combo-item:hover {
    background: #2e2e2e;
}

.inventory .combo-info .combo-list a .combo-item {
    color: #d9ded6;
}

.inventory .combo-info .combo-list .plus {
    font-size: 50px;
    color: #c3c3c3;
    font-weight: bold;
    float: left;
    height: 174px;
    line-height: 166px;
}

.inventory .combo-info .combo-list .combo-item.owned {
    background: rgba(0, 100, 0, 0.7);
    border: 2px solid lime;
    color: #eaeaea;
    box-shadow: rgb(37, 255, 0) 0 0 10px;
}

.inventory .combo-info .combo-list .combo-item .picture {
    height: auto;
    max-height: 100px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.inventory .combo-info .compact .combo-list .combo-item .picture {
    height: 20px;
    max-height: 20px;
    max-width: 100%;
    display: inline;
    vertical-align: middle;
}

.inventory .combo-info .combo-list .combo-desc {
font-size: 14px;
color: #b9b9b9;
margin: 10px 0;
text-align: left;
padding: 5px 15px;
}

.inventory .combo-info .combo-list .combo-desc a {
cursor: pointer;
color: #b9b9b9;
}

.inventory .combo-info .combo-list .combo-desc a:hover {
text-decoration: underline;
}

.inventory .combo-info .combo-list .combo-desc img {
height: 30px;
width: auto;
margin-right: 10px;
vertical-align: middle;
margin-top: 3px;
}

.inventory .combo-info .combo-list .combo-desc .chance {
color: #767676;
font-size: 11px;
}

.inventory .combo-info .combo-list .combo-desc .artefact {
color: #e12800;
}

.inventory .combo-info .combo-list .combo-desc .orb {
color: #00acff;
}

.inventory .combo-info .combo-list .combo-desc .rare {
color: #d9e201;
}

.inventory .combo-info .combo-list .button {
padding: 6px 30px;
font-size: 16px;
line-height: 23px;
text-align: center;
vertical-align: middle;
cursor: pointer;
color: #c7c7c7;
border: 1px solid #cccccc;
background: #1b1b1b;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
width: 200px;
max-width: 80%;
display: block;
margin: 5px auto;
}

.inventory .combo-info .combo-list .button-active {
border: 1px solid #ffffff;
background: #0cab00;
color: #dfdfdf;
}

.inventory .combo-info .combo-list .button-active:hover {
background: #0cc400;
}

.inventory .item-info {
margin: 10px 10px 10px 0;
display: none;
width: 326px;
right: 0;
padding: 10px;
position: relative;
float: right;
background: rgba(5, 5, 5, 0.95);
border: 1px solid #e2e0e0;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
box-shadow: inset rgba(255,255,255,.2) 0 0 20px;
text-align: center;

-webkit-animation:pop-in 0.5s;
-moz-animation:pop-in 0.5s;
-ms-animation:pop-in 0.5s;
}

.inventory .item-info .uprice {
position: absolute;
float: right;
top: 0;
left: 30px;
padding: 15px;
color: grey;
font-size: 14px;
}

.inventory .item-info .uprice .best{
padding: 2px 5px;
margin-left: 5px;
background: #396d00;
color: #c7c7c7;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
cursor: pointer;
}

.inventory .item-info .uprice .best:hover {
background: #649d00;
}

.inventory .item-info .sell {
position: absolute;
top: 14px;
right: 56px;
font-size: 14px;
background: #006cf1 url(../img/inventory/inventory_dollar_lightblue.png) no-repeat center;
background-size: 75%;
border-radius: 8px;
border: 1px solid #42c2ff;
height: 28px;
width: 28px;
display: block;
cursor: pointer;

-webkit-animation-name: blinker;
-webkit-animation-duration: 1.5s;
-webkit-animation-timing-function: ease-out;
-webkit-animation-iteration-count: infinite;

-moz-animation-name: blinker;
-moz-animation-duration: 1.5s;
-moz-animation-timing-function: ease-out;
-moz-animation-iteration-count: infinite;

animation-name: blinker;
animation-duration: 1.5s;
animation-timing-function: ease-out;
animation-iteration-count: infinite;
}

.inventory .item-info .sell:hover {
background: #00c9f1 url(../img/inventory/inventory_dollar_lightblue.png) no-repeat;
background-size: 75%;
background-position: center;
-webkit-animation-name: none;
-moz-animation-name: none;
animation-name: none;
}

.inventory .item-info .bsell {
position: absolute;
top: 14px;
right: 92px;
font-size: 14px;
background: #0056a1;
border-radius: 8px;
border: 1px solid #0078ff;
padding: 3px 5px;
margin-left: 5px;
color: #c7c7c7;
display: block;
cursor: pointer;
}

.inventory .item-info .bsell:hover {
background: #0089f1;
}

.inventory .item-info .mprice {
position: absolute;
top: 6px;
left: 10px;
background: #004e00 url(../img/inventory/inventory_dollar.png) no-repeat;
background-size: 75%;
background-position: center;
border-radius: 8px;
margin: 5px 0;
border: 1px solid #009c00;
height: 28px;
width: 28px;
display: block;
cursor: pointer;
-webkit-animation-name: blinker;
-webkit-animation-duration: 1.5s;
-webkit-animation-timing-function: ease-out;
-webkit-animation-iteration-count: infinite;

-moz-animation-name: blinker;
-moz-animation-duration: 1.5s;
-moz-animation-timing-function: ease-out;
-moz-animation-iteration-count: infinite;

animation-name: blinker;
animation-duration: 1.5s;
animation-timing-function: ease-out;
animation-iteration-count: infinite;
}

.inventory .item-info .mprice:hover {
background: #007200 url(../img/inventory/inventory_dollar.png) no-repeat;
background-size: 75%;
background-position: center;
-webkit-animation-name: none;
-moz-animation-name: none;
animation-name: none;
}

.inventory .item-info.loaded {
display: block;
}

.inventory .item-info .exit {
position: absolute;
top: 5px;
right: 5px;
background: #ff4438;
border: 1px solid #ED0000;
padding: 15px;
cursor: pointer;
display: none;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

.inventory .item-info .exi:hover {
background: #ff6154;
}

.inventory .item-info .picture {
max-width: 90%;
max-height: 300px;
height: auto;
display: block;
margin: 30px auto 10px auto;
}

.inventory .item-info .picture.epic {
-webkit-filter: drop-shadow(0px 0px 5px white) drop-shadow(0px 0px 5px white) drop-shadow(5px 5px 20px purple) drop-shadow(-5px -5px 20px purple);
filter: drop-shadow(0px 0px 5px white) drop-shadow(0px 0px 5px white) drop-shadow(5px 5px 20px purple) drop-shadow(-5px -5px 20px purple);
}

.inventory .item-info .picture.legendary {
-webkit-filter: drop-shadow(5px 5px 10px white) drop-shadow(-5px -5px 10px white) drop-shadow(5px 5px 2px yellow) drop-shadow(5px 5px 45px yellow);
filter: drop-shadow(5px 5px 10px white) drop-shadow(-5px -5px 10px white) drop-shadow(5px 5px 2px yellow) drop-shadow(5px 5px 45px yellow);
}

.inventory .item-info .picture.good {
-webkit-filter: drop-shadow(0px 0px 2px white) drop-shadow(0px 0px 2px white) drop-shadow(5px 5px 10px green) drop-shadow(-5px -5px 15px green);
filter: drop-shadow(0px 0px 2px white) drop-shadow(0px 0px 2px white) drop-shadow(5px 5px 10px green) drop-shadow(-5px -5px 15px green);
}

.inventory .item-info .label {
font-size: 17px;
color: #f8f8ff;
font-weight: bold;
}

.inventory .item-info .groups {
font-size: 13px;
color: #fffb3a;
margin: 5px 0;
}

.inventory .item-info .combos {
margin-top: 6px;
}

.inventory .item-info .combos .combo-list {
border: 1px solid #5a5a5a;
padding: 5px 5px 5px 10px;
margin: 10px 0;
}

.inventory .item-info .combos .combo-items-title {
font-size: 15px;

color: #ffce0d;
margin: 8px 0 5px 0;
}

.inventory .item-info .combos .combo-list .combo-title {
color: #d8d8d8;
font-size: 15px;
}

.inventory .item-info .combos .combo-list .combo-items {
color: #b9b9b9;
font-size: 14px;
}

.inventory .item-info .combos .combo-list .combo-item {
font-weight: bold;
}

.inventory .item-info .combos .combo-list a .combo-item {
cursor: pointer;
color: #00a907;
}

.inventory .item-info .combos .combo-list a:hover .combo-item {
text-decoration: underline;
}

.inventory .item-info .combos .combo-list .combo-desc {
font-size: 13px;
color: #b9b9b9;
margin: 5px 0;
}

.inventory .item-info .combos .combo-list .combo-desc img {
height: 30px;
width: auto;
margin-right: 10px;
vertical-align: middle;
margin-top: 3px;
}

.inventory .item-info .combos .combo-list .combo-desc .artefact {
color: #e12800;
}

.inventory .item-info .combos .combo-list .combo-desc .orb {
color: #00acff;
}

.inventory .item-info .combos .combo-list .combo-desc .rare {
color: #d9e201;
}

.inventory .item-info .combos .combo-list .combo-desc a {
cursor: pointer;
color: #b9b9b9;
}

.inventory .item-info .combos .combo-list .combo-desc a:hover {
text-decoration: underline;
}

.inventory .item-info .buttons {
padding: 3px;
}

.inventory .item-info .buttons .button {
padding: 4px;
font-size: 14px;
line-height: 23px;
text-align: center;
vertical-align: middle;
cursor: pointer;
color: #333333;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
background-color: #f5f5f5;
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
border: 1px solid #cccccc;
border-bottom-color: #b3b3b3;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
margin-bottom: 5px;
}

.inventory .item-info .buttons .button-action {
background: #00a70e;
color: white;
text-shadow: none;
}

.inventory .item-info .buttons .button-action:hover {
background: #00ba0e;
}

.inventory .item-info .buttons .button-warning {
background: rgb(208, 48, 48);
color: #eaeaea;
}

.inventory .item-info .buttons .button-warning:hover {
background: rgb(244, 48, 48);
}

.inventory .item-info .description {
font-size: 14px;
color: #afadad;
margin: 12px 0;
}

.inventory .list-items {
padding: 2px 10px;
float: left;
width: calc(100% - 380px);
min-height: 400px;
}

.inventory .items li {
margin: 2px;
padding: 5px;
float: left;
display: block;
width: calc(100% / 6 - 16px);
height: 95px;
background: rgba(25, 25, 25, 0.95);
border: 1px solid #989696;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
box-shadow: inset rgba(255,255,255,.2) 0 0 20px;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
color: #d6d6d6;

-webkit-animation:pop-in 0.5s;
-moz-animation:pop-in 0.5s;
-ms-animation:pop-in 0.5s;
}

.inventory .items li.ui-draggable {
cursor: pointer;
background: rgba(35, 35, 35, 0.95);
}

.inventory .items li.ui-draggable-dragging {
z-index: 1;
}

.inventory .items li.ui-draggable:hover {
background: rgba(45, 45, 45, 0.95);
}

.inventory .items li.drop {
background: rgba(100, 100, 100, 0.95);
border: 1px solid #939393;
}

.inventory .items li.swap {
background: rgba(20, 70, 20, 0.25) !important;
}

.inventory .items li.artefact {
border: 1px solid #ffd400;
box-shadow: inset rgb(255, 0, 59) 0 0 30px;
color: #fff900;
}

.inventory .items li.orb {
border: 1px solid #00e7ff;
color: #18bdff;
box-shadow: inset rgb(0, 124, 197) 0 0 10px;
}

.inventory .items li.rare {
border: 1px solid #fff700;
color: #a3e22d;
box-shadow: inset rgba(244, 255, 0, 0.4) 0 0 25px;
}

.inventory .items li img {
height: 57px;
width: auto;
max-width: 80px;
margin: 0 auto;
display: block;
user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
}

.inventory .items li img.legendary {
-webkit-filter: drop-shadow(2px 2px 3px yellow) drop-shadow(-2px -2px 3px yellow);
filter: drop-shadow(2px 2px 3px yellow) drop-shadow(-2px -2px 3px yellow);
}

.inventory .items li .label {
text-shadow: 1px 1px 1px #000;
font-size: 13px;
text-align: center;
}

.inventory .items li .desc {
color: #90969b;
font-size: 13px;
text-align: center;
}

.inventory #items-price {
width: calc(100% - 40px);
padding: 7px 20px;
color: #a7a7a7;
background: #262626;
clear: both;
overflow: hidden;
font-size: 14px;
}

.inventory #items-price > span{
font-weight: bold;
color: #a78800;
}

.inventory #items-price div {
float: right;
}

.inventory #items-price div .rank{
font-weight: bold;
text-decoration: underline;
border: 1px solid #dcdcdc;
padding: 1px 5px;
}

.inventory #items-price div .plus {
color: green;
}

.inventory #items-price div .minus {
color: red;
}

.inventory #items-price div .neutral {
color: grey;
}

.inventory.fullscreen .list-items {
width: calc(100% - 20px);
}

.inventory.fullscreen .item-info {
left: 50%;
min-width: 100px;
max-width: 690px;
width: calc(100% - 170px);
transform: translateX(-50%);
padding: 50px 50px 150px 50px;
position: fixed;
height: calc(100% - 250px);
z-index: 90;
overflow-y: scroll;
top: 0;
display: none;
-webkit-animation: none;
-moz-animation: none;
-ms-animation: none;
}

.inventory.fullscreen .item-info.show {
display: block;
}

.inventory.fullscreen .item-info .exit {
display: inline-block;
}

.inventory.fullscreen .list-items li {
width: calc(100% / 12 - 16px);
}

@media( min-width:1400px ) {
.responsive .inventory.fullscreen .list-items li {
    width: calc(100% / 12 - 16px);
}
}

@media( max-width:1400px ) {
.responsive .inventory.fullscreen .list-items li {
    width: calc(100% / 11 - 16px);
}
}

@media( max-width:1300px ) {
.responsive .inventory.fullscreen .list-items li {
    width: calc(100% / 10 - 16px);
}
}

@media( max-width:1150px ) {
.responsive .inventory.fullscreen .list-items li {
    width: calc(100% / 9 - 16px);
}
}

@media( max-width:1000px ) {
.responsive .inventory .list-items li {
    width: calc(100% / 5 - 16px);
}
.responsive .inventory .combo-info .items-list .item {
    width: 100%;
}
.responsive .inventory .combo-info .users-list .user {
    width: 50%;
}
.inventory .combo-info .merchant-list .item {
    width: 50%;
}
.responsive .inventory.fullscreen .list-items li {
    width: calc(100% / 8 - 16px);
}
.responsive .inventory .combo-info .merchant-list .user-inventory > div {
    width: calc(100%/7 - 24px);
}
.responsive .inventory .combo-info .merchant-list .user-sale-items > div {
    width: calc(100%/8 - 16px);
}
}

@media( max-width:960px ) {
    .responsive .inventory .combo-info .merchant-list .user-sale-items > div {
        width: calc(100%/7 - 16px);
    }
}

@media( max-width:900px ) {
.responsive .inventory .list-items li {
    width: calc(100% / 4 - 16px);
}
.responsive .inventory .combo-info .combo-list .plus {
    font-size: 45px;
}
.responsive .inventory .trade-window .window li {
    width: calc(100% / 3 - 16px);
}
.responsive .inventory.fullscreen .list-items li {
    width: calc(100% / 7 - 16px);
}
.responsive .inventory .combo-info .merchant-list .user-inventory > div {
    width: calc(100%/6 - 24px);
}
.responsive .inventory .combo-info .merchant-list .user-sale-items > div {
    width: calc(100%/6 - 16px);
}
}

@media( max-width:800px ) {
.responsive .inventory .item-info .exit {
    display: inline-block;
}
.responsive .inventory .item-info {
    left: 50%;
    min-width: 100px;
    max-width: 690px;
    width: calc(100% - 170px);
    transform: translateX(-50%);
    padding: 50px;
    position: fixed;
    height: calc(100% - 170px);
    z-index: 90;
    overflow-y: scroll;
    top: 45px;
    display: none;
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
}
.responsive .inventory .item-info .picture {
    max-width: 250px;
    width: 90%;
}
.responsive .inventory .list-items {
    width: calc(100% - 20px);
}
.responsive .inventory .list-items li {
    width: calc(100% / 7 - 16px);
}
.responsive .inventory .item-info.show {
    display: block;
}
.responsive .inventory .combo-info .combo-list .plus {
    display: none;
}
.responsive .inventory .combo-info .combo-list .combo-item {
    width: 120px;
    font-weight: normal;
    font-size: 13px;
}
.responsive .inventory .combo-info .users-list .user {
    width: 100%;
}
.responsive .inventory.fullscreen .list-items li {
    width: calc(100% / 6 - 16px);
}
.responsive .inventory .combo-info .merchant-list .user-inventory > div {
    width: calc(100%/5 - 24px);
}
.responsive .inventory .combo-info .merchant-list .user-sale-items > div {
    width: calc(100%/5 - 16px);
}
.responsive #modal-dialog {
    margin: 0;
    width: calc(100% - 130px);
    bottom: 5px;
    height: calc(100% - 40px);
}
.responsive #modal-dialog .buttons .button {
    margin: 3px;
}
}

@media( max-width:720px ) {
.responsive .inventory .item-info .picture {
    max-width: 150px;
}
.responsive .inventory .list-items li {
    width: calc(100% / 6 - 16px);
}
.responsive .inventory .combo-info {
    padding: 10px 10px 70px 10px;
    width: calc(100% - 20px);
    height: calc(100% - 100px);
    border: none;
}
.responsive .inventory .item-info {
    padding: 10px 10px 70px 10px;
    width: calc(100% - 20px);
    height: calc(100% - 100px);
    border: none;
}
.responsive .inventory .combo-info .items-list .item .left {
    width: 80px;
    height: 75px;
    padding: 5px;
}
.responsive .inventory .combo-info .items-list .item .right {
    width: calc(100% - 132px);
    padding: 10px 5px;
}
.responsive .inventory .combo-info .items-list .item .right .label {
    font-size: 18px;
}
.responsive .inventory .trade-window .window .head {
    min-height: 70px;
    line-height: 35px;
}
.responsive .inventory .trade-window .window .head div {
    display: block;
}
.responsive .inventory .trade-window .window .confirm {
    line-height: 18px;
    padding: 15px 5px;
    width: calc(100% - 72px);
}
.responsive .inventory .trade-window .window-2 .cancel {
    line-height: 48px;
}
.inventory .combo-info .merchant-list .item {
    width: 100%;
}
.responsive .inventory .combo-info .merchant-list .user-inventory > div {
    width: calc(100%/4 - 24px);
}
.responsive .inventory .combo-info .merchant-list .user-sale-items > div {
    width: calc(100%/5 - 16px);
}
}

@media( max-width:640px ) {
.responsive .inventory .list-items li {
    width: calc(100% / 5 - 16px);
}
.responsive .inventory .trade-window .window {
    margin: 0;
    width: calc(100% / 2 - 12px);
}
.responsive .inventory .trade-window .window li {
    width: calc(100% / 2 - 16px);
}
.responsive .inventory .trade-window .window .head {
    font-size: 15px;
}
.responsive .inventory.fullscreen .list-items li {
    width: calc(100% / 5 - 16px);
}
.responsive .inventory .combo-info .merchant-list .user-sale-items > div {
    width: calc(100%/4 - 16px);
}
.responsive #modal-dialog {
    padding: 15px;
    width: calc(100% - 40px);
}
}

@media( max-width:500px ) {
.responsive .inventory .list-items li {
    width: calc(100% / 4 - 16px);
}
.responsive .inventory.fullscreen .list-items li {
    width: calc(100% / 4 - 16px);
}
.responsive .inventory .combo-info .merchant-list .user-inventory {
    padding: 0;
    width: calc(100% - 2px);
}
.responsive .inventory .combo-info .merchant-list .user-inventory > div {
    width: calc(100%/4 - 16px);
    margin: 6px 2px;
}
}

@media( max-width:420px ) {
    .inventory .combo-info .merchant-list .user-sale-items > div p {
        white-space: nowrap;
    }
    .inventory .combo-info .merchant-list .user-sale-items > div {
        margin: 1px;
        padding: 2px;
    }
    .responsive .inventory .combo-info .merchant-list .user-sale-items > div {
        width: calc(100%/4 - 8px);
    }
}

@media( max-width:360px ) {
.responsive .inventory .list-items {
    padding: 2px;
    width: calc(100% - 4px);
}
.responsive .inventory .list-items li {
    margin: 1px;
    width: calc(100% / 4 - 14px);
}
}

@-webkit-keyframes pop-in {
0% { opacity: 0; -webkit-transform: scale(0.5); }
100% { opacity: 1; -webkit-transform: scale(1); }
}
@-moz-keyframes pop-in {
0% { opacity: 0; -moz-transform: scale(0.5); }
100% { opacity: 1; -moz-transform: scale(1); }
}
@keyframes pop-in {
0% { opacity: 0; transform: scale(0.5); }
100% { opacity: 1; transform: scale(1); }
}

@keyframes fadein {
from { opacity: 0; }
to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes ray_anim {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg);}
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg);}
}