/* Border Box */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Default elements */
form {
	margin: 0;
	padding: 0;
}

p {
    margin: 10px 0 10px 0;
	padding: 0;
}

h2 {
	font-size: 1.5em;
    margin: 1.2em 0 0.8em 0;
	padding: 0;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:focus, a:hover {
    color: #23527c;
    text-decoration: underline;
}

/* Page */
html {
    font-size: 10px;
    font-family: sans-serif;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: "DejaVu Sans", Verdana, Geneva, sans-serif;
    color: #333;
    background: #eee;
    font-size: 14px;
    line-height: 1.42857143;
    margin: 0;
}

/* Tables */

table {
    border-collapse: collapse;
}

tbody tr:nth-child(odd) {
	background-color: #fafafa;
}

tbody tr:hover {
	background-color: #f0f0f0;
}

table th { 
  text-align: left; 
  padding: 0 10px; 
}

table td { 
  padding: 8px 10px;
  vertical-align: top 
}

table td a {
  white-space: nowrap; 
}

/** Inputs */

input[type=submit], input[type=file]::file-selector-button {
	display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #67753C;
	padding: 8px 16px;
    line-height: 1.3333333;
    border-radius: 4px;
	color: #fff;
	background-color: #768745;
}

input[type=file]::file-selector-button {
	border-color: #CC9600;
    background-color: #DBA306;
	margin-right: 10px;
}

/* Custom classes */
.ombre {
    background-color: #FFF;
    box-shadow: -4px 6px 9px rgb(50 50 50 / 50%);
    margin: 15px auto 30px;
}

.container {
    padding: 30px;
    margin-right: auto;
    margin-left: auto;
	width: fit-content;
}

.row {
	margin-bottom: 16px;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.finished {
  text-decoration: line-through; 
}

.full-width {
	width: 100%;
}

.error {
  color: #a94442;
  background-color: #f2dede;
  border: 1px solid #a94442;
  padding: 16px;
}

.success {
  color: #3c763d;
  background-color: #dff0d8;
  border: 1px solid #3c763d;
  padding: 16px;
}

/* Responsive */

@media (max-width: 768px) {
table th, table td { 
  padding-left: 0; 
}
}

@media (min-width: 768px) {
.container {
    width: 750px;
}
}

@media (min-width: 992px) {
.container {
    width: 970px;
}
}

@media (min-width: 1200px) {
.container {
    width: 1170px;
}
}
