#editor{
    height:100%;
}
.templateP{
    width:70%;
    overflow:auto;
}
select option[value="sample01.jpg"]{
    background-image:url('../imgs/sample01.jpg');
}
.tempBox {
    border: 2px solid #d8d8d8;
    border-radius: 10px;
    height: 500px;
    margin-left: 5%;
    margin-right: 5%;
    align-items: center;
    justify-content: center;
    display: flex;
    font-weight: bold;
    font-size: x-large;
    background: #fafafa;
}

.l-num {
    border: 1px solid #2f83bf;
    color: white;
    background: #a5c2d8;
    font-weight: bold;
    width: 40px;
    text-align: center;
    display: inline-block;
    padding: 4px;
    margin-right: 10px;
    border-radius: 8px;
}

.editBotNav{
    position: fixed;
    bottom: 0;
    width: 70%;
    background: black;
    background-color: black;
    color: white;
    padding: 10px;
}

.sendEditor{
    background: #2fa62f;
    border: 1px solid #237b23;
    border-bottom: 4px solid #237b23;
}

.close{
    cursor: pointer;
    float: right;
    background: maroon;
    width: 20px;
    height: 20px;
    color: white;
    text-align: center;
    font-weight: bold;
}

.scOpt{
    width: 50%;
    font-family: Arial,Verdana,Tahoma,'Museo3';
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0px 0px 3px #747474;
    border: 1px solid #464646;
    border-radius: 5px;
    font-size: medium;
    padding: 5px 10px;
    margin: 0px 1px;
    cursor: pointer;
}

label.blue{
    color: white;
    background: #9bc7e8;
    padding: 5px 0px;
}

#editor label{
    color:white;
    font-weight:normal;
}

.dashBx {
    background: white;
    box-shadow: 0px 1px 3px;
    border-radius: 5px;
    margin: 0px 10px 10px 0px;
    width: 150px;
    text-align: left;
    padding: 20px;
}

.dashBx .title{
    color: #818183;
    font-size: medium;
    padding-bottom:10px;
}

.dashBx .num{
    color: black;
    font-size: xx-large;
}

.dashBx .action{
    font-size: x-small;
    color: #818183;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
}

.error td {
    border: 1px solid #b03636;
}
.error th{
    background: #b03636;
}

.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: medium;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
    margin: 15px 0px 5px;
    font-size: medium;
    font-weight: normal;
    text-align: left;
    color: gray;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

.container:hover input ~ .checkmark {
  background-color: #ccc;
}

.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
 	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

#reports .dashBx .num{
    font-size:x-large;
}

.formB{
    padding: 1px 10px;
    border: 1px solid #1c6598;
    border-radius: 3px;
    margin: 0px 3px;
    cursor: pointer;
    text-align:center;
    box-shadow: 0px 1px 3px;
    text-decoration:none;
    color: #1c6598;
}

a:link, a:visited {
  text-decoration: none;
}