/**
* Wordfind.js 0.0.1
* (c) 2012 Bill, BunKat LLC.
* Wordfind is freely distributable under the MIT license.
* For all details and documentation:
*     https://github.com/bunkat/wordfind
*/

body {
    background: #306a8b;
}

.puzzleWrap {
    width: 850px;
    margin: 50px auto 0;
}

p {
    /*font: 22pt sans-serif;*/
    /*margin: 20px 20px 0px 45px;*/
    /*color: #000000;*/
}

/**
  * Styles for the puzzle
  */
#puzzle {
    padding: 20px;
    float: left;
    margin: 30px 20px;
    width: 500px;
}

#puzzle div {
    width: 100%;
    margin: 0 auto;
}

/* style for each square in the puzzle */
#puzzle .puzzleSquare {
    height: 40px;
    width: 40px;
    text-transform: uppercase;
    background-color: #ffffff;
    border: 0;
    outline: none;
    font: 1em sans-serif;
    color: #000000;
    padding: 0;
}

button::-moz-focus-inner {
    border: none;
    outline: none;
}

/* indicates when a square has been selected */
#puzzle .selected {
  color: #f00;
  background-color: #70d77d;
  outline: none;
  font-weight: 700;
}
#puzzle .selected:first-child {
  /* border: 1px solid #70d77d;
  padding: 10px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-right-color: transparent; */
}
#puzzle .selected:focus {
    border: none;

}

/* indicates that the square is part of a word that has been found */
#puzzle .found {
  color: #ffffff;
  background: #70d77d;
  font-weight: 700;
}

#puzzle .solved {
    color: #000;
    font-weight: bold;
    border-bottom: 1px solid;
}

/* indicates that all words have been found */
#puzzle .complete {
    background-color: green;
}

/**
  * Styles for the word list
  */
#words {

    width: 250px;
    color: #000000;
    float: left;
    margin-top: 37px;
}

#words ul {
    list-style-type: none;
}

#words li {
    padding: 0 0 7px;
    font: 1em sans-serif;
    display: inline-block;
    float: left;
    width: 100px;
}

/* indicates that the word has been found */
#words .wordFound {
    text-decoration: line-through;
    color: #ee5426;
}

/**
  * Styles for the button
  */
#solve {
    margin: 10px 10px 0 10px;

    background: transparent;
    color: #000000;
    /* padding: 10px 20px;*/
    border: 3px solid #000000;
    border-radius: 25px;
    opacity: 1.5;
    transition: opacity .25s ease-in;

}

#solve:hover,
.btn-design:hover,
#solve.gameSolved {
    opacity: 1;

}

button:focus {
    outline: 0 !important;
}

li.word.even {
    text-align: end;
    margin-right: 50px;

}


body {
    background: #eaeaea !important;
}

.btn-design {
    margin: 10px 10px 0 10px;
    background: transparent;
    color: #000000;
    /* padding: 10px 20px;*/
    border: 2px solid #000000;
    border-radius: 25px !important;
    transition: opacity .25s ease-in;
	opacity: 1.5 !important;
  border: 2px solid #000 !important;

}

.btn-design:hover,
.btn-design.gameSolved {
    opacity: 1;
}

.printStyle {
    width: 10px;
    height: 10px;
}

.main-content {
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh
}

/* .sitelink{
          margin-left: 36%;
        }*/

@page {
    border: initial;
    border-radius: initial;
    width: initial;
    min-height: initial;
    box-shadow: initial;
    background: initial;
    page-break-after: always;
    bottom: 0px;
    top: 0px;
    size: 15in 9.25in;
    margin: 0;
    width: 100%;
    /* margin-top: 130px;*/
    /*
         margin: 27mm 16mm 27mm 16mm;*/
}

@media print {
    body {
        /* transform: scale(2.2);
                     padding-top:370px;  */

    }

    table {
        page-break-inside: avoid;
    }

    #printablediv {
        width: 100%;
    }

    .elementContent {
        display: none !important;
    }

    /*   .sitelink{
          margin-left: 34%;
        }*/

    /* ... the rest of the rules ... */


    h1.pageTitle {
        width: 100%;
        color: #88bd24;
        border-bottom: 1px solid #88bd24;
        text-align: left;
        font-size: 18px;
        font-family: verdana, arial, sans-serif;
    }
}
