/*-------------------*/
/*-----passwordManager------*/
/*-------------------*/
/*----- Variales -----*/
@font-face {
  font-family: 'Poppins', sans-serif;

  src: url("fonts/monitorica/OT-tt/Monitorica-Bd.ttf");
}
@font-face {
  font-family: "Roboto-Thin";
  src: url("fonts/roboto/Roboto-Thin.ttf");
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/roboto/Roboto-Light.ttf");
}
/*----- Main Page -----*/
#mainPage {
  position: relative;
}
#mainPage .container {
  padding-bottom: 12em !important;
}
#mainPage .bg {
  z-index: 0;
  position: absolute;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  background-image: url("../img/background/background-texture.webp");
}
#mainPage .panel {
  position: relative;
  border: solid black;
  width: 20em;
  height: 20em;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  overflow: hidden;
}
#mainPage .panel h4 {
  font-family: 'Poppins', sans-serif;

  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid;
  padding: 1rem;
  color: black;
  z-index: 1;
}
#mainPage .panel p {
  position: absolute;
  bottom: 5em;
  width: 100%;
  text-align: center;
}
#mainPage i {
  font-size: 5em;
  width: 100%;
  text-align: center;
  margin-top: 1em;
}
#mainPage .shade {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: black;
  opacity: 0.4;
  border-radius: 1em;
}
#mainPage .panelLeft {
  background-color: #3D5A80;
}
#mainPage .panelMiddle {
  background-color: #79C1AA;
}
#mainPage .panelRight {
  background-color: #EE6C4D;
}
#mainPage .panel:hover {
  transform: scale(1.1);
  cursor: pointer;
}
#mainPage .tile {
  position: absolute;
  top: 0;
  width: 100%;
  height: 25em;
}
#mainPage .header {
  z-index: 1;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 8em;
  line-height: 3em;
}
#mainPage img {
  height: 5em;
}
#mainPage .container {
  padding-top: 25em;
  padding-top: 25em;
  padding-bottom: 12em;
}
#mainPage .panelGrid {
  display: grid;
  gap: 1em;
  align-items: center;
  justify-content: center;
  padding-bottom: 3em;
}
#mainPage .panel:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
#mainPage .panel:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
#mainPage .panel:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
#mainPage .panelPopup {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#mainPage .panelPopup .shade {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 0em;
}
#mainPage .panelPopup:not(.active) {
  display: none;
}
#mainPage .flexbox {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#mainPage .popupContent {
  min-width: 35em;
  min-height: 35em;
  background-color: white;
  border-radius: 1em;
  margin: auto;
  text-align: center;
}
#mainPage .popupContent p {
  padding: 3em;
  width: 25em;
  padding-top: 1em;
}
#mainPage .popupContent i {
  padding-bottom: 0.5em;
}
#mainPage .popupContent h3 {
  font-family: 'Poppins', sans-serif;

  font-size: 4em;
}
#mainPage .popupLeft h3 {
  color: #3D5A80;
}
#mainPage .popupMiddle h3 {
  color: #79C1AA;
}
#mainPage .popupRight h3 {
  color: #EE6C4D;
}
#mainPage .popupContent:not(.active) {
  display: none;
}
#mainPage .bottom {
  text-align: center;
}
#mainPage h3 {
  font-family: 'Poppins', sans-serif;

  padding-bottom: 1.5rem;
}
#mainPage a {
  position: relative;
}

/*----- Second Page -----*/
#secondPage .container {
  padding-top: 20em;
}
#secondPage .background {
  position: relative;
  width: 100%;
  z-index: -1;
}
#secondPage .background img {
  position: absolute;
  height: 50em;
}
#secondPage .background .bg-left {
  left: 0;
  top: 20em;
}
#secondPage .background .bg-right {
  right: 0;
  top: 0;
}
#secondPage .wrapper {
  max-width: 60%;
}
#secondPage h3 {
  text-align: center;
  padding-bottom: 1.5em;
  line-height: 1em;
}
#secondPage span {
  color: grey;
  font-size: 1.5rem;
  font-family: "Roboto-Thin";
}
#secondPage table {
  border-spacing: 0.5em;
}
#secondPage th {
  color: white;
  font-family: 'Poppins', sans-serif;

  font-size: 1.5em;
}
#secondPage th:nth-child(1) {
  background-color: lightgrey;
}
#secondPage th:nth-child(2) {
  background-color: #EE6C4D;
}
#secondPage th:nth-child(3) {
  background-color: #3D5A80;
}
#secondPage tr {
  font-size: 1.5em;
}
#secondPage td:nth-child(1) {
  width: 1000em;
}
#secondPage td {
  background-color: lightgrey;
  padding-left: 0.5em;
  width: 30%;
}
#secondPage i {
  text-align: center;
  color: black;
}
#secondPage td:not(:first-child) {
  text-align: center;
}
#secondPage .heading td {
  background-color: transparent;
}
#secondPage .heading td:nth-child(1) {
  font-family: 'Poppins', sans-serif;

  font-size: 1.3em;
}

/* ----- Seperator ----- */
.parallax {
  position: relative;
}
.parallax .shade {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: black;
  opacity: 0.5;
}
.parallax .bg {
  background-image: url("../img/background/passwordManager-seperator.webp");
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 20em;
}/*# sourceMappingURL=passwordManager.css.map */