fieldset {
	padding: 15px 15px 0 15px;
  border: 2px solid red;
  margin-bottom: 15px;
}

.fullborder {
	border:thin #999 solid;
	border-collapse:collapse;
	border-spacing:0px;
}

.bottomborder {
	border-bottom:thin #999 solid;
	border-collapse:collapse;
	border-spacing:0px;
}

.header {
	text-align:center;
	font-weight:bolder;
}

.datafield {
	text-align:center;
	vertical-align: top;
}

.description {
	padding-right:20px;
  padding-left: 10px;
  grid-row: span 3;
}

@media (min-width: 850px) {
  .benefitsection {
    display: grid;
    grid-template-columns: .55fr .44fr;
    grid-gap: 20px;
  }
}

@media (max-width: 849px) {
  .benefitsection {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }  
}

.optionstable {
  margin-top: 0px !important;
  /* //table-layout: auto !important; */
}

.dashboard {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
}

.dashboard-even {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.hilite {
	display:block;
	background-color:#CCC;
	padding:5px 0 5px 10px;
}

.warning {
	color:#F33 !important;
	text-transform:uppercase;
}

.colorwarning {
	color:#F33 !important;
}

.bigdone {
	color:green;
	font-weight:bold;
	font-size:x-large;
}
.bigneed {
	color: red;
	font-weight:bold;
	font-size:x-large;
}
.bigtext {
    font-size: larger;
    margin-left: 20px;
}

fieldset.good {
	border-color:#0F0;
	width: 81%;
}

.hilite2 {
	background-color:#F2CE68;  // f2dede for redish, fcf8e3 for yellowish
}
.hilite2 > p {
  margin-bottom: 7px;
}

td.hilite2 > p {
    display: grid;
    grid-template-columns: [label] 3fr [yes] 1fr [no] 1fr;
    padding: 1em;
    align-items: center;
    grid-column-gap: 1em;
}
td.hilite2 > p strong {
    grid-column: label;
}

td.fullwidth > p {
  grid-template-columns: [label] 1fr;
}
td.hilite2 > p input {
    display: none;
}
td.hilite2 > p input:checked + span {
    background-color: var(--color-purple);
    color: var(--color-contrasting-black);
}

td.hilite2 > p label {
    margin-bottom: 0;
}

td.hilite2 > p span {
    ine-height: 1;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.85em 1em;

    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1em;
    text-align: center;
    margin-left: 0;
    border-radius: 0.5em;
    background-color: white;

    cursor: pointer;
}

td.hilite2 > p input:checked + span::after {
    content: " \2713";
}

td.hilite2 > p input + span::after {
    content: "";
}




.condensed {
	padding: 1px 0px 0px 0px !important;
}

.electedhilite {
	font-size:medium;
	font-weight:bold;
}

label {
  display: inline-block !important;
}

/* correcting the spacing with arrows on pull-downs */
select {
  padding-right: 34px;
  max-width: 100%;
}
label, input {
	max-width: 100%;
}

.btn:hover,
.btn:focus {
  /* color: #333333 !important; */
  text-decoration: underline;
  border-width: 1px;
  border-style: solid;
}

.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled]{
  cursor: not-allowed;
  pointer-events: none;
}

.btn-success, 
.btn-success:hover,
.btn-success:focus {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}


.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #47a447;
  border-color: #398439;
}

.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none;
}

.btn-primary {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #ffffff;
  border-color: #cccccc;
}

.btn-info {
  color: #ffffff;
  background-color: #5bc0de !important;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #39b3d7;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ed9c28;
  border-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-image: none;
}

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #d2322d;
  border-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-image: none;
}

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btnlogout {
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    transition: all 0.3s;
    border: 3px solid #d69418;
    border-radius: 4px;
    color: #d69418;
    overflow: hidden;
}

.btnlogout:hover {
    color: #4D4D4F;
    background-color: #d69418;
}

.hilite > .btn:hover {
  color:#242121 !important;
}

.entry-content form input[type=number]{
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555;
    background-color: #FFF;
    background-image: none;
    border: 1px solid #CCC;
    border-radius: 4px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;

}

/* The fancy checkbox */
/* Customize the label (the container) */
.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 checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ddd;
}

/* On mouse-over, add a grey background color */
/*
.container:hover input ~ .checkmark {
  background-color: #ccc;
}
*/

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

.container input[disabled]:checked ~ .checkmark {
  background-color: #ddd;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .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;
  transform: rotate(45deg);
}

@media screen and (max-width: 640px) {
	.finaltable { display: block; }
	.finaltable tbody { display: block; }
	.finaltable tr { display: block; }
	.finaltable td { display: block; width: 100%; }
}
