.activity
{
    height: 80%;
}


/*BOXES
*/

.boxHolder
{
    height: 9%;
}

.box
{
    font-family: 'Open sans', sans-serif;
    font-size: 1.5em;
    line-height: 3em;

    position: relative;

    height: 3em;
    margin: 0 0 1% 3%;
    padding-left: .5em;

    text-align: left;
    vertical-align: middle;

    color: #32343a;
    background-color: #f4ac42;
}

.buttonHolder
{
    position: absolute;
    /*    top: 17%;
*/    top: 0;
    right: 1%;

    height: 96%;
}


/*BUTTONS
*/

button.positive,
button.negative
{
    font-size: 20px;
    font-weight: bold;

    position: relative;

    width: 50px;
    height: 50px;

    vertical-align: middle;

    border: 1px solid #f4ac42;
    background: #32343a;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
    background-size: 33px;
}

button.positive
{
    background-image: url('../images/tick.png');
}

button.positive:hover
{
    background-color: #148277;
}

button.negative
{
    background-image: url('../images/cross.png');
}

button.disabled
{
    cursor: auto;
}

button.negative:hover
{
    background-color: #a53946;
}

.positiveColour,
button.positive,
button.positive.disabled:hover
{
    background-color: #16a79d;
}

.negativeColour,
button.negative,
button.negative.disabled:hover
{
    background-color: #cf4858;
}

button.neutral,
button.positive.neutral.disabled:hover,
button.negative.neutral.disabled:hover
{
    opacity: .5;
    background-color: #7b808e;
}



.neutralColour
{
    background-color: #7b808e;
}




/*ANSWERS
*/

#suggestedAnswerHeader
{
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    line-height: 2em;

    position: relative;

    display: none;
    float: right;

    margin-right: 3%;

    text-align: center;

    color: #32343a;
    background-color: #f4ac42;
}

#suggestedAnswerHeader:after
{
    position: absolute;
    top: 100%;
    left: 50%;

    width: 0;
    height: 0;
    margin-left: -20px;

    content: ' ';
    pointer-events: none;

    border: solid transparent;
    border-width: 20px;
    border-color: rgba(244, 172, 66, 0);
    border-top-color: #f4ac42;
}

.answer
{
    display: none;

    height: 3em;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 33px;
}

.answer.positive
{
    background-color: #16a79d;
    background-image: url('../images/tick.png');
}

.answer.negative
{
    background-color: #cf4858;
    background-image: url('../images/cross.png');
}


/* ----------- Large Display ----------- */

@media screen and (max-width: 1920px) and (max-height: 1080px)
{
    /* Styles */
}


/* ----------- Laptop HiDPI screen ----------- */

@media screen and (max-width: 1440px) and (max-height: 900px)
{
    /* Styles */
}


/* ----------- Laptop ----------- */

@media screen and (max-width: 1366px) and (max-height: 768px)
{
    /* Styles */
    #showAnswersBtn
    {
        margin-top: 0;
    }
}


/* ----------- Laptop MDPI screen ----------- */

@media screen and (max-width: 1280px) and (max-height: 800px)
{
    /* Styles */
}


/* ----------- iPad ----------- */

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape)
{
    /* Styles */
    /* Styles */
    #suggestedAnswerHeader
    {
        line-height: 2em;

        margin-right: 4%;
    }
    .box
    {
        font-size: 1.4em;
    }
}


/* ----------- iPhone 5 ----------- */

@media only screen and (min-device-width: 568px) and (min-device-height: 320px)
{
    /* Styles */
}
