.btn {
		  background-color: DodgerBlue;
		  border: none;
		  color: white;
		  padding: 12px 16px;
		  font-size: 16px;
		  cursor: pointer;
		}

		/* Darker background on mouse-over */
		.btn:hover {
		  background-color: RoyalBlue;
		}
        html {
            width: 100%;
            height: 100%;
        }

        body {
            font-family: "robotoregular", 'Helvetica Neue', Helvetica, Arial, "sans-serif";
            font-size: 10pt;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -webkit-touch-callout: none;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            background-image: -o-linear-gradient(bottom, #DDDDDD 85%, #CCCCCC 100%);
            background-image: -moz-linear-gradient(bottom, #DDDDDD 85%, #CCCCCC 100%);
            background-image: -webkit-linear-gradient(bottom, #DDDDDD 85%, #CCCCCC 100%);
            background-image: -ms-linear-gradient(bottom, #DDDDDD 85%, #CCCCCC 100%);
            background-image: linear-gradient(bottom, #DDDDDD 85%, #CCCCCC 100%);
            overflow: hidden;
        }
		#cont { 
		  position: fixed; 
		  z-index: 300; 
		} 

		button { 
		  font-family: "Montserrat", sans-serif; 
		  z-index: 300; 
		} 
		
		.container {
		  display: block;
		  position: relative;
		  padding-left: 35px;
		  margin-bottom: 12px;
		  cursor: pointer;
		  font-size: 22px;
		  -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: 25px;
		  width: 25px;
		  background-color: #eee;
		  border-radius: 50%;
		}

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

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

		/* Create the indicator (the dot/circle - hidden when not checked) */
		.checkmark:after {
		  content: "";
		  position: absolute;
		  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: 9px;
			left: 9px;
			width: 8px;
			height: 8px;
			border-radius: 50%;
			background: white;
		}
		
		#a{
			float: left;
		}
		#b{
			float: left;
			margin: 10px;
		}
		#c{
			float: left;
			margin: 10px;
		}
		.alert {
		  padding: 20px;
		  background-color: #04AA6D;
		  color: white;
		  opacity: 1;
		  transition: opacity 0.6s;
		  margin-bottom: 15px;
		  text-align: center;
		  font-size: large;
		}
		.closebtn {
		  margin-left: 15px;
		  color: white;
		  font-weight: bold;
		  float: right;
		  font-size: 22px;
		  line-height: 20px;
		  cursor: pointer;
		  transition: 0.3s;
		}

		.closebtn:hover {
		  color: black;
		}