.registration_box 
{
	border: 1px solid green ;
	display: block;
	width: 100%;
	height: 200%;
	font-weight:bold; 
	background-color: #50E809; 
	/* background-color: #1c87c9; */
	border-radius: 5px 5px 5px 5px;
	/* color:black; */
	/* color: #eeeeee; */
	color: #000080; 
	cursor: pointer;
	text-align:center;
	font-size: 20px;
	font-style: bold;
	margin-left: 0%;
	margin-right: 0%;
	text-decoration:none;
}
.member_menu_return 
{
	background-color: red; 
}

@keyframes glowing {
        0% {
          background-color: #2ba805;
          box-shadow: 0 0 5px #2ba805;
        }
        50% {
          background-color: #49e819;
          box-shadow: 0 0 20px #49e819;
		  /* color:white; */
        }
        100% {
          background-color: #2ba805;
          box-shadow: 0 0 5px #2ba805;
		  
        }
}
@keyframes glowing2 {
        0% {
          background-color: red;
          box-shadow: 0 0 5px #2ba805;
        }
        50% {
          background-color: #49e819;
          box-shadow: 0 0 20px #49e819;
		  /* color:white; */
        }
        100% {
          background-color: #2ba805;
          box-shadow: 0 0 5px #2ba805;
		  
        }
}
.registration_box {
        /*	animation: glowing 1300ms infinite;	*/
		cursor: pointer;
		background:linear-gradient(45deg,green,yellow,green);
		color: black;
		
}

.registration_button {
        /* 	animation: glowing 1300ms infinite;*/
		cursor: pointer;
		text-decoration: none;
		background:linear-gradient(45deg,yellow,green,yellow);
		color: black;
}

.login_button {
        /*	animation: glowing2 1300ms infinite; */
		cursor: pointer;
		text-decoration: none;
		background:linear-gradient(45deg,green,yellow,green);
		color: black;
}
.notification_refresh
{
	animation: glowing2 1300ms infinite;
	cursor: pointer;
/*	color:black;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color:red;
	font-weight:bold;
	text-align:center;
	font-size: 10px;
	width: 98%;
	border-radius: 5px 5px 5px 5px;*/
}

.registration_box:hover 
{
	border: 1px solid green ;
	width: 100%;
	height: 200%;
	font-weight:bold;
	/*	background-color: #000080; */
	background:linear-gradient(45deg,yellow,green,yellow);
	border-radius: 5px 5px 5px 5px;
	color:#50E809;
	text-align:center;
	font-size: 20px;
	font-style: bold;
	margin-left: 0%;
	margin-right: 0%;
} 
.registration_box_selected
{
	border: 1px solid green ;
	display: block;
	width: 100%;
	height: 200%;
	font-weight:bold;
	background-color: #50E809;
	border-radius: 5px 5px 5px 5px;
	color:black;
	text-align:center;
	font-size: 20px;
	font-style: bold;
	margin-left: 0%;
	margin-right: 0%;
	display:none;
}
.registration_box_disabled 
{
	border: 1px solid green ;
	display: block;
	width: 100%;
	height: 200%;
	font-weight:bold;
	background-color: grey;
	border-radius: 5px 5px 5px 5px;
	color:red;
	text-align:center;
	font-size: 20px;
	font-style: bold;
	margin-left: 0%;
	margin-right: 0%;
	cursor: no-drop;
}
.registration_box_warning {
        /*	animation: glowing2 1300ms infinite; */
		cursor: pointer;
		background:linear-gradient(45deg,green,yellow,green);
		color: black;
}
.registration_box_warning
{
	border: 1px solid green ;
	display: block;
	width: 100%;
	height: 200%;
	font-weight:bold; 
	background-color: red; 
	/* background-color: #1c87c9; */
	border-radius: 5px 5px 5px 5px;
	/* color:black; */
	/* color: #eeeeee; */
	color: #000080; 
	cursor: pointer;
	text-align:center;
	font-size: 20px;
	font-style: bold;
	margin-left: 0%;
	margin-right: 0%;
}
.submit_to_Database_box 
{
	border: 1px solid green ;
	display: block;
	width: var(--category_button_width);
	height: var(--category_button_height);
	line-height: 18px;
	font-size: var(--text_smaller);
	font-weight:bold; 
	background-color: #50E809; 
	/* background-color: #1c87c9; */
	border-radius: 5px 5px 5px 5px;
	/* color:black; */
	/* color: #eeeeee; */
	color: #000080; 
	cursor: pointer;
	text-align:center;
	font-style: bold;
	margin-left: 0%;
	margin-right: 0%;
}
.submit_to_Database_box {
    /*    animation: glowing2 1300ms infinite;	*/
		text-decoration: none;
		background:linear-gradient(45deg,green,yellow,green);
		color: black;
}

.switch {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 12px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 9px;
  width: 9px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #50E809;
  /*	background-color: #2196F3; 	*/
}

input:focus + .slider {
  box-shadow: 0 0 1px #50E809;
  /*	box-shadow: 0 0 1px #2196F3;	*/
}

input:checked + .slider:before {
  -webkit-transform: translateX(9px);
  -ms-transform: translateX(9px);
  transform: translateX(9px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 12px;
}

.slider.round:before {
  border-radius: 50%;
}
