/*Note: Some of this CSS has come from w3Schools.com - love it! */
.tickContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight:600;
}
.priceCalcSection{
	font-family: roboto;
}
.priceCalcSection p, .priceCalcSection a{
	font-weight:normal;
	font-family: sans-serif;
	color:#333;
}
a{
	text-decoration-style: dotted;
	color:#333;
}
a:hover{
	opacity:0.8;
}
.tickContainer input { /* Hide the default checkbox */
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
.tickContainer:hover input ~ .checkmark {
    opacity:0.9;
}

/* When the checkbox is checked, add a blue background */
.tickContainer input:checked ~ .checkmark {
    background-color: #5AB9EA;
}
.forced .checkmark, .forced input:checked ~ .checkmark{
    background-color: #8860D0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.tickContainer input:checked ~ .checkmark:after, .forced .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.tickContainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.tickContainer .essential{
	color:#8860D0;
	font-style:italic;
	font-weight:900;
}
.extraItemInput, .emailField{
	background-color: #eee;
	padding: 10px;
	width:80%;
	
	font-size:16px;
	font-weight: 600;
	outline:none;
	border:none;
	font-family: roboto;
}
.emailField{
	margin:0 auto;
}
.calcQuoteButton, .enterEmailBtn{
	padding: 10px;
	width:90%;
	margin: 10px 5%;
	font-size:16px;
	font-weight: 900;
	outline:none;
	border:none;
	background-color: #5AB9EA;
	color:white;
	margin-top:30px;
	font-family: roboto;
}
.calcQuoteButton:hover, .enterEmailBtn:hover{
	opacity:0.9;
}
.modal { /*The background for email popup*/
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #474e5d;
    padding-top: 50px;
}
.modal-content { /* Email Popup Section (actual Content) */
    padding: 16px;
    background-color: #fefefe;
    margin: 5% auto 15% auto; 
    border: 1px solid #888;
    width: 80%; 
}
hr { /* Horizontal line - looks nice. */
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* The Close Button (x) */
.close {
    position: absolute;
    right: 35px;
    top:115px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
}

.close:hover, .close:focus {
    color: #f44336;
    cursor: pointer;
}

.resultBox{
    padding: 16px;
    background-color: #fefefe;
    margin: 10px auto;
    border: 1px solid #888;
    width: 80%;
	text-align:center;
}
.resultBox h2{
	font-size:22px;
}
.extraPagesField{
    background-color: #eee;
	padding: 10px;
	width:50px;
	/*margin-bottom:20px;*/
	font-family: roboto;
	font-size:16px;
	font-weight: 600;
	outline:none;
	border:none;

}
.extraPagesLabel{
	display: inline;
    position: relative;
    padding-left: 5px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
    font-weight:600;
}
.miniSpacerNum{
	padding-top:15px;
}
.priceCalcSection{
	
	border-top:3px solid #8860D0;
}