/*
 * Project : PortalHuntWebPortals
 * Author : Andreas 'Crytix' Schlaupitz
 * Copyright © 2020 - 2021  - https://crytix.rocks - All Rights Reserved.
 * Filename : main.css
 * Last Updated : 23.02.21, 21:41
 */

.header {
  background-image: url('../images/header-background.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.overhead {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}

.description {
  left: 50%;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -55%);
  text-align: center;
}

.description h1 {
  color: #db4a39;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.description p {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.5;
}

.description button {
  border:1px solid #db4a39;
  background:#db4a39;
  border-radius: 0;
  color:#fff;
}

.description button:hover {
  border:1px solid #fff;
  background:#fff;
  color:#000;
}

.upload {
  z-index: 10;
  background-color: #d2d2d2;
  opacity: 0.7;
  left: 50%;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -55%);
}

body {
  padding: 0;
  margin: 0;
  background: #d2d2d2;
}

.navbar {
  background: #db4a39;
}

.nav-link,
.navbar-brand {
  color: #f1f1f1;
  cursor: pointer;
}

.nav-link {
  margin-right: 1em !important;
}

.nav-link:hover,
.navbar-brand:hover {
  color: #2d2d2d;
}

.navbar-collapse {
  justify-content: flex-end;
}

.page-footer {
  background-color: #2d2d2d;
  color: #ccc;
}

.footer-copyright {
  color: #666;
  padding: 15px 0;
}

.container {
  padding: 2rem 0rem;
}

h4 {
  margin: 2rem 0rem 1rem;
}

.table-image td, th {
  vertical-align: middle;
}

.center-cropped {
  object-position: center; /* Center the image within the element */
  height: auto;
  width: auto;
  max-width: 100px;
  max-height: 100px;
}

.portalimg {
  position: relative;
  width: 100px;
  height: 100px;
  display: table-cell;
  vertical-align: middle;
}

.portalimg.found {
  filter: sepia(100%);
}

.portalimg.found:before {
  content: 'FOUND';
  font-weight: bold;
  font-size: 120%;
  color: white;
  text-shadow:  1px  1px 1px black,
  1px -1px 1px black,
  -1px  1px 1px black,
  -1px -1px 1px black;
  position: absolute;
  left: 0;
  text-align: center;
  top: 36px;
  width: 100%;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(35, 35, 35);
  width: 100%;
  height: 100%;
  transition: .5s ease;
  opacity:0.7;
  color: #d2d2d2;
  font-size: 18px;
  text-align: center;
  padding: 36px 0;
}

.table td {
  width: 100px;
}

.accordion-section .panel-default > .panel-heading {
  border: 0;
  background: #f1f1f1;
  padding: 0;
}
.accordion-section .panel-default .panel-title a {
  display: block;
  font-style: italic;
  font-size: 1rem;
  color: #db4a39;
}
.accordion-section .panel-default .panel-title a:after {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-size: 2rem;
  content: "\f106";
  color: #db4a39;
  float: right;
  margin-top: -5px;
}
.accordion-section .panel-default .panel-title a.collapsed:after {
  content: "\f107";
}
.accordion-section .panel-default .panel-body {
  font-size: 1rem;
}