<!--
body,td,th,select {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
}

a {
	font-family: 'Open Sans', sans-serif;
	color: #1020AA;
}

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #ECF9FF;
}

input[type=text], input[type=button], input[type=submit], button, input[file], textarea {
	font-family: 'Open Sans', sans-serif;
}

table.grid {
 	border-width: 1px 1px 1px 1px;
 	border-collapse: collapse;
 	border-style: solid;
 	border-color: #000000;

}

table.grid td {
 	border: 1px #E0E0E0 solid;
 	padding: 3px 3px 3px 3px;
 	border-collapse: collapse;
}

table.grid th {
 	border: 1px #E0E0E0 solid;
 	background-color: #3399FF;
 	padding: 3px 3px 3px 3px;
}

table.encabezado {
 	border-width: 1px 1px 1px 1px;
 	border-collapse: collapse;
 	border-style: solid;
}

table.encabezado td {
 	border: 1px #E0E0E0 solid;
}
table.nolines {
	border-width: 1px;
	border-collapse: collapse;
 	border-style: solid;
 	border-color: #FFFFFF;
}

table.nolines td {
 	border-width: 1px;
 	border-collapse: collapse;
 	border-style: none;
}

h1{
	page-break-before: always;
	font-size: 20px;
	font-weight: bold;
}

h2{
	page-break-before: always;
	font-size: 16px;
	font-weight: bold;
}

span.errortext {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #FF1111;
}

img {
	border-width: 0px;
}

.content {
	padding: 20px;
}
/* layout.css Style */
.upload-drop-zone {
  height: 200px;
  border-width: 2px;
  margin-bottom: 20px;
}

/* skin.css Style*/
.upload-drop-zone {
  color: #ccc;
  border-style: dashed;
  border-color: #ccc;
  line-height: 200px;
  text-align: center
}
.upload-drop-zone.drop {
  color: #222;
  border-color: #222;
}


-->
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #DD3737;
  -webkit-transition: .2s;
  transition: .2s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .2s;
  transition: .2s;
}

input:checked + .slider {
  background-color: #29AF43;
}

input:focus + .slider {
  box-shadow: 0 0 1px #29AF43;
}

input:checked + .slider:before {
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

@media (min-width: 768px) {
  .modal-xl {
    width: 90%;
   max-width:1200px;
  }
}

.btn-file {
    position: relative;
    overflow: hidden;
}
.btn-file input[type=file] {
    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;
    cursor: inherit;
    display: block;
}

#dropzone1 {
    width: 80%;
    height: 200px;
    border: solid 1px grey;
    margin: auto;
}

.float{
  position:fixed;
  width:50px;
  height:50px;
  bottom:20px;
  right:20px;
  background-color:#3399FF;
  color:#FFF;
  border-radius:80px;
  text-align:center;
  box-shadow: 2px 2px 3px #999;
}

.my-float{
  margin-top:22px;
}

.table-fixed tbody {
height: 200px;
overflow-y: auto;
/*width: 100%;*/
}
.table-fixed thead,
.table-fixed tbody,
.table-fixed tr,
.table-fixed td,
.table-fixed th {
display: block;
}
.table-fixed tr:after {
content: "";
display: block;
visibility: hidden;
clear: both;
}
.table-fixed tbody td,
.table-fixed thead > tr > th {
float: left;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}
 
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50%;
  border: 1px solid #ccc;
  border-top-color: #07d;
  animation: spinner .6s linear infinite;
}

/*para drop area*/
#drop-area {
  border: 2px dashed #3399FF;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
  background-color: #F9F9FB;
}
.highlight {
  border-color: #0056b3;
}