/***** Blue Stripe *****/
.blueStripe{
    background-image: url(https://www.wbitvp.com/resources/images/pages/login/blue-strip.png);
    background-size: 100% 100%;
    height: 40px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}

/***** Header *****/
.ubers {
	font-size: 25px;
	font-family: verdana;
	font-weight: bold;
	margin-top: 18px;
	margin-bottom: 0px;
	padding-left: 8px;
	color: #1f60a2
}
.ubers2 {
	font-size: 25px;
	font-family: verdana;
	margin-top: 25px;
	margin-top: 0px;
	padding-left: 8px;
}
.no-padding {
	padding-left: 0px;
	padding-right: 0px;
}

/***** Buttons *****/
.btn-warner {
	width: 160px; 
    background-color: #1f60a2;
    text-align: center;
    color: white;
    font-family: verdana;
    border-radius: 4px;
    cursor: pointer;
}

.btn-warner:hover {
	color: white;
	background-color: #003399;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
}

.radioContainer{
	display:inline-block;
	position: relative;
	cursor: pointer;
	font-family: verdana;
	font-size: 18px;
	user-select: none;
	padding-left: 30px;
}

.radioContainer input {
	display: none;
}

.radioContainer .circle {
	display: inline-block;
	width: 25px;
	height: 25px;
	background-color: #eee;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;	
}

.radioContainer:focus .radioContainer:hover .cirle {
	background-color #666666;
}

.radioContainer input:checked + .circle {
	background-color: #1f60a2;
}