body {
	/* overflow-y: scroll; */
	background:#fefcfc;
	/* font-family: "Raleway", sans-serif; */
	/* font-family: 'Source Code Pro', sans-serif; */
	font-family: "Roboto Flex", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
}

body:has(.navbar-default) {
	padding-top: 100px;
}
.container-fluid {
	max-width: 1900px;
}

img {
	max-width: 100%;
	height: auto !important;
}
@media (min-width: 1600px) {
    .container {
        width: 1570px;
    }
}

.navbar-brand {
    /* padding: 0px 5px; */
}

.navbar-default {
    background-color: #fff;
    border-color: #e7e7e7;
    border-radius: 0;
}

@media (min-width: 768px) {
    .navbar-nav>li>a {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.dropdown-menu>li>a {
    padding: 7px 20px;
}

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 0px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 4px;
}

.ncard {
    font-size: 14px;
    font-family: monospace;
    margin: 10px 0;
    padding: 20px 20px 10px;
    border: 1px solid #ccc;
    background: #fff;
    overflow: hidden;
	cursor: pointer;
}
.card {
    font-size: 14px;
    border-radius: 5px;
    margin: 10px 0;
    padding: 20px 20px 10px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 12px 12px -12px #eee;
	/* user-select: none;  */
}
.card .card {
	/* overflow:visible; */
}

.card .rheader {
	cursor: pointer;
	
}
.card h4 {
    padding: 2px 20px;
    margin: -10px -20px 5px;
	color:inherit;
}

.card h2 {
    background: #eee;
    padding: 10px;
    margin: -20px -20px 25px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #444;
    text-shadow: none;
}
.card h3 {
    background: #f7f7f7;
    padding: 10px;
    margin: -20px -20px 25px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #444;
    text-shadow: none;
}

.card .sub-right {
	text-align: right;
	margin-top: -15px;
	margin-bottom: 15px;
}

.alert-container{
  position:fixed;
  bottom:0;
  right:20px;
  z-index:9999;
}



.fcontrol {
    font-family: system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
    width: fit-content;
}
.fcontrol + .fcontrol {
  margin-top: 1em;
}

.form-control--disabled {
  color: var(--form-control-disabled);
  cursor: not-allowed;
}


input[type=date] {
	width: auto;
}
input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=checkbox]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
}

input[type=checkbox]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}

td.small {
	width:10px;
	white-space: nowrap;
}
td.nowrap {
	width:100px;
	white-space: nowrap;
}

tr.inactive {
    background: #ffefef;
    font-style: italic;
}

tr.notstarted {
    background: #fff0f0;
}
tr.started {
    background: #f2faff;
}
tr.finished {
    background: #f0fff0;
}

textarea.summernote {
	height: 400px;
	
}

/*
 * jQuery Minimun Password Requirements 1.1
 * http://elationbase.com
 * Copyright 2014, elationbase
 * Check Minimun Password Requirements
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
*/
#pr-box {
    font: 13px/16px sans-serif;
	position: absolute; 
	z-index:1000;
	display:none;
	width:300px;
	max-width:100%;
}
#pr-box i { 
    width: 0; 
	height: 0; 
	margin-left: 20px;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #23a86d;
}
#pr-box-inner {
	margin-top: 6px;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
#pr-box p {
	padding:20px;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
}
#pr-box ul {
	padding:7px;
    -webkit-border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
}
#pr-box ul li {
	list-style: none;
	padding:7px;
}
#pr-box ul li span {
	width:15px;
	height:15px;
	display:block;
	float:left;
	border-radius:100%;
	margin-right:15px;
}
#pr-box.light {
	color:#2d2f31;
}
#pr-box.light p {
	background-color:#23a86d;
	color:#f1f1f1;
}
#pr-box.light ul {
	background-color:#f1f1f1;
}
#pr-box.light ul li span {
	background-color:#f1f1f1;
	border:3px solid #23a86d;
}
#pr-box.light ul li span.pr-ok {
	background-color:#23a86d;
	border:3px solid #23a86d;
}
#pr-box.dark {
	color:#f1f1f1;
}
#pr-box.dark p {
	background-color:#23a86d;
}
#pr-box.dark ul {
	background-color:#2d2f31;
}
#pr-box.dark ul li span {
	background-color:#2d2f31;
	border:3px solid #23a86d;
}
#pr-box.dark ul li span.pr-ok {
	background-color:#23a86d;
	border:3px solid #23a86d;
}
