/*
Enable for April First
#rightContainer {
-moz-transform: scale(1, -1);
-webkit-transform: scale(1, -1);
-o-transform: scale(1, -1);
-ms-transform: scale(1, -1);
transform: scale(1, -1);
}
*/

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

body, html {
    height: 100%;
    font-family: 'PT Sans', sans-serif;
    overflow-y: hidden;
}

#queryContainer {
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex: 0 0 auto;
}

#queryContainer > input {
    flex: 1;
}

#queryContainer > button {
    padding: 8px;
    font-weight: bold;
    background: none;
    border: none;
}

@media (hover) {
    #queryContainer > button:hover {
        text-decoration: underline;
    }
}

#leftContainer {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

#tableContainer {
    overflow: hidden;
    padding: 0 15px 10px 15px;
}

#mainTable_wrapper {
    display: grid;
    height: 100%;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
}

input#burgerMenuState {
    position: absolute;
    left: -100vw;
}

#burgerMenu {
    margin: 5px 10px 5px 5px;
    cursor: pointer;
}

@media (max-width: 767px) {
    #mainContainer {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    #leftContainer {
        position: absolute;
        top: 56px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 3;
        background: white;
        transition: transform 0.2s;
    }

    input#burgerMenuState:not(:checked) + #leftContainer {
        transform: translateX(-100%);
    }

    input#burgerMenuState:checked + #leftContainer {
        transform: translateX(0);
    }

    #queryContainer > button > span {
        display: none;
    }

    #tableContainer {
	flex: 1;
    }

    .abilities tr {
        display: flex;
        flex-direction: column;
    }

    .abilities td {
        width: 100%;
    }

    .popover {
        top: initial !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        overflow: auto;
        max-height: 60vh;
        max-width: none;
        margin: auto;
    }
}

.popover > .arrow {
    display: none;
}

@media (min-width: 768px) {
    #mainContainer {
        display: grid;
        grid-template:
            "filters  query" auto
            "filters  grid" 1fr
            / 275px 1fr;
        ;
        height: 100%;
    }

    #leftContainer {
        grid-area: filters;
    }

    #queryContainer {
        grid-area: query;
    }

    #burgerMenu {
        display: none;
    }

    #tableContainer {
        grid-area: grid;
    }

    #queryContainer > button > i {
        display: none;
    }

    .slot.medium {
        width: 80px;
        height: 80px;
        background-size: 80px 80px;
        margin: 2px;
    }

    .arrow {
        font-size: 2em;
        bottom: 32px;
    }

    #mainTable td:nth-child(2) {
        white-space: normal !important;
    }

    #mainTable td:nth-child(2) > img {
        float: left;
        margin-right: 5px;
    }

    #mainTable td:nth-child(2) > a {
        height: 40px;
        display: table-cell;
        vertical-align: middle;
    }

    .popover:not([title="Additional Columns"]) {
        width: 500px !important;
        max-width: 500px;
        left: initial !important;
        right: 25px;
    }
}

@media (max-width: 768px) {

    #links-button {
        display: none !important;
    }

}

/**********
 * Other *
 **********/
.panel-x-scroll {
    overflow-x: auto;
}

.stats-pane {
    clear: both;
}

#type-container {
    text-align: center;
}

.filter-header {
    display: block;
    padding: 5px;
    text-align: center;
    background: rgb(50,50,50);
    color: white;
    font-weight: bold;
    cursor: default;
    border-top: 1px solid #aaa;
}

.filter-header > i {
    position: relative;
    top: 2px;
}

.filter {
    display: inline-block;
    padding: 3px 8px;
    text-align: center;
    cursor: pointer;
    border-top: 1px solid #aaa;
    border-left: 1px solid #aaa;
}

.filter.custom {
    padding: 0px;
    cursor: default;
}

/* first child (filter text) must be full sized for the click event, but the
    the click event should not be in the submatchers, so the padding goes here
    instead of just .filter */
.filter > div:first-child{
    padding: 3px 8px;
    cursor: pointer;
}

#leftContainer .filter-group-header {
    background: rgb(80,80,80) !important;
    color: white !important;
}

#leftContainer .custom.filter .submatchers {
    padding: 6px 8px 3px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #ff7575;
    color: rgb(50 50 50);
}

#leftContainer .submatchers .submatcher {
    margin: 0px 0px 3px;
    flex: 1;
}

#leftContainer .submatcher label {
    margin-bottom: 0px;
}

#leftContainer .submatcher label input {
    color: #333333;
}

#leftContainer .submatcher .submatcher-separator {
    text-align: center;
    min-height: 10px; /* When we want to have an empty separator*/
}

#leftContainer .submatcher .submatcher-option {
    border-radius: 8px;
    padding: 3px 8px;
    background-color: #fff;
    color: #333333;
    cursor: pointer;
    font-weight: normal;
}

@media (hover) {
    #leftContainer .submatcher .submatcher-option:hover {
        background-color: rgb(230,230,230);
    }
}

#leftContainer .submatcher .submatcher-option.active {
    background-color: red;
    color: white;
    font-weight: bold;
}

#leftContainer .custom.filter .custom.filter.submatchers-toggler,
#leftContainer .custom.filter > .collapse {
    background-color: #dd6060;
}

@media (hover) {
    #leftContainer .custom.filter .custom.filter.submatchers-toggler:hover,
    #leftContainer .custom.filter > .collapse {
        background-color: #FF9090;
    }
}

.filter-container:last-child > .filter:last-child {
    border-bottom: 1px solid #aaa;
}

.type.filter, .orb-controllers > span:not(.separator) {
    border: none;
}

.type.filter:not(.active), .orb-controllers > span:not(.separator):not(.active) {
    opacity: 0.3;
}

@media (hover) {
    .type.filter:not(.active):not(:hover), .orb-controllers > span:not(.separator):not(.active):not(:hover) {
        opacity: 0.3;
    }
}

.type.filter.active, .orb-controllers > .active {
    font-weight: bold;
    text-decoration: underline;
}

#class-filters {
    height: 0;
    overflow: hidden;
    transition: 0.2s linear;
}

#class-filters.enabled{
    height: 109px;
    border-bottom: 1px solid #aaa;
}

.STR        { background: salmon; }
.QCK        { background: lightskyblue; }
.DEX        { background: lightgreen; }
.PSY        { background: gold; }
.INT        { background: orchid; }
.RCV        { background: sandybrown; }
.TND        { background: peru; }
.BLOCK      { background: darkslateblue; }
.SUPERBLOCK { background: darkslateblue; color: #ffe97d; }
.BOMB       { background: maroon; }
.SEMLA      { background: saddlebrown; }
.WANO       { background: firebrick; }
.RAINBOW    { background: linear-gradient(90deg,#fa8072,#ffd700,#90ee90,#87cefa, #da70d6); color: #333333; }
/*.SUPERBOMB { background: linear-gradient(90deg, #ff2600, #debb2f, #ff2600); }*/
.SUPERBOMB  { background: maroon; color: #ffe97d; }
.PARALYSIS  { background: #af5210; color: gold; }
.G          { background: orange; }
.EMPTY      { background: #777; }

.cell-STR { font-weight: bold; color: red; }
.cell-QCK { font-weight: bold; color: blue; }
.cell-DEX { font-weight: bold; color: green; }
.cell-PSY { font-weight: bold; color: goldenrod; }
.cell-INT { font-weight: bold; color: darkorchid; }

.badge-japan, .badge-global {
    float: left;
    position: relative;
    top: 2px;
    width: 50px;
    text-align: center;
    margin-right: 5px;
}

.badge-base {
    float: left;
    position: relative;
    top: 2px;
    width: 130px;
    text-align: center;
    margin-right: 5px;
}

.badge-swap {
    float: left;
    position: relative;
    top: 2px;
    width: 80px;
    text-align: center;
    margin-right: 5px;
}

.badge-superswap {
    float: left;
    position: relative;
    top: 2px;
    width: 140px;
    text-align: center;
    margin-right: 5px;
}

.badge-sbase {
    float: left;
    position: relative;
    top: 2px;
    width: 80px;
    text-align: center;
    margin-right: 5px;
}

.badge-sbase2 {
    float: left;
    position: relative;
    top: 2px;
    width: 87px;
    text-align: center;
    margin-right: 5px;
}

.badge-level1, .badge-level2, .badge-level3, .badge-level4, .badge-level5, .badge-level6 {
    float: left;
    position: relative;
    top: 2px;
    text-align: center;
    margin-right: 5px;
}

.badge-slevel1, .badge-slevel2 {
    float: left;
    position: relative;
    top: 2px;
    text-align: center;
    margin-right: 5px;
}

.badge-character1, .badge-character2 {
    float: left;
    position: relative;
    top: 2px;
    text-align: center;
    margin-right: 5px;
}

.badge-combined {
    float: left;
    position: relative;
    top: 2px;
    text-align: center;
    margin-right: 5px;
}

.tag-badge {
  display: inline-block;
  padding: 3px 8px;
  margin: 2px;
  border-radius: 10px;
  font-size: 12px;
  color: white;
}
.tag-cat-1 { background-color: #ff975b; } 
.tag-cat-2 { background-color: #4bb677; } 
.tag-cat-3 { background-color: #ff64be; } 
.tag-cat-4 { background-color: #1f9ca0; } 

.badge-japan + div, .badge-global + div, .badge-swap + div, .badge-superswap + div, .badge-base + div, .badge-level1 + div, .badge-level2 + div, .badge-level3 + div, .badge-level4 + div, .badge-level5 + div, .badge-level6 + div, .badge-sbase + div, .badge-slevel1 + div, .badge-slevel2 + div, .badge-character1 + div, .badge-character2 + div,.badge-combined + div {
    margin-bottom: 2px;
}

.badge-japan { background: mediumvioletred; }
.badge-global { background: rebeccapurple; }
.badge-swap { background: rebeccapurple; }
.badge-superswap { background: rebeccapurple; }
.badge-base { background: rgb(255,150,150); }
.badge-level1 { background: rgb(255,130,130); }
.badge-level2 { background: rgb(255,110,110); }
.badge-level3 { background: rgb(255,90,90); }
.badge-level4 { background: rgb(255,70,70); }
.badge-level5 { background: rgb(255,50,50); }
.badge-level6 { background: rgb(255,30,30); }
.badge-character1 { background: rebeccapurple; }
.badge-character2 { background: rebeccapurple; }
.badge-combined { background: mediumvioletred; }
.badge-sbase { background: darkred; }
.badge-sbase2 { background: darkred; }
.badge-slevel1 { background: red; }
.badge-slevel2 { background: red; }

.stars:before, .stars:after {
    font-weight: bold;
    font-family: icomoon;
    font-size: 13px;
}

.filter.stars:not(.active):before {
    color: #cccccc !important;
}

@media (hover) {
    .filter.stars:not(.active):not(:hover):before {
        color: #cccccc !important;
    }
}

.stars-1:before { color: #40a3da; content: '\2605'; }
.stars-1:after  { color: #cccccc; content: '\2605\2605\2605\2605\2605'; }

.stars-2:before { color: #acc523; content: '\2605\2605'; }
.stars-2:after  { color: #cccccc; content: '\2605\2605\2605\2605'; }

.stars-3:before { color: #f7c118; content: '\2605\2605\2605'; }
.stars-3:after  { color: #cccccc; content: '\2605\2605\2605'; }

.stars-4:before { color: #f28e00; content: '\2605\2605\2605\2605'; }
.stars-4:after  { color: #cccccc; content: '\2605\2605'; }

*[class~="stars-4+"]:before { color: #AC6500; content: '\2605\2605\2605\2605\002B'; }

.stars-5:before { color: #ff0000; content: '\2605\2605\2605\2605\2605'; }
.stars-5:after  { color: #cccccc; content: '\2605'; }

*[class~="stars-5+"]:before { color: #990000; content: '\2605\2605\2605\2605\2605\002B'; }

.stars-6:before { color: #9932cc; content: '\2605\2605\2605\2605\2605\2605'; }

*[class~="stars-6+"]:before { color: #ff1493; content: '\2605\2605\2605\2605\2605\2605\002B'; }


.block-icon:before, .tnd-icon:before {
    font-style: normal;
    font-weight: normal;
    font-family: icomoon;
    font-size: 11px;
    position: relative;
    top: 1px;
}

.block-icon:before {
    content: "\e902";
}

.tnd-icon:before {
    content: "\e903";
}

.class.filter.active, .custom.filter.active, .drop.filter.active, .exc.filter.active, .submatcher-option.active {
    background: red;
    color: white;
    font-weight: bold;
}

.subclass.filter.active {
    background: orchid;
    color: white;
    font-weight: bold;
}

.stars.filter.active {
    box-shadow: inset 0 0 0 1px #7777ff;
}

@media (hover) {
    .custom.filter:not(.orb-controllers) > div:first-child:hover, .class.filter:hover, .drop.filter:hover, .exc.filter:hover, .submatcher-option:hover {
        background-color: rgb(230,230,230);
    }

    .custom.filter.active > div:first-child:hover, .class.filter.active:hover, .drop.filter.active:hover, .exc.filter.active:hover, .filter .submatchers .submatcher-option.active:hover {
        background-color: darkred !important;
    }
}

.width-12 { width: 100%; }
.width-7 { width: 58.33%; }
.width-6 { width: 50%; }
.width-5 { width: 41.66%; }
.width-4 { width: 33.33%; }
.width-3 { width: 25%; }

.min-width-12 { min-width: 100%; }
.min-width-7 { min-width: 58.33%; }
.min-width-6 { min-width: 50%; }
.min-width-5 { min-width: 41.66%; }
.min-width-4 { min-width: 33.33%; }
.min-width-3 { min-width: 25%; }

.help-link {
    float: right;
    margin-right: 10px;
    position: relative;
    top: 3px;
    color: red;
}

#pick-link {
    float: right;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    top: 3px;
    color: darkorchid;
    font-weight: bold;
}

.fuzzy-toggle, .night-toggle {
    float: left;
    position: relative;
    top: 1px;
}

.fuzzy-toggle > input, .night-toggle > input {
    margin-right: 5px;
    position: relative;
    top: 2px;
}

.night-toggle {
    margin-right: 5px;
}

.filter-container {
    min-height: 31px;
}

.filter-container:last-child {
    margin-bottom: 25px;
}

.filter-container.expandable > .filter-header,
.filter-group > .filter-header {
    cursor: pointer;
}

.filter-container.expandable:not(.expanded) > :not(.filter-header) {
    display: none;
}



.filter-container.expanded > .irs {
    margin: 5px 5% 5px 5%;
}

#clear-button {
    cursor: pointer;
    background: salmon;
    color: white;
}

#toggle-button {
    cursor: pointer;
    background: darkorchid;
    color: white;
}

@media (hover) {
    #clear-button:hover {
        background: orangered;
    }

    #toggle-button:hover {
        background: darkviolet;
    }
}

.dataTables_info, .dataTables_paginate {
    text-align: left !important;
    white-space: normal !important;
}

.orb-controllers {
    padding: 0;
    cursor: default;
    display: block;
}

.orb-controllers > span:not(.separator) {
    width: 7.6923%;
    display: inline-block;
    padding: 2px 0;
    cursor: pointer;
}

.orb-controllers > span.separator {
    display: block;
    padding: 0 0 5px 0;
    background: rgb(240,240,240);
    text-align: center;
}

.orb-controllers > span.separator ~ .filter {
    margin-bottom: 0;
}

.pick-column {
    display: block;
}

#column-picker .btn {
    width: 100%;
    padding: 3px 6px;
}

.conditional .filter-header {
    background: darkslateblue;
}

.popup .panel.padded {
    padding-top: 5px;
}

/*************
 * TYPEAHEAD *
 *************/
.page-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.page-header label {
    font-size: 14px;
    margin: 0;
}

.comparer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.comparer .compare-clear {
    cursor: pointer;
    margin: 0 5px;
}

@media (hover) {
    .comparer .compare-clear:hover {
        color: red;
    }
}

#compare {
    width: 250px;
}

#compare + pre {
    display: none;
}

.tt-menu {
    background: white;
    font-size: 80%;
    border: 1px solid gray;
    border-top: none;
    top: 22px !important;
    width: 250px;
}

.tt-suggestion {
    padding: 2px;
    height: 47px;
    cursor: pointer;
}

.tt-suggestion .suggestion-container {
    display: table-row !important;
    width: 100%;
    text-align: left;
}

.tt-suggestion:not(:last-child) {
    border-bottom: 1px solid gray;
}

.tt-cursor {
    background-color: rgb(230,230,230);
}

@media (hover) {
    .tt-suggestion:hover {
        background-color: lightgray;
    }
}

.tt-suggestion .slot {
    float: left;
    margin: 2px;
    margin-right: 4px !important;
}

.tt-suggestion span {
    display: table-cell;
    vertical-align: middle;
}

.positive, .positive.withPlus:before {
    color: green;
    font-weight: bold;
}

.negative, .negative.withPlus:before {
    color: red;
    font-weight: bold;
}

.withPlus:before {
    content: '+';
}

/***********
 * BONUSES *
 ***********/

 .bonus:after {
    padding: 1px 4px 1px 0;
    border-radius: 0 10px 10px 0;
    font-size: 10px;
    margin-right: 5px;
}

 .bonus:before {
    padding: 1px 0 1px 4px;
    border-radius: 10px 0 0 10px;
    font-size: 10px;
    margin-left: 5px;
}

.bonus.drop:after, .bonus.drop:before {
    background: #7bc8a4;
    content: "2x drop";
}

.bonus.stamina:after, .bonus.stamina:before {
    background: skyblue;
    content: "0.5x stamina";
}

.bonus.beli:after, .bonus.beli:before {
    background: #ffc65d;
    content: "2x beli";
}

.bonus.exp:after, .bonus.exp:before {
    background: #f16745;
    content: "2x EXP";
}

.bonus.today:after, .bonus.today:before {
    background: orchid;
    content: "today";
}

.bonus.GL:before {
    content: "GL: ";
}

.bonus.JP:before {
    content: "JP: ";
}

/**********
 * TABLES *
 **********/

#mainTable th {
    cursor: pointer;
}

#mainTable td {
    vertical-align: middle;
}

@media (hover) {
    #mainTable th:hover {
        text-decoration: underline;
    }
}

.table-striped-column > * > tr > :nth-of-type(odd) {
    background-color: #f9f9f9;
}

#mainTable td:nth-child(2) {
    white-space: nowrap;
    width: 100%;
}

#mainTable td + td ~ td {
    min-width: 75px;
}

#mainTable td:last-child, #mainTable th:last-child {
    min-width: 0;
}

#mainTable td:last-child label {
    margin: 0 5px;
}

.dataTables_filter {
    display: none;
}

.dataTables_length {
    float: right !important;
}

tr.incomplete td:nth-child(2) > a:after {
    content: "INCOMPLETE";
    padding: 5px;
    border-radius: 10px;
    margin-left: 10px;
    background: salmon;
    font-size: 9px;
    color: white;
    text-decoration: none !important;
    display: inline-block;
}

tr.preview td:nth-child(2) > a:after {
    content: "PREVIEW";
    padding: 5px;
    border-radius: 10px;
    margin-left: 10px;
    background: orchid;
    font-size: 9px;
    color: white;
    text-decoration: none !important;
    display: inline-block;
}

.abilities td:first-child {
    white-space: nowrap;
}

.abilities td:nth-child(n+1) {
    white-space: normal;
}

.abilities td:nth-child(2) {
    /*width: 100%;*/
}

.specialName {
    display: block;
}


#mainTable_wrapper > :first-child {
    padding: 2px;
}

#mainTable_wrapper > :first-child > :first-child {
    width: 100%;
}

#mainTable_wrapper > :first-child > :last-child {
    width: 100%;
}

#mainTable_wrapper :nth-child(2) {
    overflow: auto;
}

.dataTables_length > label {
    margin-bottom: 0;
}

#mainTable_paginate .pagination {
    float: right;
}

/*********
 * POPUP *
 *********/

.popup {
    position: absolute;
    height: 100%;
    width: 100%;
    display: table;
    z-index: 100;
}

.popup:not(.visible) {
    display: none;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.65);
    z-index: 100;
}

.backdrop.closing {
    background-color: transparent;
}

.inner-container {
    position: relative;
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    z-index: 101;
    padding: 10px;
}

.custom-modal {
    height: 90%;
    max-width: 800px;
    margin: auto;
}

.modal-content, .modal-dialog {
    width: 100%;
    height: 100%;
}

.modal-body {
    width: 100%;
    overflow-y: scroll;
    text-align: center;
}

.modal-body td {
    text-align: left;
}

.modal-dialog {
    margin: 0;
}

.modal-content {
    border-radius: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100%;
    height:0;
}

.modal-header,
.modal-footer {
    background-color: #428bca;
    color: white;
}

.modal-footer {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.modal-footer .btn-group {
    display: flex;
    flex: 1;
}

.modal-footer .btn {
    width: auto;
    flex: 1;
}

@media (min-width: 768px) {
    .modal-footer .btn:after {
        content: attr(title);
        margin-left: 5px;
    }
}

.animated {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
}

.modal-filter {
    width: 100%;
}

.modal-div:not(.slim) {
    height: 340px;
    overflow: auto;
}

.modal-div.tiny {
    height: 42px;
};

.modal-div table {
    width: 100%;
}

.modal-div th {
    padding: 10px 10px 10px 5px;
}

.modal-div .to-the-right {
    text-align: right;
}

.modal-div.padded {
    padding: 10px;
}

.page-header {
    margin: 15px 0 15px 0;
    text-align: left;
}

.clickable {
    cursor: pointer !important;
}

.arrow {
    font-size: 1.5em;
    bottom: 10px;
    position: relative;
    margin: 0 10px 0 10px;
}

.back-button {
    position: relative;
    margin-right: 10px;
    bottom: 3px;
}

.notes {
    font-size: 80%;
}

.notes:before {
    content: "NOTES: ";
    font-weight: bold;
    color: gray;
}

.drop-table {
    position: relative;
}

.drop-table td:first-child {
    padding-top: 0;
    padding-bottom: 0;
    width: 0%;
    vertical-align: middle;
}

.drop-table td, .drop-table div {
    vertical-align: middle;
    white-space: nowrap;
}

.drop-table td:last-child {
    white-space: initial;
}

.table-centered td {
    text-align: center;
}

.table-bordered {
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 3px;
}

.table-textless td, .table-textless i {
    line-height: 0em !important;
}

.drop-warning {
    text-align: left;
    margin-bottom: 15px;
    display: inline-block;
}

.tag-container {
    text-align: left;
    margin-top: -7px;
}

.tag {
    padding: 2px 5px;
    border-radius: 10px;
    background: #eee;
    margin-right: 5px;
    margin-top: 7px;
    display: inline-block;
}

.tag.flag { background: rgba(133,193,245,0.5); }
.tag.captain { background: rgba(127,202,159,0.5); }
.tag.special { background: rgba(244,186,112,0.5); }
.tag.superSpecial { background: rgba(233,109,99,0.5); }
.tag.sailor { background: rgba(181, 160, 75, 0.5); }
.tag.limit { background: rgba(6, 151, 154, 0.5); }
.tag.potential { background: rgba(189, 109, 10, 0.5); }
.tag.support { background: rgba(133,193,245,0.5); }

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

unit > a {
    cursor: pointer;
}

@media (hover) {
    unit > a:hover, .clickable:hover {
        outline: 1px solid red !important;
    }
}

.tab-pane + .tab-pane {
    padding-top: 20px;
}

.chart-container {
    max-height: 320px;
}

.chart-line {
    max-height: 338px !important;
}

/*******************
 * SLOT THUMBNAILS *
 *******************/

.slot {
    display: inline-block;
}

.slot.huge {
    width: 320px;
    height: 256px;
    background-size: 320px 256px;
    margin: 10px;
}

.slot.responsive {
    height: 384px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
    display: flex;
}

.slot.big {
    width: 112px;
    height: 112px;
    background-size: 112px 112px;
    margin: 4px;
}

.slot.medium {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
    margin: 1px;
}

.slot.small {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
    margin: 1px;
}

/**********
 * MOBILE *
 **********/
.fa-rumble:before {
    content: "⚔";
    font-size: 17px;
}
.tag-category-1 {
  color: #ce8d2c !important;
}
.active.tag-category-1 {
  color: #ffcc80 !important;
}
.tag-category-2 {
  color: #c8e6c9 !important;
}
.active.tag-category-2 {
  color: #a5d6a7 !important;
}
.tag-category-3 {
  color: #e673d2cc !important;
}
.active.tag-category-3 {
  color: #90caf9 !important;
}
.tag-category-4 {
  color: #23aa9f !important;
}
.active.tag-category-4 {
  color: #ce93d8 !important;
}