@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700');

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  background: #ececec;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
}

main {
  display: table;
  position: relative;
  width: 100%;
}

header {
  background: #45515A;
  padding: 4rem 4rem 8rem 4rem;
}

table {
  border-collapse: collapse;
  margin: -4rem 4rem 4rem 4rem;
}

tr {
  background: #fff;
}

td, th {
  padding: 1.2rem 1.5rem;
  white-space: nowrap;
}

th {
  background: #646a70;
  color: #fff;
  text-align: right;
}

th:first-child {
  text-align: left;
}

tr:first-child th {
  padding-bottom: 0;
  text-align: left;
}

tbody td {
  border-top: 0.2rem solid #ececec;
  text-align: right;
}

tbody td:first-child {
  text-align: left;
}

.row_title {
  font-weight: 700;
}

tr:last-child td {
  font-weight: 700;
}

caption {
  background: #ddd;
  caption-side: bottom;
  padding: 2rem;
}

input, select, button {
  border: 0.1rem solid transparent;
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
}


input:invalid {
  border: 0.1rem solid red;
}

select {
  background: #45515A;
  color: #fff;
}

select:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.select--vegobjekttype {
  background: #646a70;
  margin-right: 1rem;
  padding: 0.8rem 1rem;
  width: 31rem;
}


table select {
  background: #646a70;
  font-weight: 700;
  padding: 0;
}

button {
  position: relative;
  background: #f67f00;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  padding: 0.9rem 1rem;
  transition: background 0.5s;
}

button:hover {
  background: #ff9600;
}

.progress-indicator {
  background: #5db82e;
  height: 0.5rem;
  left: 0;
  position: absolute;
  top: 0;
}




.spinner {
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 8.3rem;
  height: 2.9rem;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: rgba(255, 255, 255, 1);
  height: 100%;
  width: 0.3rem;
  display: inline-block;
  margin-right: 0.2rem;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
  margin-right: 0;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}


.filters {
  display: flex;
  padding-top: 4rem;
}

.filters__filter {
  margin-right: 4rem;
  position: relative;
}

.filters__searchinput {
  padding: 0.8rem 1rem;
}

.filters__resultlist {
  position: absolute;
  left: 0;
  list-style: none;
  margin: 0 0.5rem;
  top: 3rem;
}

.filters__resultlistitem {
  background: rgba(255, 255, 255, 1);
  margin: 0 0 0.2rem 0;
}

.filters__filterlist {
  list-style: none;
  margin: 2rem 0 0 0;
}

.filters__filterlistitem {
  background: #646a70;
  color: rgba(255, 255, 255, 1);
  font-size: 1.2rem;
  margin: 0 0 0.2rem 0;
  padding: 0.5rem 1rem;
}


