.qti-choiceInteraction {
    &.maskable {

        .qti-choice {
            .answer-mask {
                position: absolute;
                top: 0;
                right: 0;

                height: 100%;
                padding: 5px 10px 0 10px;

                z-index: 10;

                color: $info;
                border : solid 1px $textColor;
                background-color: whiten($darkBlueGrey, .4);
                text-align: right;
                vertical-align: middle;

                &:hover {
                    color: whiten($info, .3);
                }

                .answer-mask-toggle:before {
                    @include tao-icon-setup;
                    @include icon-eye-slash;
                }
            }
            .label-content {
                padding-right: 40px;
            }

            &.masked {
                .answer-mask {
                    width: 100%;

                    .answer-mask-toggle:before {
                        @include tao-icon-setup;
                        @include icon-preview;
                    }

                    &:hover {
                        background-color: whiten($darkBlueGrey, .5);
                    }
                }
            }
        }
    }

}
