.title_application_image{
	margin: 10px 0 10px 30px;
}

.infoBox_controls{
	clear: both;
	margin-left: 30px;
	margin-top: 10px;
}

.title_infoBox_controls{
	width: 250px;
	padding: 5px 0 5px 0;
	margin-right: 15px;
	text-align: center;
	border-radius: 10px;
	border: 1px solid #000;	
	float: left;
}

.selector{
	display: block;
	float: left
}

@media only screen and (max-width: 364px){
	
	.title_application_image{
		margin: 5px 0 5px 10px;
	}
	
	.infoBox_controls{
		clear: both;
		margin-left: 10px;
		margin-top: 10px;
	}
	.title_infoBox_controls{
		width: 50%;
		padding: 5px 0 5px 0;
		margin-right: 15px;
		text-align: center;
		border-radius: 10px;
		border: 1px solid #000;
		font-size: 12px;	
	}
}

/* Slider Switch*/
.switch 
{
  position: relative;
  display: block;
  margin: 0 auto 0 auto;
  top: 4px;
  vertical-align: middle;
  width: 60px;
  height: 20px;
}

.switch input 
{
	display:none;
}

.slider 
{
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 34px;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 1px;
  background-color: white;
  border-radius: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider 
{
  background-color: #2196F3;
}

input:focus + .slider 
{
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before 
{
  transform: translateX(34px);
}