html, body {
    height: auto !important;
}

body{
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
}

h2 {
    margin: 0px;
    padding: 20px 0px;
}

.btn.btn-primary {
    color: white;
    background: #3085d6;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    outline: none;
}

#gameDiv {
	max-width: 500px;
	margin: 0px auto;
}
ul.ws-words {
	padding: 0px;
    text-transform: uppercase;
}

li.ws-word {
    display: inline-block;
    margin: 5px;
    padding: 5px;
}
li.ws-word.found {
    background: #333;
    color: #AAA;
}

.ws-word del {
    /* text-decoration: none; */
    opacity: 0.3;
}

.ws-row {
	white-space: nowrap;
}

.boldFont-test {
    font-family: 'boldFont';
    visibility: hidden;
    height: 0px;
    margin: 0px;
}

.mute-btn-wrapper {
    display: none;
}

.countdown {
    padding: 50px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    width: 160px;
    height: 160px;

    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.countdown-wrapper.disable {
    display: none;
}

.countdown h1 {
    color: white;
    margin: 0px;
    line-height: 160px;
    font-size: 160px;
}

.disabled, .disabled * {
    pointer-events: none !important;
}

.content-wrapper {
    max-width: unset;
}
.countdown-wrapper {
    background: rgba(0, 0, 0, 0.75);
    /* width: 100%; */
    /* height: 100%; */
    
    /*position: absolute;*/
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;

    z-index: 1031;
}

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

/* ---------- CANVAS AND FRAMES ---------- */
#gameDiv canvas {
    display: block;
    margin: 0px auto;
    max-width: 100%;
    background: #333;
}

@media (max-width: 767px) {
	li.ws-word {
		font-size: 12px;
	}

    #gameDiv {
        max-width: calc(100% - 30px);
        padding: 0px;
        margin: 0px 15px;
    }
}

@media (max-width: 660px) {
	.ws-area {
	    padding: 10px;
	}
	
	.ws-row canvas {
	    width: 20px;
	}
}