html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
body.loading:before {
    content: ' ';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}
body.loading::after {
	content: ' ';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-image: url('/img/loading.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 200px;
	height: 100%;
    z-index: 100;
}
.panel-logout {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
}
.file-panel {
    padding: 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}
.file-panel .wrap {
    padding: 20px;
    border: 1px dashed #ccc;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.file-panel .file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
