.game-card {
    width: 460px;
    height: 215px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-color: black;
}

.game-card .warning {
    position: absolute;
    right: 10px;
    top: 0;
    color: red;
    font-weight: bold;
}

body {
    width: 100%;
    background-color: black;
    color: #BCBCBC;
}

#menu, #filters, .vertical-arrow {
    width: 460px;
}

#menu {
    z-index: 1;
}

#main-content {
    width: 100%;
}

#game-tabs {
    background-size: cover;
    background-origin: content-box;
    margin-left: 460px;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding-right: 460px;
}

#filters {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(26, 26, 25, 0.95);
    z-index: 999;
    max-height: 100vh;
    overflow-y: auto;
}

#filters-collapsible-area {
    display: none;
}

#game-cards, .up-arrow {
    margin-top: 50px;
}

#text-filter {
    width: 95%;
}

/*
	.game-info:not(.active) {
		display:none;
	}
*/
.game-info, #tv {
    width: 100%;
    /*		height: 50%;*/
    /*padding: 5px 20px;*/
}

#loading-screen {
    /*display: none;*/
    background-image: url("../img/lemmingsloading.gif");
    background-color: black;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

#tv {
    position: relative;
    display: none;
    padding: 5px;
}

#tv img, #tv video {
    width: 50%;
    vertical-align: top;
}

#tv img {
    cursor: pointer;
}

.tags {
}

.tag {
    padding: 5px;
}

.metascore {
    color: #FFFFFF;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #929292;
    border-radius: 7px;
    padding: 0px 4px 2px 5px;
    margin-top: 7px;
}

.thumbnails img:hover, #tv img:hover {
    opacity: 0.8;
}

.game-card:not(.active) {
    opacity: 0.6;
}

.game-card.active, .thumbnails img.active {
    /*box-shadow: inset 0 30px 40px rgba(255,0,0,1);*/
    box-shadow: inset 0 0 40px 20px rgba(22, 150, 255, 0.7);
}

.game-card:hover {
    opacity: 1.0;
}

.thumbnail-container {
    overflow-x: scroll;
}

.thumbnails {
    white-space: nowrap;
    list-style: none;
    margin: 0;
}

.thumbnails li {
    display: inline-block;
}

.thumbnails img {
    display: block;
    padding: 2px;
    max-height: 150px;
    width: auto;
    cursor: pointer;
}

.main-info {
    width: 40%;
    display: inline-block;
}

.description {
    width: 60%;
    display: inline-block;
    max-height: 300px;
    overflow-y: scroll;
    border: 1px solid #777;
    padding: 5px;
    border-radius: 5px;
}

.highlight {
    color: #f44;
    font-weight: bold;
}

.free {
    color: #0b0;
}

.card-title {
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.80);
    display: inline-block;
    border-radius: 7px;
}

.main-info a {
    color: #838383;
}

.card-body {
    padding: 5px;
}

.videos {
    display: none;
}

#carouselExampleIndicators {
    width: 45%;
    display: inline-block;
}

.carousel-control-prev, .carousel-control-next {
    height: 80%;
}

.carousel-caption {
    top: 30px;
    bottom: auto;
}

.row {
    position: relative
}

.filter-group, .row {
    margin: 0 10px 10px 10px;
    /*margin: 10px;*/
}

.filter-group {
    font-size: 70%;
    width: 95%;
}

.filter-group h5 {
    font-size: 115%;
    color: #838383;
}

.filter-group label {
    cursor: pointer;
}

.filter {
    display: inline-block;
    margin: 0 3px 3px 0;
    padding: 2px 5px;

    user-select: none;
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

.filter[data-state=off] {
    background-color: #424242;
}

.filter[data-state=and] {
    background-color: #007ee9;
}

.filter[data-state=or] {
    background-color: #009378;
}

.filter[data-state=not] {
    background-color: #940006;
}

.modal-dialog {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
}

.modal-header {
    border-bottom: 1px solid #a9acaf;
}

.modal-content {
    height: 100%;
    width: 100%;
    border-radius: 0;
    background-color: rgba(71, 71, 71, 0.85);
    cursor: pointer;
}

.modal-body {
    text-align: center;
}

#screenshot-modal img {
    max-width: 100%;
}

.navigation-arrow {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation-arrow:hover {
    color: orange;
    background-color: rgba(255, 255, 255, 0.1);
}

.vertical-arrow {
    height: 50px;
    font-size: 150%;
}

.vertical-arrow, .screenshot-arrow {
    position: fixed;
}

.carousel-arrow {
    position: absolute;
    width: 5%;
    font-size: 300%;
    height: 150px;
}

.screenshot-arrow {
    width: 15%;
    height: 100%;
    font-size: 1000%;
}

.up-arrow {
    top: 0;
    left: 0;
}

.down-arrow {
    bottom: 0;
    left: 0;
}

.left-arrow {
    top: 0;
    left: 0;
}

.right-arrow {
    top: 0;
    right: 0;
}