* {
    margin: 0;
    padding: 0;
}

.container {
	overflow: hidden;
}

#gameContainer {
    position: fixed;
    top: 0px;
    left: 160px;
    right: 300px;
	height: 100vh-94px;
	bottom: 94px;
	width: auto;
	overflow: hidden;
}

.leftside {
    position: fixed;
    left: 0px;
    top: 50%;
    width: 160px;
    transform: translateY(-60%);
	height: fit-content;
	overflow: hidden;
}

.rightside {
    position: fixed;
    right: 0px;
    width: 300px;
    top: 50%;
    transform: translateY(-50%);
	height: fit-content;
	overflow: hidden;
}

.middleAd {
    top: 250px;
    margin: 5px auto;
    text-align: center;
}

.upperFlexContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: start;
    margin-top: 5px;
}

.belowFlexContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: start;
    margin-top: 5px;
}

.gameLink {
    width: 90px;
    height: 65px;
    margin: 1px;
    border: 2px solid rgb(137, 206, 233);
    border-radius: 10px;
    cursor: pointer;
}

.gameLink:hover {
    border: 2px solid red;
}

.more-games {
	position: fixed;
	left: 30px;
	bottom: 10px;
	z-index: 55;
	background-color: transparent;
}

.bottom-banner {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-60%);
    text-align: center;
	width:728px;
}

.bottom-banner > img {
    display: block;
}

.search-input-container {
    position: absolute;
    right: 10px;
    top: 1%;
    width: 280px;
}

#search-input {
    width: 280px;
    height: 30px;
    padding: 0px 10px;
    border: 2px solid rgb(13, 172, 235);
    border-radius: 10px;
    background-color: rgb(209, 68, 68);
	color: white;
}

#search-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1; /* Firefox */
}

input[type="search"]::-webkit-search-cancel-button:hover { 
    cursor:pointer; 
}

input[type="search"]::-webkit-search-cancel-button {
    color: white;
}

#search-input::-ms-input-placeholder { /* Microsoft Edge */
    color: whitesmoke;
}

input[type=search]:focus-within {
    background-color: brown;
    color: white;
    border: 2px solid white;
}

input[type=search]:focus::placeholder {
    color: white;
}

.search-output {
    position: relative;
    top: 0px;
    z-index: 10;
    background-color: rgb(137, 206, 233);
    color: rgb(11, 12, 8);
    max-height: 50vh;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 10px;
}

.search-output li {
    width: auto;
    margin: 4px;
    padding: 4px;
    border: 2px solid rgba(255, 0, 0, .5);
    border-radius: 10px;
}

.search-output li:hover {
    background-color: brown;
    color: white;
    border: 2px solid rgba(255, 255, 255, 1);
    cursor: pointer;
}

.search-bar-image {
    border-radius: 5px;
    width: 40px;
    height: auto;
    vertical-align: middle;
}

.searchbar-list-text {
    margin-left: 8px;    
}

::-webkit-scrollbar-track
{
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 8px;
}

::-webkit-scrollbar
{
	width: 8px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: brown;
    border-radius: 8px;
	
}

.bottomResponsiveGoogleAd {
	width:728px;
}

@media only screen and (min-height: 768px){

    .gameLink {
        height: 68px;
        margin: 2px;
    }

    .middleAd {
        margin: 10px auto;
    }

}

@media only screen and (min-height: 769px) and (max-height:914px){

    .middleAd {
        margin: 15px auto;
    }
	
	.more-games {
		bottom: 20px;

	}
}

@media only screen and (min-width:1430px) {

	.bottomResponsiveGoogleAd, .bottom-banner {
		width:970px;
	}
}