@charset "UTF-8";
* {
  /* margin: 0;
    padding: 0; */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  /* min-height: 100vh;
    height: 100%; */
  font-family: "Roboto Slab", serif;
  font-size: 1rem;
  line-height: 1.25;
}

body {
  min-height: 100vh;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

h1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0 10px 0 10px;
}

p {
  padding: 0 15px;
}

.container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  /* grid-template-areas: 
    "funds driveLog services"
    "documents inventory tours"; */
}

.grid a {
  text-decoration: none;
  color: #FFF;
}

@media (max-width: 900px) {
  .grid #funds {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .grid #driveLog {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .grid #services {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .grid #documents {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .grid #inventory {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .grid #tours {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

footer {
  height: 10rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  background-color: #1e4ba6;
  color: #FFF;
  border-top: 3px solid #0a8040;
}

footer p {
  padding: 50px 10px 50px 10px;
}

.tile {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tile_container {
  /* font-family: $font-family-second; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 15px 15px 0 15px;
}

.tiles-profilepage {
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.15em;
  /* margin-bottom: 10px; */
  padding: 0.5em;
}

.tile_header {
  text-shadow: 0 3px 7px #333333;
}

.profile-icons {
  height: 48px;
  width: 48px;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.tiles {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2em;
  padding: 1em;
  width: 256px;
  height: 256px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.15em;
}

.tiles:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-transition: all, .4s ease-in-out;
  transition: all, .4s ease-in-out;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tile-red {
  background-color: #d22c27;
}

.tile-blue {
  background-color: #40489d;
}

.tile-green {
  background-color: #0a8040;
}

.tile-gray {
  background-color: #e2e2e2;
  color: black;
}

#funds {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#driveLog {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

#services {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

#documents {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

#inventory {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

#tours {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.navbar {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.navbar .brand {
  display: inline-block;
  justify-items: center;
  font-weight: 500;
  color: #d22c27;
  font-size: 25px;
}

.navbar .brand .portal {
  text-decoration: none;
}

.navbar .adventure {
  font-weight: 700;
  color: #0a8040;
}

.navbar .adventure:hover {
  color: #1e4ba6;
}

.navbar .topnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.navbar .topnav a {
  color: #333333;
  text-decoration: none;
  font-size: 20px;
}

.navbar .topnav a:hover {
  color: #1e4ba6;
}

.navbar .topnav .dropdownLink {
  display: none;
}

.navbar .topnav .nav-item {
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 3px solid transparent;
}

.navbar .topnav .nav-item:hover {
  border-bottom: 3px solid #d22c27;
}

@media (max-width: 900px) {
  .navbar .topnav .nav-item {
    font-size: 16px;
    padding: 15px 10px;
  }
}

.logOut-btn {
  font-family: "Roboto Slab", serif;
  color: #FFF;
  background-color: #1e4ba6;
  font-size: 18px;
  border: none;
  padding: 15px 20px;
  border-radius: 3px;
  margin-left: 15px;
}

.logOut-btn:hover {
  background-color: #d22c27;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logIn-btn {
  font-family: "Roboto Slab", serif;
  color: #FFF;
  background-color: #1e4ba6;
  font-size: 18px;
  border: none;
  padding: 15px 20px;
  border-radius: 3px;
  margin-left: 15px;
}

.logIn-btn:hover {
  background-color: #0069d9;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.dugme {
  font-family: "Roboto Slab", serif;
  color: #FFF;
  background-color: #1fa64c;
  font-size: 18px;
  text-decoration: none;
  border: none;
  padding: 15px 20px;
  border-radius: 3px;
  margin-left: 15px;
  margin-top: 15px;
}

.dugme:hover {
  background-color: #1fb64c;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.link-space {
  margin-top: 30px;
  margin-bottom: 30px;
}

.status-btn {
  text-decoration: none;
}

.logo-m {
  height: 24px;
}

@media (max-width: 900px) {
  .logo-m {
    display: none;
  }
}

.logo-s {
  display: none;
  height: 38px;
}

@media (max-width: 900px) {
  .logo-s {
    display: inline-block;
  }
}

.icon {
  width: 128px;
  height: 128px;
}

/* .login {
    max-width: 480px;
    margin: auto;
} */
.form-group {
  margin-left: 15px;
  margin-right: 15px;
  /* width: 100%;
    max-width: 480px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    line-height: 1.5em; */
}

/* .form-control {
    margin-top: 2em;
    margin-bottom: 2em;

} */
/* table {
    min-width: fit-content;
} */
.table-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
  margin: 10px auto;
}

.table {
  table-layout: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 960px;
  border-collapse: collapse;
}

.table thead {
  background-color: #e2e2e2;
  border-radius: 0.15em;
  margin-top: 7px;
  -webkit-box-shadow: 0px 0px 2px 1px #e2e2e2;
          box-shadow: 0px 0px 2px 1px #e2e2e2;
}

.table tr {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 15px;
}

.table tbody tr {
  border-radius: 0.15em;
  /* border-top: 5px solid white;
    margin-top: 10px; */
  -webkit-box-shadow: 0px 0px 2px 1px #e2e2e2;
          box-shadow: 0px 0px 2px 1px #e2e2e2;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.table tbody tr:hover {
  background-color: #e2e2e2;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

.table thead tr th {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  padding: 12px;
  vertical-align: top;
  /* border-bottom: 1px solid color(lightgray1); */
}

.table tbody tr td {
  /* box-sizing: border-box; */
  font-family: "Lato", sans-serif;
  font-size: 14px;
  letter-spacing: 0.35px;
  padding: 5px;
  text-align: center;
  /* border-bottom: 1px solid color(lightgray1); */
}

.status {
  margin: 5px 0 5px 0;
  border-radius: 0.15em;
  color: white;
  background-color: #d22c27;
  padding: 7px;
  text-align: center;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.status:hover {
  background-color: #40489d;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

p[status="Razduženo"] {
  background-color: #0a8040;
}

p[status="Zaduženo"] {
  background-color: #d22c27;
}

.table tbody tr td:nth-last-child(1) {
  max-width: 300px;
  /* text-align: left; */
  overflow: auto;
}

@media (max-width: 768px) {
  .table thead {
    display: none;
  }
  .table, .table tbody, .table tr, .table td {
    /* background-color: color(lightgray1); */
    display: block;
    width: 100%;
  }
  .table tr {
    margin-bottom: 25px;
  }
  .table tbody tr {
    border-top: none;
  }
  .table tbody tr td {
    /* background-color: color(lightgray1); */
    text-align: right;
    padding-left: 20%;
    position: relative;
    border-bottom: 1px solid #e2e2e2;
  }
  .status {
    max-width: 100px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: 0;
  }
  .table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 15%;
    padding-left: 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #333333;
    text-align: left;
  }
  .table tbody tr td:nth-last-child(1) {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    text-align: right;
    overflow: auto;
    border-bottom: none;
  }
}
/*# sourceMappingURL=portal.css.map */