﻿
/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  /*margin-bottom: 12px;*/
  margin: 10px;
  /*cursor: pointer;*/
  /*font-size: 22px;*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border:0;
}

.checkboxtext{font-size:12pt;}
.small-checkboxtext{font-size:10pt;}

.checkboxsmalltext{font-size:10pt;color:gray;}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border:1.5px solid gray;
}
.small-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border:1.5px solid gray;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

.container:hover input ~ .small-checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  /*background-color: #2196F3;*/
  background-color: green;
}

.container input:checked ~ .small-checkmark {
  /*background-color: #2196F3;*/
  background-color: green;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.small-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

.container input:checked ~ .small-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container .small-checkmark:after {
  left: 5px;
  top: 0px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


body {
}
.txtbox, .select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.lbltxtbox, .select {
  width: 100%;
  padding: 6px 20px 6px 20px;
  margin: 0px 0;
  display: inline-block;
  /*border: 1px solid #ccc;*/
  border-radius: 4px;
  box-sizing: border-box;
  color:green;
  font-size:15px;
}

.small-txtbox, .select {
  padding: 4px 6px;
  margin: 1px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.medium-txtbox, .select{
  width: 100%;
  padding: 7px 12px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.txtbox:-moz-placeholder {
   font-style: italic;  
}
.lnk-button{
    float: right; 
    border: 1px solid groove; 
    border-radius: 4px; 
    background-color: #4CAF50; 
    color: white; 
    margin: 3px; 
    padding: 5px 20px 5px 20px;
    font-size:12px;
    text-decoration: none;
}

.lnk-button:hover{
    box-shadow: 1.5px 1.5px 2.5px 1.5px #d3d3d3;
    color:white;
}

.inputx {
  width: 100%;
  background-color: #03a4ed;
  color: white;
  padding: 5px 20px;
  margin: 5px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align:center;
  vertical-align:super;
}

.inputx:hover{
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.drop-box-shadow-low
        {
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin-left: 0px;
}

.drop-light-shadow{
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/*.input[type=submit]:hover {
  background-color: #45a049;
}*/

.grpdiv {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 2px;
}


