/*-----------------------------------------------
            EXERCISE
/*---------------------------------------------*/
#exercise .container{
    padding: 20px;
}

/*-----------------------------------------------
            TARGET CONTAINER
/*---------------------------------------------*/
#targetContainer {
    width: 100%;
    height: 70%;

    /*background-color: #0d7891;*/

    text-align: center;
}
#targetContainer div.holder{
    float: left;
    width: 47%;
    height: 100%;

    margin: 10px;
    padding: 10px;

    -moz-box-sizing:    border-box;
    -webkit-box-sizing: border-box;
    box-sizing:        border-box;


    background-color: antiquewhite;

    border-style: solid;
    border-color: darkslategrey;
    border-width: medium;
    border-radius: 3px;

    text-align: center;
}
#targetContainer .background{

    height: 90%;
    width: 90%;

    -moz-box-sizing:    border-box;
    -webkit-box-sizing: border-box;
    box-sizing:        border-box;


    background-color: lightyellow;

    border-style: dashed;
    border-color: darkslategrey;
    border-width: medium;
    border-radius: 3px;

    text-align: center;

    overflow: hidden;

}
#targetContainer div.hover{
    border-width: medium;
    border-color: #0d7891;
}

#targetContainer .label {
    background-color: #BBFFBB;
    border-radius: 5px 5px 5px 5px;
    border-style: solid;
    border-width: thin;
    margin: 0 30%;
    position: relative;
    top: -20px;
}

#targetContainer div.dragable{
    /*THIS STYLE CAN BE USED TO ALTER ANSWERED STATE OF OBJECT*/
    margin: 5px;
    padding: 5px;
    font-size: 0.8em;
}

/*-----------------------------------------------
            OBJECT CONTAINER
/*---------------------------------------------*/
#objectContainer {
    /*background-color: peachpuff;*/
    width: 100%;
    height: 30%;
}
div.alternative{
    float: left;

    margin: 10px;
    padding: 10px;

    background-color: #444444;
    color: #e6e6e6;

    border-style: solid;
    border-color: #222222;
    border-width: thin;
    border-radius: 3px;

    cursor: pointer;
}
/*div.alternative span{*/
    /*display: none;*/
/*}*/

/*div.alternative.dropped img{*/
    /*width:20px; *//* you can use % */
    /*height: auto;*/
/*}*/

.checkmark {
    display: block;

    position: absolute;
    right: -10px;
    top: -10px;

    width: 26px;
    height: 30px;

    /*background-color: #a1dfe0;*/
}