/* Common */

.fix {
    *zoom: 1;
}

.fix:after {
    display: table;
    clear: both;
    content: '';
}


/* Home */

.wrap {
    padding: 40px 0;
    position: relative;
}

#gameArea {
    margin-bottom: 40px;
}

.ws-area,
.ws-words {
    display: inline-block;
    vertical-align: top;
    width: 66%;
    left: 18%;
    height: 100%;
    top: 0%;
}

.search-for-words {
    float: right;
    width: 30%;
}

.ws-words {
    margin-top: 20px;
}

.ws-word {
    margin-bottom: 4px;
}

.ws-words ::first-letter {
    text-transform: capitalize;
}


/* Wordsearch */

.ws-area {
    background: #fafafa;
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.ws-row {
    line-height: 0;
}

.ws-col {
    cursor: pointer;
    width: 16%;
}

.ws-col.ws-selected {
    background: #eee;
}

.ws-found {
    background: yellow;
}

.ws-game-over-outer {
    background: rgba(0, 0, 0, 0.85);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.ws-game-over-inner {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: table;
}

.ws-game-over {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.ws-game-over h2 {
    color: #FFFFFF;
    font-size: 2em;
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 9px 0;
}

.ws-game-over p {
    color: #FFFFFF;
    font-size: 1em;
    padding: 0;
    margin: 0;
}

.search-words {
    font-weight: bold;
    font-size: 1.2em;
}

.div-header-ol {
    float: right;
    width: 25%;
}

@media only screen and (max-width: 1100px) {
    .ws-words {
        width: 100%;
        margin-top: 20px;
        padding-left: 24px;
    }
    .search-for-words {
        width: 100%;
        float: left;
        padding: 20px 0 20px 20px;
    }
}


/* SLIDER */

.slide,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.wordsearch-text-clue {
    font-size: 2vw;
    text-align: center;
    line-height: 12vw;
}

.carousel-inner .active {
    border: unset;
}

.wordsearch-found {
    background-image: url('../../system/exercise/images/wordsearch/found.png');
    width: 16%;
    height: 31%;
    left: 84%;
}

.wordsearch-ul-words {
    height: 20%;
    top: 80%;
    text-align: center;
}

.wordsearch-li-words {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    top: 7%;
    margin-left: 1%;
    cursor: pointer;
    font-size: 1.5vw;
    padding: 1%;
}

.wordsearch-clue-container {
    width: 60%;
    left: 20%;
    height: 70%;
    top: 6%;
}

.wordsearch-clue-helper {
    background: green;
}