/*activity*/
/*POEM*/
#activity
{
    position: fixed;
    top: 15%;
    right: 3%;
}
.spacer
{
    height: 2em;

    background: #309091;
}
.push
{
    height: 3em;
}

/*#activity{
text-align: center;
    margin:2% 0 0 0;
}*/

#wordList
{
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    line-height: 1.4em;

    display: inline;

    width: 100%;
    margin: 2% auto;
    padding: .5%;

    list-style-type: none;

    text-align: center;

    color: #226762;
    border: 0;
    background: #5bc8c1;
}



#checkAnswerButton
{
    display: block;

    width: 100%;
    margin: 2% auto;
    padding: 2%;

    cursor: pointer;
}

#restartButton
{
    display: block;

    width: 100%;
    margin: 2% auto;
    padding: 2%;

    cursor: pointer;
}



/*copied from fill the blanks*/
/*FILL BLANKS*/

.selectedSpan
{
    color: #d9eddc;
}


.questionSpanClass
{
    line-height: 1.4em;

    display: inline-block;

    min-width: 50px;
    min-height: 30px;

    padding: 0 5px 0 5px;

    cursor: pointer;
    text-align: center;
    vertical-align: middle;

    color: #226762;
    border-bottom: 1px dashed #555460;
    background: #5bc8c1;
    text-shadow: none;
}

#question .ui-selecting
{
    background: #f39814;
}
#question .ui-selected
{
    min-height: 30px;

    color: #fff;
    background: #ff6e42;
}

#question .ui-changed
{
    color: white;
    background: #00b2ad;
}

/* #feedback{
    display:none;
    background-image: url(../../images/correct.png);
    background-repeat: no-repeat;
    width: 30px; /* Width of new image */
/*height: 30px; /* Height of new image */

/* background-size: 1%;
        margin-left:-10px;
        margin- top:-50px; 
        border:none!important;
        background-color:black;
       
    }  */

.feedback
{
    position: relative;
    top: -13px;
    left: -14px;

    display: inline-block;

    min-width: 20px;
    min-height: 20px;
    margin-right: -18px;

    cursor: default;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;

    border-radius: 50%;

    -khtml-user-select: none;
         -o-user-select: none;
}



.correctfeedback
{
    background-color: white;
    background-image: url('../images/correct.png');
    background-repeat: no-repeat;
    background-position: 100% top;
}

.incorrectfeedback
{
    background-color: white;
    background-image: url('../images/incorrect.png');
    background-repeat: no-repeat;
    background-position: 100% top;
}

#options
{
    display: none;
}


#selectable
{
   
    position: relative;
        /*position: absolute;*/
  
    margin: 0;
    padding: 5px;

    list-style-type: none;

    background: #555460;
    z-index: 5;
}

/* #selectable:after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-width: 20px;
        border-style: solid;
        border-color:  transparent transparent #555460 transparent;
        top: -40px;
        left:0;
    }*/


#selectable ul
{
    margin: 0 auto;

    text-align: center;
}

#selectable li
{
    font-family: 'Montserrat', sans-serif;

    display: inline-block;

    margin: 3px;
    padding: 0.6em;

    cursor: pointer;
    -webkit-user-select:      none;
       -moz-user-select: -moz-none;
        -ms-user-select:      none; /* IE 10+ */
            user-select:      none;
    vertical-align: top;

    color: #555460;
    border: 0;
    background: #aae6e4;

    -khtml-user-select: none;
}

#selectable .ui-selecting
{
    background: #feca40;
}
#selectable .ui-selected
{
    color: white;
    background: #f39814;
}

.answered
{
    color: white;
    background: #ff6e42;
}

.ui-selectable-helper
{
    /*position: absolute;*/
    display: none;
    border: none;
    left: 0;
    top: 0;
}







/*media queries*/


@media only screen and (max-width: 768px)
{
    #activity
    {
        margin-top: 15%;
    }
}

@media only screen and (max-width: 560px)
{
    #wordList
    {
        display: none;
    }
}
