@charset "utf-8";
/* CSS Document */

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	background-color: black;
}

.contactForm {
	margin: 5px auto 5px auto;
	border-radius: 5px;
	background-color: #282828;
	padding: 20px;
}

.contactForm input[type=text], .contactForm textarea {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 0px solid #545454;
	border-radius: 0px;
	box-sizing: border-box;
	background-color: #101010;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}

.contactForm textarea{
	resize: vertical;
}

.contactForm input[type=submit] {
	width: 100%;
	background-color: #4CAF50;
	color: white;
	padding: 14px 20px;
	margin: 8px 0 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
}

.contactForm input[type=submit]:hover {
	background-color: #45a049;
}

.contactForm label {
	font-weight: bold;
	color: white;
	font-size: 14px;
	margin: 10px 0px -5px 0px;
}

.contactForm h1 {
	margin: 0px 0px 20px 0px;
	color: white;
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 100%;
  height: 40px;
  margin: 8px 0;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #101010;
  padding: 8px 15px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
  display: none;
  visibility: hidden;
}

.select-styled:hover {
  background-color: #101010;
}

.select-styled:active, .select-styled.active {
  background-color: #101010;
}

.select-styled:active:after, .select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #fff transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #101010;
}

.select-options li {
	margin: 0;
	padding: 12px 0px 12px 40px;
	text-indent: 15px;
	border-top: 1px solid #101010;
	-moz-transition: all 0.15s ease-in;
	-o-transition: all 0.15s ease-in;
	-webkit-transition: all 0.15s ease-in;
	transition: all 0.15s ease-in;
}

.select-options li[rel='jr2']
{
	background-image: url(img/icons/jr2_icon_small.png);
	background-repeat: no-repeat;
	background-size: 32px 32px;
	background-position: 10px 8px;
}

.select-options li[rel='jr3']
{
	background-image: url(img/icons/jr3_icon_small.png);
	background-repeat: no-repeat;
	background-size: 32px 32px;
	background-position: 10px 8px;
}

.select-options li[rel='ios']
{
	background-image: url(img/icons/ios_icon_small.png);
	background-repeat: no-repeat;
	background-size: 32px 32px;
	background-position: 10px 8px;
}

.select-options li[rel='android']
{
	background-image: url(img/icons/android_icon_small.png);
	background-repeat: no-repeat;
	background-size: 32px 32px;
	background-position: 10px 8px;
}

.select-options li:hover {
	color: #FFF;
	background: #2A2A2A;
	background-repeat: no-repeat;
	background-size: 32px 32px;
	background-position: 10px 8px;
}

.select-options li[rel='jr2']:hover {
	
	background-image: url(img/icons/jr2_icon_small.png);
}

.select-options li[rel='jr3']:hover {
	
	background-image: url(img/icons/jr3_icon_small.png);
}

.select-options li[rel='ios']:hover {
	
	background-image: url(img/icons/ios_icon_small.png);
}

.select-options li[rel='android']:hover {
	
	background-image: url(img/icons/android_icon_small.png);
}

.select-options li[rel="hide"] {
  display: none;
}

.blink_text
{
    animation:1s blinker linear infinite;
    -webkit-animation:1s blinker linear infinite;
    -moz-animation:1s blinker linear infinite;
    color: red;
}

@-moz-keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}