@charset "utf-8";
/* CSS Document */
.cont {
		display: block;
		background-color: #000;
		width: 100%;
		height: auto;
		font-family: Helvetica;
		color: #FFF;
		align-content: center;
		text-align: center;
		margin: 0px;
		padding: 10px;
	}
	
	.textcell1 {
		width: 100%;
		background: #000;
		border: none;
		border: 2px solid #F00;
		color: #FFF;
		font-size: 16px;
		margin-top: 10px;
		
	}
	
	
	.textcell4{
		background: #000;
		color: #FFF;
		border: none;
		border-bottom: 2px solid #F00;
		margin-right: 20px;
		font-size: 20px	
	}
	
	.opt:hover{
		background: red;
		color: #F00;
		border: #000;
		border-bottom: 2px solid #F00;
		margin-right: 20px;
		font-size: 20px	
	}
	
	
	
	.opt{
		background-color: #F00;
		color: #F00;
		border: none;
		
	}
	
	
	/* The container */
.container {
  display: block;
  position: absolute;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
	
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #000;
  border-radius: 0%;
	border: 3px solid #ED167C;

}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #F00);
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: transparent;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: relative;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 0px;
	left: 0px;
	width: 18px;
	height: 18px;
	border-radius: 0%;
	background: #ED167C;
}

	.formcont {
		width: 400px;
		margin:0px auto;
		padding-top: 100px;
		color: #FFF;
		text-align: center;
	}
	
	.options {
		display: block;
		width: 250px;
		text-align: left;
		margin: 20px auto;
	}
	.Uploadbutton{
		display: block;
		margin: auto;
		background-color: #000;
		border: solid 3px #F00;
		color: #F00;
		padding: 10px 20px;
		border-radius: 0px;
	}
	
	.Uploadbutton:hover {
		cursor: pointer;
		background: transparent;
		border: solid 3px #FFF;
		
	}
	
	
	
	.titles1{
		line-height: 10px;
		color:#FFF;
	}

@media (max-width: 600px) {
	.formcont {
		width: 280px;
		margin:0px auto;
		padding-top: 100px;
		color: #FFF;
		text-align: center;
	}
}
