@charset "UTF-8";
/*
----------------------------------
----------------------------------
MAIN
----------------------------------
----------------------------------
*/
:root {
  --navColor: navy;
  --navTextColor: white;
  --navHoverColor: black;
  --navActiveColor: #000;
  --boxBackground: #eee;
  --foreDarkBlue: #002D62; /*#191970;*/
  --foreDarkCyan: #006363;
}

html {
  height: 100%;
  font-size: 100%;
}

body {
  background: white;
  font-family: "Roboto", serif;
  color: #000;
  margin: 0;
  height: 100vh;
}

@media (min-width: 40rem) {
  body {
    font-weight: 100;
  }
}
* {
  box-sizing: border-box;
}

/*
----------------------------------
----------------------------------
Container
----------------------------------
----------------------------------
*/
.page-container {
  display: bock;
  padding-top: 3.6rem;
  min-height: -webkit-calc(100% - 2rem);
  min-height: -moz-calc(100% - 2rem);
  min-height: calc(100% - 2rem);
  overflow: hidden;
}

.inner-container {
  margin-left: 5%;
  margin-right: 5%;
}

/*
----------------------------------
----------------------------------
Boxes
----------------------------------
----------------------------------
*/
.box-line {
  height: 0.3rem;
  text-align: left;
  background: var(--boxBackground);
  display: inline-block;
  width: 100%;
}

.box-fill {
  text-align: left;
  background: var(--boxBackground);
  padding: 1rem;
  margin: 1rem;
  display: inline-block;
  width: 95%;
}

.box-center {
  text-align: center;
  background: var(--boxBackground);
  padding: 1rem;
  margin: 1rem;
  display: inline-block;
}

.box-left {
  text-align: left;
  background: var(--boxBackground);
  padding: 1rem;
  margin: 1rem;
  display: inline-block;
  width: 95%;
}

.box-right {
  text-align: left;
  background: var(--boxBackground);
  padding: 1rem;
  margin: 1rem;
  display: inline-block;
  width: 95%;
}

.box__fit-inline {
  text-align: left;
  background: var(--boxBackground);
  padding: 1rem;
  margin: 1rem;
  width: fit-content;
  float: left;
}

/*
----------------------------------
----------------------------------
Mail
----------------------------------
----------------------------------
*/
.box__mail-result {
  font-size: 2;
  color: #000888;
}

/*
----------------------------------
----------------------------------
Posts
----------------------------------
----------------------------------
*/
.box-posts {
  margin: 1rem;
  border: 1px solid black;
  box-shadow: 5px -3px 3px 3px rgba(200, 200, 200, 0.4);
  padding: 0.2rem;
}

.box-post {
  display: block;
  margin: 1rem;
  border: 1px solid var(--boxBackground);
  padding: 0.2rem;
  width: 90%;
}

.post-button {
  background: #111;
  color: rgb(252, 252, 252);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.post-button:hover {
  background: darkcyan;
}

.box-post > a > div {
  display: block;
  text-align: center;
  width: 100%;
}

.box-post > a > div > button {
  width: 97%;
  box-sizing: border-box;
}

.post-title {
  display: block;
  margin-bottom: 0.1rem;
  width: 100%;
}

.post-body {
  display: block;
  margin: 0.1rem;
  padding-left: 0.5rem;
  width: 100%;
  font-size: 0.9rem;
}

/*
----------------------------------
----------------------------------
Img
----------------------------------
----------------------------------
*/
.img__page {
  width: 95%;
  padding: 0.5rem;
  margin: 0.5rem;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.img__page-autoWidth {
  width: auto;
  padding: 0.5rem;
  margin: 0.5rem;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.img__small {
  max-width: 20rem;
}

.img__Subtitle {
  width: 95%;
  display: block;
  font-size: 0.8rem;
  color: black;
  text-align: left;
  margin-left: 1rem;
  font-weight: bold;
}

/*
----------------------------------
----------------------------------
Header
----------------------------------
----------------------------------
*/
.main-header {
  position: fixed;
  width: 100%;
  background: linear-gradient(to top, var(--foreDarkBlue), #002D00);
  top: 0;
  left: 0;
  z-index: 20;
  height: 3.6rem;
  opacity: 1;
}

.main-header > div {
  display: inline-block;
  vertical-align: middle;
}

/*
----------------------------------
----------------------------------
Desktop Navigation --> TOP
----------------------------------
----------------------------------
*/
.main-nav {
  display: inline-block;
  text-align: left;
  width: calc(100% - 122px);
  vertical-align: middle;
  padding-left: 2rem;
}

.main-nav__items {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__items-ln,
.lang-container {
  position: absolute;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  right: 1rem;
}

.lang-container {
  top: 0;
}

.lang-container,
.lang-container .btn {
  z-index: 20;
}

.lang-container > .btn {
  background-color: #002D00;
  border-color: #13274F;
}

.lang-dropdown {
  z-index: 20;
  background: #002D00;
  animation: langdown 500ms ease-in-out forwards;
  transform-origin: top center;
}

@keyframes langdown {
  from {
    margin-top: 1.5rem;
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    margin-top: 1.5rem;
    opacity: 1;
    transform: scaleY(1);
  }
}
.dropdown-item img {
  height: 10px;
  width: 15px;
}

.dropdown-item {
  margin: 3px;
}

.dropdown-item a,
.dropdown-item img {
  display: block;
  cursor: pointer;
}

.main-nav__item {
  display: inline-block;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  height: 2rem;
  display: none;
  transform: scale(0.5);
}

.main-nav__item-ln {
  display: inline-block;
  height: 1rem;
  margin: 0.5rem;
}

.main-nav__item-ln img {
  height: 15px;
  width: 20px;
}

.main-nav__item a,
.main-nav__item-ln a,
.mobile-nav__item a {
  color: var(--navTextColor);
  text-decoration: none;
  font-weight: normal;
  padding: 3px 0;
  font-size: 0.7rem;
}

.main-nav__item a::before {
  content: " ";
  color: white;
}

.main-nav__item-ln:hover {
  background: var(--navHoverColor);
  cursor: pointer;
}

/*
----------------------------------
----------------------------------
Desktop Navigation --> LEFT
----------------------------------
----------------------------------
*/
.nav-symbol {
  display: inline-block;
  width: 2.5rem;
}

.main-top-nav {
  display: flex;
  position: fixed;
  top: 2.5rem;
  left: 0;
  display: none;
  text-align: left;
  width: 100%;
  height: 5rem;
  background: var(--foreDarkBlue);
  overflow-y: hidden;
  z-index: 12;
  flex-direction: column;
  transition: height 1s ease-in-out;
}

.top-nav--open {
  height: 10rem;
}

.main-top-nav__items {
  z-index: 12;
  display: block;
  margin: 0;
  padding: 0;
  height: 5rem;
  list-style: none;
}

.main-top-nav__items-ln {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-top-nav__item {
  display: inline-block;
  padding: 10px 16px 10px 16px;
  height: 4.5rem;
  width: calc(12.5% - 5px);
}

.ulSubMenu {
  position: relative;
  display: block;
  left: 0;
  height: 5rem;
  width: 100%;
}

.main-top-nav__item > a {
  display: block;
  text-align: center;
  width: 100%;
}

.main-top-nav__item > a > .nav-symbol {
  display: block;
  text-align: center;
  width: 100%;
}

.main-top-nav__item-ln {
  display: inline-block;
  padding: 10px 20px 10px 20px;
}

.main-top-nav__item-ln img {
  height: 15px;
  width: 20px;
}

.main-top-nav__item a,
.main-top-nav__item-ln a {
  color: var(--navTextColor);
  text-decoration: none;
  font-weight: bolder;
  font-size: 0.8rem;
  padding: 3px 0;
  display: block;
  width: 100%;
  height: 100%;
}

.main-top-nav__item:hover,
.main-top-nav__item-ln:hover {
  background: var(--navHoverColor);
  cursor: pointer;
}

.main-top-nav__item a:active,
.main-top-nav__item-ln a:active {
  color: lightcoral;
}

/*
----------------------------------
----------------------------------
Mobile Navigation
----------------------------------
----------------------------------
*/
.mobile-nav {
  display: none;
  position: fixed;
  z-index: 101;
  top: 3.6rem;
  left: 0;
  background: linear-gradient(to top, var(--foreDarkBlue), #111);
  width: 80%;
  min-width: 14rem;
  max-width: 20rem;
  padding-bottom: 1rem;
  max-height: calc(100% - 3.6rem);
  overflow-y: auto;
  height: auto;
}

.mobile-nav {
  animation: mobilenavdown 500ms ease-in forwards;
  transform-origin: top center;
}

@keyframes mobilenavdown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
.mobile-nav__items {
  width: 100%;
  height: 98%;
  list-style: none;
  margin: 1% auto;
  padding: 0;
  text-align: left;
}

.mobile-nav__items-ln {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 1% auto;
  padding: 0;
  text-align: left;
}

.mobile-nav__item {
  margin: 0.1rem 0;
}

.mobile-nav__item {
  padding: 5px 8px 5px 8px;
  display: block;
  height: 2.5rem;
  width: 100%;
}

.mobile-nav__item > a {
  display: block;
  text-align: left;
  width: 70%;
}

.mobile-nav__item > a > .nav-symbol {
  display: inline-block;
  text-align: left;
  width: 20%;
}

.mobile-nav__item-ln {
  padding: 5px 20px 5px 20px;
  display: inline-block;
}

.mobile-nav__item-ln img {
  height: 15px;
  width: 20px;
}

.mobile-nav__item a,
.mobile-nav__item-ln a {
  font-size: 1rem;
  display: block;
  width: 70%;
  font-weight: normal;
  height: 100%;
}

.mobile-nav__item:hover,
.mobile-nav__item-ln:hover {
  background: var(--navHoverColor);
}

.main-nav__item a:active,
.main-nav__item-ln a:active,
.mobile-nav__item a:hover,
.mobile-nav__item-ln a:hover {
  color: lightgray;
}

/*-----------------------------------------------------
-------------------------------------------------------
SubItems
-------------------------------------------------------
-----------------------------------------------------*/
.li__empty {
  list-style: none;
  text-decoration: none;
  width: 90%;
  text-align: left;
  border-bottom: 2px solid #000;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  height: 0.5rem;
}

.mobile-nav__items .li__main {
  list-style: none;
  text-decoration: none;
}

.mobile-nav__items .li__main > a {
  display: block;
  text-align: left;
  width: 100%;
}

.mobile-nav__items .li__main > a > .nav-symbol {
  display: inline-block;
  text-align: left;
  left: 0;
  width: 1rem;
}

.link__main::before {
  content: "⇢";
}

.link__main--open::before {
  content: "⇣";
}

.main-top-nav__items-sub {
  position: relative;
  z-index: 11;
  animation: menudown 1s forwards;
  opacity: 1;
}

@keyframes menudown {
  from {
    opacity: 0;
    margin-top: -3rem;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}
.ulSubMenu {
  height: auto;
  list-style: none;
  text-decoration: none;
  animation: mobiledown 500ms ease-in-out forwards;
  transform-origin: top center;
}

@keyframes mobiledown {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.li__sub--close {
  opacity: 0;
  display: none;
}

/*.ulSubMenu {
  height: auto;
  list-style: none;
  text-decoration: none;
}*/
/*-----------------------------------------------------
-------------------------------------------------------
Active NAV ITEM
-------------------------------------------------------
-----------------------------------------------------*/
.nav-active {
  background: var(--navActiveColor);
}

/*-----------------------------------------------------
-------------------------------------------------------
Toggle Button
-------------------------------------------------------
-----------------------------------------------------*/
.toggle-button {
  width: 3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: middle;
  margin-left: 8px;
  margin-top: 0.6rem;
}

.toggle-button:focus {
  outline: none;
}

.toggle-button__bar {
  width: 100%;
  height: 0.2rem;
  background: white;
  display: block;
  margin: 0.6rem 0;
  box-shadow: 1px -1px 1px 1px rgba(200, 200, 200, 0.4);
}

/*-----------------------------------------------------
-------------------------------------------------------
FORM
-------------------------------------------------------
-----------------------------------------------------*/
.box-form {
  text-align: left;
  background: var(--boxBackground);
  padding: 1rem;
  margin: 1rem;
  display: inline-block;
  width: 90%;
  font-weight: lighter;
  font-size: 1rem;
}

.box-form > h1 {
  font-size: 1.5rem;
}

.form-box {
  width: 90%;
}

.form-box > label {
  display: block;
}

.form-box > input {
  display: block;
  width: 100%;
}

.invalidFeedback {
  display: block;
  height: 1.7rem;
  font-size: 0.9rem;
  color: whitesmoke;
}

.form-action {
  width: 90%;
}

.form-action > input {
  display: inline-block;
  margin-right: 1rem;
  background: darkblue;
  color: white;
}

.form-action > input:hover {
  display: inline-block;
  margin-right: 1rem;
  background: #111;
  color: white;
}

.form-action > div {
  display: inline-block;
  margin-right: 1rem;
  text-align: center;
}

.form-action > div > a {
  color: darkblue;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.form-action__inline1 {
  width: 95%;
}

.form-action__inline2 {
  width: 42%;
}

.form-action__inline3 {
  width: 30%;
}

.form-action__inline4 {
  width: 20%;
}

/*
----------------------------------
----------------------------------
Media --> switch to Desktop
----------------------------------
----------------------------------
*/
@media (min-width: 22.1rem) {
  .main-nav__item {
    display: inline-block;
    transform: scale(1);
  }
}
@media (min-width: 40rem) {
  html {
    font-size: 100%;
  }
  .main-header {
    height: 2.5rem;
  }
  .main-nav {
    display: inline-block;
  }
  .main-top-nav {
    display: block;
  }
  .page-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 6.6rem;
    max-width: 85.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .inner-container {
    margin-left: 17%;
    margin-right: 17%;
  }
  .box-form {
    max-width: 35rem;
  }
  .img__page {
    display: inline-block;
    max-height: 25rem;
    width: auto;
    max-width: 95%;
  }
  .img__page-autoWidth {
    display: inline-block;
    max-height: 25rem;
    width: auto;
    max-width: 95%;
  }
  .box-center {
    max-width: 50rem;
  }
  .box-left {
    float: left;
    max-width: 50rem;
    margin-left: 0;
    margin-right: auto;
  }
  .box-right {
    float: right;
    max-width: 50rem;
    margin-left: auto;
    margin-right: 0;
  }
  .toggle-button {
    display: none;
  }
  .footer {
    padding-left: 15rem;
  }
}
/*
----------------------------------
----------------------------------
Backdrop
----------------------------------
----------------------------------
*/
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.open {
  display: block !important;
}

/*
----------------------------------
----------------------------------
Cookie
----------------------------------
----------------------------------
*/
.box-cookie {
  position: fixed;
  width: 90%;
  max-width: 65rem;
  z-index: 201;
  background: white;
  margin: 1rem;
  padding: 1rem;
}

.accept-cookie {
  float: right;
  margin-left: auto;
  margin-right: 2rem;
}

.btn__accept-cookie {
  color: white;
  background: darkcyan;
  width: 200px;
  height: 40px;
  border-radius: 20px;
}

.btn__accept-cookie:hover {
  background-color: #555;
}

@media (min-width: 40rem) {
  .box-cookie {
    right: 1rem;
  }
  .box-form {
    text-align: left;
    background: var(--boxBackground);
    padding: 1rem;
    margin: 1rem;
    display: inline-block;
    width: 90%;
    font-weight: lighter;
    font-size: 0.9rem;
  }
}
/*
----------------------------------
----------------------------------
Footer
----------------------------------
----------------------------------
*/
.footer {
  display: block;
  width: 100%;
  height: 2rem;
  bottom: 0;
}

.footer > span {
  display: inline-block;
  padding-left: 1rem;
  padding-top: 0.2rem;
  color: white;
}

.footer > span > a {
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
}

/*
------------------------------------------------
------------------------------------------------
REPORT
------------------------------------------------
------------------------------------------------
*/
.report__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.report__list > li {
  width: 85%;
  background: var(--navColor);
  margin: 0.1rem;
  padding: 0.6rem;
  box-shadow: 5px -3px 3px 3px rgba(200, 200, 200, 0.4);
  max-width: 50rem;
}

.report__list > li:hover {
  background: var(--navHoverColor);
  scale: 1.02;
  /*cursor: pointer;*/
}

.report__list > li > a {
  text-decoration: none;
  font-size: 110%;
  color: var(--navTextColor);
}

.report__list > li > a > div {
  display: block;
  width: 70vw;
  max-width: 50rem;
  height: 100%;
}

/*
----------------------------------
----------------------------------
Box moving
----------------------------------
----------------------------------
*/
.box {
  transition: transform 1s, opacity 1s;
}

.box--hidden {
  opacity: 0;
  transform: translateY(8rem);
}

/*
----------------------------------
----------------------------------
Image resolution
----------------------------------
----------------------------------
*/
img {
  transition: filter 0.5s;
}

.img-lazy {
  filter: blur(20px);
}

.box-symbol {
  width: 90%;
  display: block;
  color: white;
  margin-left: auto;
  margin-right: auto;
}

.box-symbol > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 5.5rem;
  padding: 0.5rem;
}

.box-light {
  background: rgb(252, 252, 252);
}

/*
------------------------------------------------
------------------------------------------------
SLIDER
------------------------------------------------
------------------------------------------------
*/
.slider {
  max-width: 500rem;
  height: 12rem;
  margin: 0 auto;
  position: relative;
  /* IN THE END */
  overflow: hidden;
  background-color: var(--foreDarkBlue);
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* THIS creates the animation! */
  -webkit-transition: -webkit-transform 0s;
  -moz-transition: transform 0s;
  -o-transition: transform 0s;
  transition: transform 0s;
  text-align: center;
}

.slide-animate-fading {
  animation: fading 20s infinite;
}

@keyframes fading {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.slide > img {
  /* Only for images that have different size than slide */
  height: 11.5rem;
  object-fit: scale-down;
  max-width: 90%;
}

.slider__btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  border: none;
  background: rgba(0, 0, 128, 0.1);
  font-family: inherit;
  color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.slider__btn--left {
  left: 6%;
  transform: translate(-50%, -50%);
}

.slider__btn--right {
  right: 6%;
  transform: translate(50%, -50%);
}

.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  display: none;
}

.dots__dot {
  border: none;
  background-color: rgba(255, 255, 255, 0.25);
  opacity: 0.7;
  height: 0.7rem;
  width: 0.7rem;
  border-radius: 50%;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.5s;
  display: none;
  /* Only necessary when overlying images */
  /* box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7); */
}

.dots__dot:last-child {
  margin: 0;
}

.dots__dot--active {
  /* background-color: #fff; */
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

@media (min-width: 500rem) {
  .slider,
  .slide,
  .slide > img {
    height: 20rem;
  }
}
/*
------------------------------------------------
------------------------------------------------
MAP
------------------------------------------------
------------------------------------------------
*/
#map {
  z-index: 1;
  display: flex;
  flex: 1;
  width: 95%;
  height: 80vh;
}

/*
------------------------------------------------
------------------------------------------------
IMAGE CONTAINER
------------------------------------------------
------------------------------------------------
*/
.img-container {
  vertical-align: middle;
  max-height: 95vh;
  max-width: 95vw;
  margin: auto;
  display: none;
  z-index: 101;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.img-container--img {
  max-height: 95vh;
  max-width: 95vw;
}

.img-container__active {
  display: block;
}

/*
------------------------------------------------
------------------------------------------------
ARROW
------------------------------------------------
------------------------------------------------
*/
.box-flex {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}

.pointer {
  margin-top: 0.7rem;
  margin-right: 0.7rem;
  width: 150px;
  height: 50px;
  position: relative;
  text-align: center;
  color: #fff;
  background: var(--navColor);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pointer:hover {
  background: linear-gradient(to left, var(--navColor), #000);
}

.pointer > span {
  display: inline-block;
  vertical-align: middle;
}

.pointer:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 25px solid var(--boxBackground);
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

.pointer:before {
  content: "";
  position: absolute;
  right: -25px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 25px solid var(--navColor);
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

/*
------------------------------------------------
------------------------------------------------
NEWS
------------------------------------------------
------------------------------------------------
*/
.gotoNews {
  text-decoration: none;
  font-weight: bold;
}

.gotoNews::after {
  content: "...➪";
  font-size: 20px;
  color: blue;
  display: inline;
  letter-spacing: 5px;
}

.gotoNews:hover::after {
  content: "...➫";
}

.seperator {
  display: block;
  width: calc(100% - 1rem);
  height: 0.5rem;
  background: darkcyan;
  margin: 1rem;
}

/*
------------------------------------------------
------------------------------------------------
Translation
------------------------------------------------
------------------------------------------------
*/
.bt-translate::before {
  margin-right: 0.5rem;
  transition: opacity 1s ease-in;
  content: "☑️";
  opacity: 0;
}

.bt-translate::after {
  margin-left: 0.5rem;
  transition: opacity 1s ease-in;
  content: "☑️";
  opacity: 0;
  display: inline-block;
}

.bt-translate-success::before {
  opacity: 1;
}

.bt-translate-success::after {
  opacity: 0;
}

/*
------------------------------------------------
------------------------------------------------
LOADING
------------------------------------------------
------------------------------------------------
*/
.sk-wave-parent {
  position: fixed;
  top: 20px;
  left: calc(50% - 6rem + 106px + 1.5rem);
}

.sk-wave {
  width: 12rem;
  height: 1.2rem;
  margin: auto;
  text-align: center;
  font-size: 1em;
  display: none;
  transform: rotateX(30deg) rotateY(-30deg);
}

.sk-wave__show {
  display: block;
}

.sk-wave .sk-rect {
  background-color: darkcyan;
  height: 100%;
  width: 0.25rem;
  display: inline-block;
  -webkit-animation: sk-wave-stretch-delay 2.6s infinite ease-in-out;
  animation: sk-wave-stretch-delay 2.6s infinite ease-in-out;
}

.sk-wave .sk-rect-1 {
  -webkit-animation-delay: -2.6s;
  animation-delay: -2.6s;
}

.sk-wave .sk-rect-2 {
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
}

.sk-wave .sk-rect-3 {
  -webkit-animation-delay: -2.2s;
  animation-delay: -2.2s;
}

.sk-wave .sk-rect-4 {
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.sk-wave .sk-rect-5 {
  -webkit-animation-delay: -1.8s;
  animation-delay: -1.8s;
}

.sk-wave .sk-rect-6 {
  -webkit-animation-delay: -1.6s;
  animation-delay: -1.6s;
}

.sk-wave .sk-rect-7 {
  -webkit-animation-delay: -1.4s;
  animation-delay: -1.4s;
}

.sk-wave .sk-rect-8 {
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.sk-wave .sk-rect-9 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-wave .sk-rect-10 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-wave-stretch-delay {
  0%, 40%, 100% {
    transform: scaleY(0.1);
  }
  20% {
    transform: scaleY(1);
  }
}
@keyframes sk-wave-stretch-delay {
  0%, 40%, 100% {
    transform: scaleY(0.1);
  }
  20% {
    transform: scaleY(1);
  }
}
/*-----------------------*/
.triangle {
  display: block;
  width: 0px;
  height: 0px;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  border-style: solid;
  border-width: 0 110px 190.5px 110px;
  border-color: transparent transparent #98c5dc transparent;
}

.triangle > div {
  display: block;
  height: 72px;
}

@media (min-width: 30rem) {
  .triangle {
    display: block;
    width: 0px;
    height: 0px;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border-style: solid;
    border-width: 0 150px 259.8px 150px;
    border-color: transparent transparent #98c5dc transparent;
  }
  .triangle > div {
    display: block;
    height: 100px;
  }
}
@media (min-width: 40rem) {
  .triangle {
    display: block;
    width: 0px;
    height: 0px;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border-style: solid;
    border-width: 0 200px 346.4px 200px;
    border-color: transparent transparent #98c5dc transparent;
  }
  .triangle > div {
    display: block;
    height: 133px;
  }
}
/*-----------------------*/
/*HIDDEN*/
/*-----------------------*/
.el-hidden {
  display: none;
}

.blog-body img {
  width: 100%;
}

/*-----------------------*/
/*QUILL*/
/*-----------------------*/
.ql-editor {
  white-space: normal !important;
}

.ql-editor strong {
  font-weight: bold;
}

/*-----------------------*/
/*BLOG*/
/*-----------------------*/
.blog-entry {
  cursor: pointer;
}

/*-----------------------*/
/*Bootstrap*/
/*-----------------------*/
.bg-lightblue {
  background-color: lightblue;
}

.bg-darkblue {
  background-color: var(--foreDarkBlue);
}

.bg-color-level1 {
  background-color: lightblue;
}

.bg-color-level2, .btn-color-level2 {
  background-color: var(--foreDarkCyan);
}

.bg-color-level3, .btn-color-level3 {
  background-color: var(--foreDarkBlue);
}

.bg-color-darkgreen, .btn-color-darkgreen {
  background-color: darkgreen;
}

.bg-color-sand, .btn-color-sand {
  background-color: beige;
}

.bg-color-darksand, .btn-color-darksand {
  background-color: #CBB595;
}

.btn-color-level3:hover {
  background-color: blue;
}

.btn-color-level2:hover {
  background-color: darkcyan;
}

.btn-color-darkgreen:hover {
  background-color: green;
}

/*-----------------------*/
/*BACK IMAGE*/
/*-----------------------*/
.back-img {
  z-index: -2;
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  /*background: linear-gradient(to right, rgba(10, 211, 238, 0.5), rgba(248, 245, 199, 0.5));*/
}

/*
  container-page::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
}
*/
.show {
  display: block;
}

.btn-settings {
  position: absolute;
  left: 0.5rem;
  top: 8rem;
}

container-inner {
  display: block;
  padding: 0.5rem;
  max-width: 1000px;
  margin-left: 5%;
  margin-right: 5%;
}

@media (min-width: 40rem) {
  container-inner {
    margin-left: 17%;
    margin-right: 17%;
  }
}
@media (min-width: 1515px) {
  container-inner {
    margin-left: auto;
    margin-right: auto;
  }
}
