@charset "UTF-8";
.btn_file{
    position: relative;
    text-align: center;
    overflow: hidden;
}
.fileInputButton{
	position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}
.vspace1rem{
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.hideme{
	display:none;
}


/* Create a custom checkbox */
.checkcontainer {
  display: inline;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #ccc;
}

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

.checkcontainer input:checked ~ .checkmark {
  background-color: #eee;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
  left: 9px;
    top: 3px;
    width: 6px;
    height: 15px;
    border: solid #027aff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(48deg);
    -ms-transform: rotate(48deg);
    transform: rotate(50deg);
}
/* Check box end */
#secureinfo{
	color : #bbb;
	font-size: 1.2rem;
	transition : transform 0.2s ease-in-out;
	cursor : pointer;
}
#secureinfo:hover{
	color:#71e6cb;
	transform : scale(1.1);
}
.lefted{
	width: 70%;
	text-align: left;
	font-weight: bold;
}
.righted{
	width: 30%;
	text-align: left;
}
.centero{
	text-align: center;
}
.bluebg{
	background-color: #f0f8ff;
}
.paginate{
    cursor: pointer;
    height: 30px;
    margin: 0 5px;
    display: inline-block;
    line-height: 30px;
    border-radius: 50%;
    width: 30px;
    box-shadow: 0px 0px 2px 3px rgba(0,0,0,0.2);
}
#history_pagination{
	font-size: 1.3rem;
}
.paginate.active{
	color : #15c554;
	font-weight: bold;
}
.generatebutton{
	padding: 5px;
	border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 0.7rem;
    margin: 0 5px;
    box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.2);
}