/*
Theme Name: Novalumen Wordpress Theme - Child
Description: Child theme template for Novalumen WordpressTheme
Author: TheGravity.NET
Template: novalumen
*/

@import url("../novalumen/style.css");
@import url('claudeine.css');
@import url('addtohomescreen.css');

.wpProQuiz_box, .wpProQuiz_reviewQuestion {
	border:none !important;
	background-color:#fff !important;
}

.wpProQuiz_reviewQuestionTarget
{
  box-shadow: none !important;
  border-color:#007ee6 !important;
  color:#007ee6 !important;
}

.wpProQuiz_question_text {
	font-size:200%;
}

/* Tooltip container */
.tooltip {
    /*position: relative;*/
    display: inline-block;
	cursor:help;
	height:500px;
	width:500px;
	background-color:rgba(237,20,23,1.00);
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #666;
    color: #fff;
    text-align: center;
    padding: 5px;
	width:300px;
	 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 9999;

    bottom: 150%;
    left: 50%;
    margin-left: -155px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #666 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}