@charset "UTF-8";
.navbar-brand {
  font-weight: 100;
  font-size: 1.5em !important;
  color: black !important;
}

.navbar-brand span {
  font-weight: 600;
}

nav {
  background-color: white;
}

nav > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

nav .container > ul {
  text-align: center;
  padding: 0;
  margin: 0;
  display: none;
}

nav .container > ul li {
  list-style-type: none;
  display: inline-block;
  padding: 0.7em 0em;
  margin: 0em 2em;
  border-bottom: 2px solid transparent;
}

nav .container > ul li a {
  padding: 0em 0em 0.4em;
}

.nav-underline {
  border-bottom: 2px solid #557a94;
}

nav .nav-content {
  margin: 0;
  padding: 0;
}

nav .container > ul a {
  color: #7395ae;
  text-transform: uppercase;
  font-weight: 400;
}

nav .container > ul a:hover {
  text-decoration: none;
  color: #7395ae;
}

.nav-container {
  position: relative;
}

.nav-content-pos {
  background-color: white;
  height: 400vh;
  -webkit-animation: dropOut-mini 0.4s;
          animation: dropOut-mini 0.4s;
  width: 100%;
  left: -100%;
  top: -1px;
  z-index: 1;
  overflow: hidden;
  position: absolute;
  display: none;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
}

.nav-content {
  width: 100%;
}

.nav-content-animated-mini {
  background-color: white;
  -webkit-animation: drop-mini 0.4s !important;
          animation: drop-mini 0.4s !important;
  display: block;
  width: 100%;
  left: 0%;
}

.nav-content-animated {
  background-color: white;
  -webkit-animation: drop 0.4s !important;
          animation: drop 0.4s !important;
  display: block;
  min-height: 300px;
}

.hidden {
  display: none;
}

.show {
  display: block !important;
}

.nav-content .container {
  padding: 2em 1em !important;
  position: relative;
}

.nav-content .container h5 {
  font-weight: 100;
}

.nav-content .container .nav-content-links {
  display: block;
}

.nav-content .hidden {
  border-bottom: 1px solid #7395ae;
}

.nav-content-links ul {
  margin: 0 3em 1em 0;
  padding: 0;
}

.nav-content-links ul a {
  color: #7395ae;
}

.nav-content-links ul li {
  list-style-type: none;
}

.nav-content-links img {
  height: 200px;
  position: absolute;
  right: 0px;
}

.nav-content .nav-content-links img {
  display: none;
}

@-webkit-keyframes drop-mini {
  from {
    left: -100%;
  }
  to {
    left: 0%;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes drop-mini {
  from {
    left: -100%;
  }
  to {
    left: 0%;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@-webkit-keyframes dropOut-mini {
  from {
    left: 0;
  }
  to {
    left: -100%;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes dropOut-mini {
  from {
    left: 0;
  }
  to {
    left: -100%;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@-webkit-keyframes drop {
  from {
    min-height: 0px;
  }
  70% {
    min-height: 320px;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  to {
    min-height: 300px;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes drop {
  from {
    min-height: 0px;
  }
  70% {
    min-height: 320px;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  to {
    min-height: 300px;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@-webkit-keyframes dropOut {
  from {
    min-height: 300px;
  }
  20% {
    min-height: 320px;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  to {
    min-height: 0px;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes dropOut {
  from {
    min-height: 300px;
  }
  20% {
    min-height: 320px;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  to {
    min-height: 0px;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
.hamburger {
  display: inline-block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 2px;
  background-color: #7395ae;
  margin: 6px 0;
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  transform: rotate(-45deg) translate(-9px, 2px);
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  transform: rotate(45deg) translate(-8px, -3px);
}

@media (min-width: 1000px) {
  nav .container > ul {
    display: block;
  }
  .nav-content-pos {
    height: 0px;
    -webkit-animation: dropOut 0.4s;
            animation: dropOut 0.4s;
    width: 100%;
    left: 0%;
  }
  .nav-content .nav-content-links img {
    display: block;
  }
  .hamburger {
    display: none;
  }
  .nav-content .container .nav-content-links {
    display: flex;
  }
  .nav-content .hidden {
    border-bottom: none;
  }
}
.overview {
  background-image: linear-gradient(to right, black, #557a94);
  padding: 2em 1em;
  color: white;
}

.overview ul h3 {
  font-weight: 100;
}

.overview ul small {
  font-weight: 100;
}

.overview ul {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

.overview ul li {
  list-style-type: none;
  margin: 1em 0em;
  padding: 1em;
  border: solid 1px #7395ae;
  width: 100%;
}

.overview ul li:hover {
  background: transparent;
}

.overview ul li i {
  display: block;
  margin: 0.5em;
}

.overview ul li button {
  display: block;
  width: 50%;
  margin: 0 auto;
}

.stateOk {
  color: lime;
}

.stateOkForWhite {
  color: rgb(21, 182, 0);
}

.stateNok {
  color: salmon;
}

.circular-landscape {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}

.profile {
  padding: 2em 2em;
  background-color: white;
}

.profile img {
  width: auto;
  height: 100%;
  margin-left: -25px;
  float: left;
}

.profile h3 {
  font-weight: 100;
  display: inline-block;
  margin: 0em 1em;
}

.profileBox {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}

@media (min-width: 1000px) {
  .circular-landscape {
    width: 200px;
    height: 200px;
  }
  .profile img {
    margin-left: -50px;
  }
  .overview ul li {
    width: 30%;
    margin: 1em 1em;
  }
  .profile h3 {
    margin: 0em 2em;
  }
}
.teams td img {
  height: 50px;
}

.team img {
  width: 200px;
}

.omaLine {
  display: block;
  width: 60%;
}

.omaLine:nth-child(odd) {
  background-color: lightgray;
}

.omaResult {
  display: inline-block;
  width: 35%;
}

.omaResultField {
  display: inline-block;
  width: 5%;
  background-color: white;
  border: 1px #557a94 solid;
  height: 30px;
  margin: 0px 1em 0px;
  padding: 0px;
}

.weddingTR {
  background-color: #edddd0;
  color: black;
  position: relative;
  font-size: 1em;
}

.weddingImage {
  height: 100vh;
  width: 100vw;
  background-image: url("/images/wedding/ringe.jpg") !important;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
  .weddingImage {
    background-attachment: inherit;
  }
}
.weddingImage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
}

.weddingImage img {
  width: 300px;
  border-radius: 50%;
  filter: grayscale(100%);
}

.weddingImage .info {
  position: absolute;
  text-align: center;
  z-index: 2;
}

.weddingImage .info h1 {
  font-family: "Parisienne", cursive;
  font-size: 2em;
  padding: 0.7em;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0.4);
}

.weddingImage .info h2 {
  font-weight: 100;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0.5em;
  text-transform: uppercase;
  font-size: 1em;
}

.weddingImage .illyspecial {
  letter-spacing: 0.4em;
}

.weddingImage .overlay {
  background-color: rgba(255, 182, 193, 0.2);
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .weddingTR {
    font-size: 1.3em;
  }
  .weddingImage .info h1 {
    font-size: 5em;
  }
  .weddingImage .info h2 {
    font-size: 1.5em;
  }
}
@media (-ms-high-contrast: none) {
  .weddingImage .info {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    height: 50%;
    width: 70%;
  }
}
.weddingTR .details-complete {
  padding: 1em 0em;
}

.weddingTR .details {
  padding: 1em 0em;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(156, 139, 132, 0.2);
  margin: 0em 0.5em;
}

.weddingTR .details:first-of-type {
  border-top: none;
}

.weddingTR .details:nth-child(odd) {
  flex-direction: row-reverse;
}

.weddingTR .details:nth-child(even) {
  flex-direction: row;
}

.info-details {
  padding: 1em 1em 0em 1em;
  width: 100%;
}

.info-details h2 {
  font-weight: 100;
  font-size: 1.7em;
  padding: 0em 0em 1em 0em;
  font-family: "Parisienne", cursive;
}

.info-details span {
  font-size: 1.5em;
}

@media (min-width: 1024px) {
  .weddingTR .details-complete {
    padding: 5em 0em;
  }
  .info-details {
    padding: 2em 2em 0em 2em;
    width: 50%;
  }
  .weddingTR .details {
    border-top: none;
    margin: 0em;
  }
}
.covid {
  background-color: salmon;
  padding: 1em;
  color: white;
  align-items: center;
  left: 0;
  bottom: 0;
  width: 100%;
}

.covid .covid-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.covid > .container > span {
  vertical-align: middle;
  font-size: 3em;
  padding: 0em 0em 0.2em 0em;
}

.covid p {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

@media (min-width: 1024px) {
  .covid .covid-flex {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .covid > .container > span {
    padding: 0em 1em 0em 0em;
  }
}
.polaroid {
  background: #fff;
  padding: 1rem;
  box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.2);
}

.polaroid > img {
  max-width: 100%;
  height: auto;
}

.caption {
  font-size: 1.8rem;
  text-align: center;
  line-height: 2em;
}

.caption span {
  display: inline-block;
  padding: 0em 0em 0em 1em;
}

.item {
  width: 90%;
  display: inline-block;
  margin-top: 2rem;
  filter: grayscale(70%);
}

.item .polaroid:before {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.35s;
}

.item1 {
  transform: scale(0.8, 0.8) rotate(5deg);
  transition: all 0.35s;
}

.item1 .polaroid:before {
  transform: rotate(6deg);
  height: 20%;
  width: 47%;
  bottom: 30px;
  right: 12px;
  box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.4);
}

.item:nth-of-type(4n+2), .item2 {
  transform: scale(0.8, 0.8) rotate(-5deg);
  transition: all 0.35s;
}

.item:nth-of-type(4n+2) .polaroid:before, .item2 .polaroid:before {
  transform: rotate(-6deg);
  height: 20%;
  width: 47%;
  bottom: 30px;
  left: 12px;
  box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.4);
}

.item:nth-of-type(4n+4), .item4 {
  transform: scale(0.8, 0.8) rotate(3deg);
  transition: all 0.35s;
}

.item:nth-of-type(4n+4) .polaroid:before, .item4 .polaroid:before {
  transform: rotate(4deg);
  height: 20%;
  width: 47%;
  bottom: 30px;
  right: 12px;
  box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.3);
}

.item:nth-of-type(4n+3), .item3 {
  transform: scale(0.8, 0.8) rotate(-3deg);
  transition: all 0.35s;
}

.item:nth-of-type(4n+3) .polaroid:before, .item3 .polaroid:before {
  transform: rotate(-4deg);
  height: 20%;
  width: 47%;
  bottom: 30px;
  left: 12px;
  box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.3);
}

.item:hover {
  filter: none;
  transform: scale(1, 1) rotate(0deg) !important;
  transition: all 0.35s;
}

.item:hover .polaroid:before {
  content: "";
  position: absolute;
  z-index: -1;
  transform: rotate(0deg);
  height: 90%;
  width: 90%;
  bottom: 10%;
  right: 5%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  transition: all 0.35s;
}

@media (min-width: 1024px) {
  .item {
    width: 50%;
    filter: grayscale(70%);
  }
}
.input-wedding {
  color: white;
  display: block;
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  text-align: center;
  font-size: 1.5em;
  font-weight: 100;
  width: 100%;
}

.input-wedding:focus, .btn-wedding:focus {
  outline-color: rgba(255, 255, 255, 0.4);
}

.btn-wedding {
  color: white;
  display: block;
  padding: 0.5em;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  font-size: 1.5em;
  font-weight: 100;
}

.alert-wedding-error, .alert-wedding-success {
  position: absolute;
  color: white;
  font-size: 1.5em;
  text-transform: uppercase;
  text-align: center;
  z-index: 3;
  width: 100%;
  font-weight: 100;
  padding: 0.5;
  margin: 0;
}

.alert-wedding-error, .alert-wedding-success p {
  margin: 0;
  padding: 0;
}

.alert-wedding-error {
  background-color: rgba(250, 128, 114, 0.4);
}

.alert-wedding-success {
  background-color: rgba(144, 238, 144, 0.4);
  -webkit-animation: removeAlert 4s;
          animation: removeAlert 4s;
  opacity: 0;
}

@media (min-width: 1024px) {
  .alert-wedding-error, .alert-wedding-success {
    font-size: 3em;
  }
}
@-webkit-keyframes removeAlert {
  from {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes removeAlert {
  from {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.weddingImageLogin {
  background-image: url("/images/wedding/ringe_login.jpg") !important;
}

.wordclock_firmware {
  width: 100%;
  margin: 0 auto;
  padding: 3em 1em;
  text-align: center;
}

.wordclock_firmware h3 {
  font-size: 1em;
}

.wordclock_firmware button {
  background-color: #7395ae;
  border: 2px solid #7395ae;
  color: white;
  padding: 0.5em 2em;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition: background-color 0.3s;
  font-size: 0.8em;
}

.wordclock_firmware button:hover {
  background-color: rgba(115, 149, 174, 0.7);
}

@media (min-width: 1024px) {
  .wordclock_firmware {
    width: 50%;
  }
}
ul.nav li a, ul.nav li a:visited {
  color: #557a94 !important;
}

ul.nav li a:hover, ul.nav li a:active {
  color: #557a94 !important;
}

ul.nav li.active a {
  color: #557a94 !important;
}

.navbar-laravel {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.parallax-window {
  min-height: 100vh;
  background: transparent;
  color: white;
  position: relative;
}

#hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.main-picture-dark {
  width: 100%;
  height: auto !important;
  position: block;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.main-picture-content {
  padding: 1em;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  top: 15%;
  width: 100%;
}

.main-picture-content h1 {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin: 1em 0em;
  font-size: 1em;
}

.main-picture-content small {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 100;
}

.main-picture-content button {
  background-color: transparent;
  border: 2px solid #7395ae;
  color: white;
  padding: 0.5em;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition: background-color 0.3s;
  font-size: 0.8em;
}

.main-picture-content button:hover {
  background-color: #7395ae;
}

.portfolio ul {
  margin: 2em 1em 2em;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.portfolio li {
  list-style-type: none;
  padding: 2em 1em;
  margin: 1em 0em;
  width: 100vw;
  text-align: center;
  transition: box-shadow 0.3s;
  border: solid 1px rgba(115, 149, 174, 0.05);
}

.portfolio li:hover {
  box-shadow: 0 0 15px rgba(115, 149, 174, 0.7);
}

.portfolio li h3 {
  font-weight: 100;
  padding: 0.2em 0.2em 1em;
  color: #7395ae;
  text-transform: uppercase;
}

.portfolio li i {
  font-size: 2em;
}

.adventure-window {
  min-height: 500px;
  background: transparent;
  color: white;
  position: relative;
}

.adventure {
  position: absolute;
  top: 30%;
  text-align: center;
  width: 100%;
}

.adventure blockquote::before {
  content: "„";
}

.adventure blockquote::after {
  content: "“";
}

.adventure blockquote {
  font-weight: 100;
  font-size: 2em;
  text-transform: uppercase;
}

.adventure small {
  font-weight: 100;
  font-size: 0.8em;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.betOverview {
  position: absolute;
  top: 20%;
  text-align: center;
  width: 100%;
}

.betOverview blockquote::before {
  content: "„";
}

.betOverview blockquote::after {
  content: "“";
}

.betOverview blockquote {
  font-weight: 100;
  font-size: 2em;
  text-transform: uppercase;
}

.betOverview small {
  font-weight: 100;
  font-size: 0.8em;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.overviewItem {
  padding: 3em 0.4em;
}

.betTableRow, .saisonTableRow {
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 0.5em 0em;
}

.betTableRow:nth-child(even), .saisonTableRow:nth-child(even) {
  background-color: #e7eff6;
}

.betTableColName {
  width: 45%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.saisonTableColName {
  width: 45%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.betTableColPoints, .saisonTableColPoints {
  width: 10%;
  text-align: center;
  font-weight: 600;
}

.betTableColPointsGroupId, .saisonTableColGoalsDiff, .saisonTableColGoals, .betTableColFullHit {
  width: 10%;
  text-align: center;
}

.betTableColFullHit {
  font-size: 0.75em;
}

.betTableColPic {
  width: 15%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.saisonTableColPic img {
  max-width: 30px;
  max-height: 30px;
}

.saisonTableColPic {
  width: 10%;
}

.saisonTableColRanking {
  width: 10%;
}

.betTableColRanking {
  width: 7.5%;
}

.betTableColRankingDiff {
  width: 7.5%;
  font-size: 0.75em;
}

.roundPicTable {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
}

.picalarm {
  border: 1px solid red;
}

.rankingDiff {
  font-size: 1em;
}

.fullHit {
  font-size: 0.8em;
}

.weekWinners, .recordWinners {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}

.weekWinner, .recordWinner {
  width: 34%;
}

.weekWinner small, .recordWinner small {
  display: block;
}

.roundPicWeekwinner, .roundPicRecordwinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgb(170, 170, 170);
}

.roundPicRecordwinner {
  border: 1px solid rgb(255, 196, 0);
}

.ergTableRow {
  padding: 0.5em 0em 0.1em;
  border-top: 1px solid #e7eff6;
  width: 100%;
}

.row {
  width: 100%;
}

.ergTableRow .logo img {
  max-width: 60px;
  max-height: 60px;
}

footer {
  background-color: black;
  padding: 4em 1em 2em;
  border-top: 1px solid #7395ae;
}

footer ul {
  display: flex;
  justify-content: center;
  padding: 0;
}

footer ul li {
  list-style-type: none;
  padding: 1em 0.5em;
  color: lightgray;
}

@media (min-width: 1000px) {
  .portfolio li {
    width: 30vw;
    margin: 1em 2em;
  }
  .portfolio ul {
    margin: 10em 1em 10em;
  }
  .main-picture-content h1 {
    font-size: 4em;
  }
  .main-picture-content button {
    padding: 1em 2em;
    font-size: 1em;
  }
  .parallax-window {
    min-height: 90vh;
  }
  .adventure blockquote {
    font-size: 4em;
  }
  .adventure small {
    font-size: 1em;
  }
  .betOverview blockquote {
    font-size: 4em;
  }
  .betOverview small {
    font-size: 1em;
  }
  .roundPicTable {
    width: 60px;
    height: 60px;
  }
  .picalarm {
    border: 2px solid rgba(255, 0, 0, 0.795);
  }
  .saisonTableColPic img {
    max-width: 40px;
    max-height: 40px;
  }
  .rankingDiff {
    font-size: 2em;
  }
  .roundPicWeekwinner, .roundPicRecordwinner {
    width: 150px;
    height: 150px;
    border-width: 2px;
  }
  .weekWinner, .recordWinner {
    width: 20%;
  }
  footer ul li {
    list-style-type: none;
    padding: 1em 2em;
    color: lightgray;
  }
}/*# sourceMappingURL=app.css.map */