@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
h1 {
  font-weight: 700;
  font-size: 3.75rem;
}

h2 {
  font-weight: 700;
  font-size: 2.25 rem;
}

h3 {
  font-weight: 700;
  font-size: 1.875rem;
}

h4 {
  font-weight: 700;
  font-size: 1.5rem;
}

h5 {
  font-weight: 700;
  font-size: 1.125rem;
}

h6 {
  font-weight: 700;
  font-size: 0.875rem;
}

html, body {
  font-family: 'Roboto', sans-serif;
  color: #142151;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

#app {
  height: 100vh;
}

.container-fluid {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

a {
  cursor: pointer;
}

.links:hover {
  text-decoration: underline;
}

img {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.shake-animation {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.cookie-bar {
  padding-left: 0em;
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  height: 180px;
  text-align: left;
  line-height: 30px;
  background: #142151;
  color: white;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  transition: .8s;
  animation: slideIn .8s;
  animation-delay: 0s;
  border-radius: 30px 30px 0px 0px;
}

.cookie-bar .message {
  white-space: nowrap;
  text-shadow: 0 1px 0 #0a1028;
}

@media (max-width: 767px) {
  .cookie-bar .message {
    display: none;
  }
}

.cookie-bar .mobile {
  display: none;
}

@media (max-width: 767px) {
  .cookie-bar .mobile {
    display: inline-block;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(200px);
  }
  100% {
    transform: translateY(0px);
  }
}

.close-cb {
  margin-top: 2em;
  margin-right: 1em;
  border: none;
  color: white;
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 0;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.2);
  line-height: 30px;
  height: 30px;
  width: 30px;
  font-size: 16px;
  font-weight: bold;
}

.close-cb:hover {
  color: gray;
}

.checkbox-cb {
  display: none;
}

.checkbox-cb:checked + .cookie-bar {
  transform: translateY(300px);
}

.accept {
  position: absolute;
  bottom: 20px;
  right: 50px;
}

#icon {
  width: 3.1em  !important;
  height: 1.5em  !important;
  margin-left: 3em  !important;
  margin-right: 0.75em  !important;
  margin-top: -.5em;
}

#cookie_title {
  font-family: 'Roboto', sans-serif  !important;
  font-weight: 700  !important;
  font-size: 24px  !important;
  padding-top: 1.5em;
  display: inline-block;
}

.message {
  margin-left: 2em  !important;
  font-size: 14px  !important;
  font-weight: 400  !important;
  padding-top: 0em  !important;
  margin-top: 0em  !important;
}

#c_content {
  font-family: 'Roboto', sans-serif  !important;
  font-weight: 400 !important;
  font-size: 14px  !important;
  word-wrap: break-word;
  word-break: break-word;
  padding-left: 25px;
  padding-right: 25px;
}
/*# sourceMappingURL=cookieBanner.css.map */