/*activity*/
/*POEM*/
#checkAnswerButton, #restartButton, #scoreHolder{
    display:block;
    cursor:pointer;
    margin:2% auto;
    padding:2%;
    width:100%;
        background-color: #FD844C;
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 1.2em;

}

#scoreHolder{
    cursor:auto;

}



/*copied from fill the blanks*/
/*FILL BLANKS*/

    .selectedSpan {
        color: #D9EDDC;
    }


    .questionSpanClass { 
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        min-height: 30px;
        min-width: 50px;
        background: #ADDBF2;
        color: #000;
        text-shadow: none;
        padding: 0 5px 0px 5px;     
        border-bottom: 1px dashed #66818F;  
        cursor: pointer;
        line-height: 1.4em;

    } 

    #question .ui-selecting {
        background: #F39814;    
    }
    #question .ui-selected {
        background: #FF6E42;
        color:#fff;
        min-height: 30px;

    }

    #question .ui-changed {

        background: #00b2ad;
        color: white;
    }


   .feedback {
    display: inline-block;
    min-width:20px;
    min-height:20px;
    border-radius: 50%;
    position: relative;
    margin-right: -18px;
    top:-13px;
    left:-14px;

  -webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
cursor: default;

    }



    .correctfeedback {
       
        background-image: url("../images/correct.png");
        background-repeat: no-repeat;
        background-position: 100% top;
        background-color: white;


    }

    .incorrectfeedback {
      
        background-image: url("../images/incorrect.png");
        background-repeat: no-repeat;
        background-position: 100% top;
        background-color: white;
       

    }

    #options {
        display: inline-block;
        display: none;
        width: 16em;
        height: 8em;
    }


    #selectable {
      
        list-style-type: none;
        margin: 0;
        padding: 5px;
        background: #66818F;
        position: absolute;
        height: 100%;

    }

   /* #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;
        font-size: 1.2em;
        
        display: inline-block;
        vertical-align: top;
        margin: 3px;
        padding: 3px;

        background: #FDC54D;
        color: #000;
        border:0px;
        cursor:pointer;
        -ms-user-select: none; /* IE 10+ */
        -moz-user-select: -moz-none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        user-select: none;
    }

    #selectable .ui-selecting {
        background: #FECA40;
    }
    #selectable .ui-selected {
        background: #F39814;
        color: white;
    }
    /*media queries*/
