@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --main-color: rgb(28, 68, 8);
  --nav-height: 55px;
  --footer-height: 40px;
  --bacground-color: rgb(221 221 214);
  --text-color: rgb(255, 255, 255);
  --text-page-color: rgb(0, 0, 0);
  /* --fc-border-color: black; */
  --fc-daygrid-event-dot-width: 15px;
  --fc-listWeek-event-dot-width: 15px;
  --ratio-square: 1 / 1;
  --size: 100%;
  --border-size-2: 4px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p {
  margin-right: 40px;
  margin-left: 40px;
  /* font-size: 14px; */
}

header {
  height: var(--nav-height);
}

body {
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  font-size: 1.2rem;
}

ul {
  list-style: none;
  margin-left: 30px;
}

a {
  text-decoration: none;
}

header {
  position: sticky;
  top: 0px;
  /* background-color: var(--main-color); */
  width: 100%;
  z-index: 1000;
  background: #0b261b;
  background: linear-gradient(
    180deg,
    rgba(11, 38, 27, 1) 19%,
    rgba(28, 68, 8, 1) 55%
  );
}

.main_container {
  position: relative;
  padding: 25px;
  width: 100%;
  background-color: var(--bacground-color);
  min-height: calc(100dvh - (var(--nav-height) + var(--footer-height)));
  max-height: calc(100dvh - (var(--nav-height) + var(--footer-height)));
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* .modalPopUp {
  background-color: var(--bacground-color);
  width: 90dvw;
  border-radius: 15px;
  height: 80dvh;
  z-index: 1000;
  display: flex;
} */

.modalPopUp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}

.modalPopUp-content {
  background: white;
  border-radius: 15px;
  box-shadow: var(--main-color);
  max-width: 90dvw;
  width: 90dvw;
  height: 80dvh;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.ck-restricted-editing_mode_standard
  ck
  ck-content
  ck-editor__editable
  ck-rounded-corners
  ck-editor__editable_inline
  ck-blurred {
  background-color: var(--bacground-color);
}

.avatar-small {
  border-radius: 0px;
  box-sizing: border-box;
  clip-path: circle();
  display: inline-block;
  height: 200px;
  max-width: 200px;
  transform-origin: 50% 50%;
  vertical-align: middle;
  width: 200px;
}

.block-flex-row-space-around {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.form-btn {
  height: 3rem;
  font-size: 1rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  background-color: var(--main-color);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin: 2px;
}

.form-group {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#contactform {
  min-width: 30dvw;
}

.team-card {
  width: 20dvw;
}

.spacing {
  margin-top: 25px !important;
}

.overlay_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(12, 168, 4, 0.2);
}

.image-style-align-left,
.image-style-side {
  float: right;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  width: fit-content;
  max-height: 260px;
  padding: 5px;
}

.image-style-align-right {
  float: left;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  width: fit-content;
  max-height: 260px;
  padding: 5px;
}

.container {
  max-width: 90dvw;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
}

.nav-btn {
  align-items: center;
  display: flex;
}

.nav-links {
  margin-left: 20px;
  margin-right: 20px;
}

.log-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.3rem;
  font-size: 0.8rem;
  border: 2px solid #fff;
  border-radius: 2rem;
  margin: 0 0.2rem;
  transition: 0.3s;
}

.btn.solid,
.btn.transparent:hover {
  background-color: #fff;
  color: var(--main-color);
}

.btn.transparent,
.btn.solid:hover {
  background-color: transparent;
  color: #fff;
}

.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  position: relative;
}

.nav-link > a {
  line-height: 3rem;
  color: #fff;
  padding: 0 0.8rem;
  letter-spacing: 1px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.mediamanager {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.preview-images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  width: 50dvw;
  /* & img {
    height: fit-content;
    width: 300px;
  } */
}

.preview-images > img {
  height: fit-content;
  width: 300px;
}

.fixed-el {
  position: fixed;
}

#imgResultHolder {
  margin-left: auto;
  margin-right: auto;
  min-width: 30vw;
}

.nav-link > a > i {
  margin-left: 0.2rem;
}

.nav-link:hover > a {
  transform: scale(1.1);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  /* width: 10rem; */
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  width: fit-content;
  width: 250px;
  z-index: 999999 !important;
}

.dropdown ul {
  position: relative;
  z-index: 1010;
}

.dropdown-link > a {
  display: flex;
  background-color: #c7f6e8;
  color: var(--main-color);
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  border-radius: 5px;
  border: solid 2px var(--main-color);
}

.dropdown-link:hover > a {
  background-color: var(--main-color);
  color: #fff;
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid #efefef;
}

.dropdown-link i {
  transform: rotate(-90deg);
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #fff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: var(--main-color);
}

.dropdown-link {
  position: relative;
  margin-top: 5px;
}

.dropdown.second {
  top: 0;
  left: 100%;
  /* padding-left: 0.8rem; */
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  z-index: 1001;
  transition: 0.5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

.navbar-logo {
  cursor: pointer;
  height: var(--nav-height);
}

.fa {
  font-size: 1.2rem;
  margin-right: 3px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  columns: 3;
  min-width: 100dvw;
  max-width: 100dvw;
  min-height: var(--footer-height);
  position: absolute;
  bottom: 0;
  color: var(--text-color);
  z-index: 1000;
  background: #0b261b;
  background: linear-gradient(
    0deg,
    rgba(11, 38, 27, 1) 19%,
    rgba(28, 68, 8, 1) 55%
  );
}

.hidden {
  display: none !important;
}

body > div.main_container > figure {
  margin-left: 15px;
}

.breadcrumb {
  width: 33dvw;
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: row;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
  padding: 8px;
  color: var(--text-color);
  content: "/\00a0";
}

ul.breadcrumb li a {
  color: var(--text-color);
  text-decoration: none;
}

ul.breadcrumb li a:hover {
  color: #eaee0a;
  text-decoration: underline;
}

.footer {
  width: 33dvw;
  text-align: center;
  justify-content: center;
}

.footerUserInfo {
  align-items: center;
  width: 33dvw;
  justify-content: center;
}

.tooltip2,
.tooltip {
  display: flex;
  position: absolute;
  background: var(--main-color);
  border-radius: 4px;
  padding: 6px 12px;
  font-family: arial;
  font-size: 20px;
  text-shadow: 0px 1px 1px #000;
  color: #eef2ee;
  z-index: 999999;
  opacity: 1;
  border: solid 2px #85c78e;
}

.tooltip:before {
  content: " ";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--main-color);
  position: absolute;
  bottom: -5px;
  left: 5px;
}

#calendar {
  min-width: 95dvw;
  max-width: 95dvw;
  max-height: 80dvh;
  padding: 20px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  background-color: var(--text-color);
}

#username,
#callsign {
  text-transform: uppercase;
}

._404img {
  display: block;
  max-width: 80dvw;
  height: 60dvh;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 25px;
}

/* *************************************************************************************************** */

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* END OF CSS NAVIGATION */

/* table {
  width: 100%;
  padding: 25px;
} */

table tr th {
  background-color: var(--main-color);
  color: white;
  text-align: center;
  margin: 20px;
  position: sticky;
  top: 0;
  padding: 15px 2px 15px 2px;
  border-left: solid 1px white;
}

table tr td {
  border: solid 1px var(--main-color);
  text-align: left;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 5px;
  padding-right: 5px;
}

.btn-icon-only {
  text-align: center;
  border-radius: 7px;
  height: 40px;
  background-color: rgb(96, 61, 3);
  color: white;
  height: 30px;
  width: 50px;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
}

.modal-dialog {
  width: 90vw;
  height: 80vh;
  margin: auto;
  margin-top: 10vh;
  border-radius: 20px;
  border: solid 1px #10395d;
  display: flex;
  flex-direction: column;
}

.modal-header {
  height: 50px;
  background-color: var(--main-color);
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: row;
  align-content: stretch;
  justify-content: space-between;
}

.modal-body {
  height: calc(80vh - 51px);
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  background-color: var(--bacground-color);
  overflow-y: auto;
  border-radius: 0 0 20px 20px;
}

.modalPopUp .close,
.modal-header .close {
  color: red;
  align-items: flex-end;
  margin-right: 25px;
  font-weight: bold;
  cursor: pointer;
  background: transparent;
  font-size: 2rem;
  border: none;
}

.modal-title {
  margin: auto;
  font-size: 1.8rem;
  color: white;
}

.input_modal {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.save_modal {
  background-color: var(--main-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: auto;
}

div.modal-body > form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.avatar {
  border: solid #f5f5f5;
  width: 150px;
  height: 150px;
  border-radius: 25px;
  overflow: hidden;
  margin-right: 20px;
}

/* Form Stuff */

label,
input,
textarea,
progress,
meter {
  /* display: block; */
  font-family: inherit;
  font-size: 100%;
  /* margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  box-sizing: border-box; */
  width: 100%;
  /* padding: 5px;
  height: 30px; */
}

textarea {
  height: 90px;
}

label {
  margin-bottom: 5px;
}

input[type="text"],
input[type="datetime-local"],
input[type="color"],
select {
  box-shadow: inset 1px 1px 3px #cccccc;
  border-radius: 5px;
}

input[type="range"] {
  appearance: none;
  background: red;
  height: 2px;
  padding: 0;
  outline: 1px solid transparent;
}

input[type="color"] {
  border: 0;
  padding: 0;
}

/* input[type="file"] {
  height: 0;
  padding: 0;
  opacity: 0;
} */

label[for="file"] {
  box-shadow: 1px 1px 3px #cccccc;
  background: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid darkgrey;
  border-radius: 5px;
  text-align: center;
  line-height: 1.5;
}

label[for="file"]:hover {
  background: linear-gradient(to bottom, white, #dddddd);
}

label[for="file"]:active {
  box-shadow: inset 1px 1px 3px #cccccc;
}

form > div {
  margin-bottom: 20px;
}

.form_container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#checkboxes label {
  float: left;
}

#checkboxes ul {
  margin: 0;
  list-style: none;
  float: left;
}
/*
input:valid {
  background-image: linear-gradient(to right, rgb(3, 72, 3), rgb(2, 45, 59)); 
  padding-bottom: 35px;
  color: white;
  border-radius: 25px;
  padding-left: 20px;
  margin-bottom: 25px;
}*/

/* input:invalid:required {
  background-image: linear-gradient(to right, pink, lightgreen);
} */

p > label,
div > label {
  display: block;
}

input[type="checkbox"] {
  appearance: none;
}

input[type="checkbox"] {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid rgb(61, 53, 53);
  /* Adjusts the position of the checkboxes on the text baseline */
  vertical-align: -2px;
  /* Set here so that Windows' High-Contrast Mode can override */
  color: green;
  margin-left: 15px;
  margin-top: 2px;
  margin-bottom: 2px;
}

input[type="checkbox"]::before {
  content: "✔";
  position: absolute;
  font-size: 1.4em;
  right: -1px;
  top: -0.22em;
  visibility: hidden;
}

input[type="checkbox"]:checked::before {
  /* Use `visibility` instead of `display` to avoid recalculating layout */
  visibility: visible;
}

input[type="checkbox"]:disabled {
  border-color: black;
  background: #dddddd;
  color: gray;
}

.simple-modal-text {
  margin-top: 3px;
  margin-bottom: 3px;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 1.5rem;
}

.tekstMultiline {
  white-space: pre;
  min-width: 320px;
  max-width: 320px;
}

.trv {
  position: absolute;
  top: 15px;
  left: 250px;
  width: 600px;
  padding: 3px;
  fill: var(--main-color);
  stroke: white;
  fill-opacity: 0.6;
  stroke-width: 2px;
  transform: rotate(-5deg);
}

/* index page */
#bottom_wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  fill: var(--main-color);
  fill-opacity: "0.1";
  opacity: 0.8;
}

#wave_2 {
  position: absolute;
  bottom: calc(1% + 10px);
  left: 5px;
  height: 100px;
  stroke-width: 300;
  stroke-linecap: round;
  fill: none;
  fill-rule: nonzero;
  z-index: 10;
}

#trv {
  position: absolute;
  top: 300px;
  left: 200px;
}

#Toffe {
  position: absolute;
  top: 100px;
  left: 20px;
}

.box {
  width: 400px;
  aspect-ratio: 3/1;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  position: absolute;
  bottom: 20px;
  left: 70dvw;
}

.NewsTitle {
  font-size: 1.5rem;
  color: rgb(4, 66, 79);
}

.box-btn {
  font-size: 1rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  background-color: rgb(4, 66, 79);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 15px;
}

@property --deg {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}

.box::before,
.box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(
    from var(--deg) at center,
    #c3ee06,
    #8ae67e,
    #067e08,
    #043f0e
  );
  border-radius: inherit;
  padding: 2px;
  animation: autoRotate 3s linear infinite;
}

.box::after {
  filter: blur(10px);
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  color: var(--bg-color);
  background-color: var(--bacground-color);
  height: 100%;
  width: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@keyframes autoRotate {
  to {
    --deg: 360deg;
  }
}

.simple-modal-title {
  background-color: var(--main-color);
  color: white;
}

.simple-modal-window {
  background-color: var(--bacground-color);
}

.simple-modal-text {
  margin-top: 3px;
  margin-bottom: 3px;
  margin-left: 15px;
  margin-right: 15px;
  display: flex !important;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  white-space: pre;
  align-items: center;
  text-align: center;
}

.simple-modal-close {
  color: red;
}

.fc-list-day-side-text,
.fc-list-day-text {
  color: var(--main-color) !important;
}

.fc-pasa {
  background-color: rgb(236, 236, 8) !important;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

#page_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#container {
  /* margin: 20px auto; */
  width: 70vw;
}

#fileManager {
  width: 30vw;
}

.ck-editor__editable[role="textbox"] {
  /* editing area */
  min-height: 500px;
}

.ck-content .image {
  /* block images */
  max-width: 80%;
  margin: 20px auto;
}

#container
  > div.ck.ck-reset.ck-editor.ck-rounded-corners
  > div.ck.ck-editor__top.ck-reset_all
  > div
  > div.ck.ck-sticky-panel__content
  > div
  > div
  > div.ck.ck-dropdown.ck-text-fragment-language-dropdown {
  display: none;
}

#imageInput {
  border: none;
}

#preview {
  margin-top: 20px;
  max-width: 800px;
}

.card {
  width: 50vw;
}

.slidecontainer {
  margin-top: 20px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04aa6d;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04aa6d;
  cursor: pointer;
}

div.main_container > main > div > section {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: calc(var(--border-size-2) * 4);

  /* & h2 {
    width: 100%;
    text-align: center;
  } */

  /* & picture > img {
    object-fit: cover;
    width: 100%;
    height: 350px;
  } */
}

div.main_container > main > div > section > h2 {
  width: 100%;
  text-align: center;
}

div.main_container > main > div > section > picture > img {
  object-fit: cover;
  width: 100%;
  height: 350px;
}

.registration {
  background-color: var(--text-color);
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  margin: 100px auto;
  border-radius: 5px;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 0;
}

.registration > h2 {
  color: var(--main-color);
  margin-bottom: 20px;
  text-align: center;
}

form {
  width: inherit;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="callsign"],
input[type="date"],
form > select {
  /* width: 100%; */
  margin-bottom: inherit;
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button[type="submit"] {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  border: none;
  background-color: var(--main-color);
  color: var(--text-color);
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

/* TABLET */
/* @media (max-width: 1400px) {
  body {
    font-size: 20px;
    background-color: var(--main-color);
  }

     .main_container {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    align-items: center;
    max-height: calc(
      100% - ((var(--nav-height) + 35px) + var(--footer-height))
    );
    min-height: calc(
      100% - ((var(--nav-height) + 35px) + var(--footer-height))
    );
  }
  
} */

/* @media (max-width: 1050px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
 }

  .pic_bg {
    max-height: 100dvh;
    max-width: 100dvw;
  }

    
  .footer {
    text-align: center;
    font-size: 15px;
    color: var(--text-color);
  }

    
    
} */

.album {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.blurred {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0.2;
}

.AlbumGallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 30px;

  /* & button {
    aspect-ratio: var(--ratio-square);
    background-color: var(--main-color);
    height: 350px;
    border-radius: 15px;
    color: white;
    padding: 5px;
  } */

  & img {
    aspect-ratio: var(--ratio-square);
    max-inline-size: 100%;
    object-fit: cover;
    width: 100%;
    height: 300px;
    margin-bottom: 10px;
    border-radius: 10px;
  }
}

.AlbumGallery > img {
  aspect-ratio: var(--ratio-square);
  max-inline-size: 100%;
  object-fit: cover;
  width: 100%;
  height: 300px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.album_preview {
  aspect-ratio: var(--ratio-square);
  max-inline-size: 100%;
  object-fit: cover;
  width: fit-content;
  height: 300px;
  margin-bottom: 10px;
}

.main_album_picture_container {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: solid 2px var(--main-color);
  & h3 {
    width: 100%;
    text-align: center;
  }
}

.album_picture_upload_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 2px var(--main-color);
  padding: 5px;
  margin: 10px;
  text-align: center;
}

.album_picture_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: solid 2px var(--main-color);
  padding: 5px;
  margin: 10px;
  text-align: center;
}

.delete_picture {
  background-color: darkred;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px;
  cursor: pointer;
}

.add_picture {
  background-color: var(--main-color);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px;
  cursor: pointer;
  width: 150px;
  height: 40px;
}

#album_edit > div {
  margin-bottom: 5px;
}

.inline > label {
  margin-right: 10px;
  width: 40dvw;
  text-align: end;
}

.inline {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;

  & input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="date"] {
    width: 40dvw;
  }
}

.centerd {
  margin-left: auto;
  margin-right: auto;
}

.AlbumGallery > button {
  aspect-ratio: var(--ratio-square);
  background-color: var(--main-color);
  height: 350px;
  border-radius: 15px;
  color: white;
  padding: 5px;
}

.imageGallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: calc(var(--border-size-2) * 4);

  & img {
    aspect-ratio: var(--ratio-square);
    max-inline-size: 100%;
    object-fit: cover;
    width: 100%;
    height: 350px;
  }
}

/* .carousel > .dialogPicture, */
.imageGallery > button > img {
  aspect-ratio: var(--ratio-square);
  max-inline-size: 100%;
  object-fit: cover;
  width: 100%;
  height: 350px;
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--size);
  inline-size: 70dvw;
  block-size: 85dvh;
  background-color: var(--bacground-color);
  overflow: hidden;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  /* &::-webkit-scrollbar {
    display: none;
  } */

  /* & img {
    margin: auto;
    scale: 1.8;
    overflow: hidden;
    object-fit: contain;
  } */
}

.carousel > img {
  margin: auto;
  scale: 1.8;
  overflow: hidden;
  object-fit: contain;
}

/* .dialog {
  margin: auto;
  .controls {
    inline-size: 70dvw;
    position: fixed;
    bottom: 250px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    animation: var(--animation-fade-in) var(--fade-duration) forwards;
    & button {
      width: 50px;
      height: 50px;
      border-radius: 25px;
      margin: 15px;
    }
  }
} */

.dialog {
  margin: auto;
}

.dialog .controls {
  inline-size: 70dvw;
  position: fixed;
  bottom: 250px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  animation: var(--animation-fade-in) var(--fade-duration) forwards;
}

.dialog .controls > button {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  margin: 15px;
}

.closeDialog {
  background-color: rgb(80, 74, 79);
  position: absolute;
  top: 20px;
  right: 50px;
  z-index: 1500;
  inset-block-start: 10px;
  inset-inline-end: 10px;
  block-size: 48px;
  inline-size: 48px;
  font-size: 24px;
  padding: 0;
  border-radius: 24px;
}

.imageTools {
  width: 100dvw;
  position: relative;
  top: 5px;
  display: flex;
  justify-content: space-between;
}

.diaAlbum {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  font-size: 30px;
  background-color: var(--main-color);
  color: white;
}

.closeAlbum {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  font-size: 30px;
  background-color: darkred;
  color: white;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50em;
  margin-inline: auto;
  gap: 3.25rem;
  position: relative;
  z-index: 10;
  align-items: center;
  padding: 5em 0;
  box-sizing: border-box;
}

section .green {
  background: radial-gradient(
    ellipse at right top,
    #107667ed 0%,
    #151419 47%,
    #151419 100%
  );
  opacity: 0.95;
  transition: opacity 0.25s ease-in;
}

#mheadloc {
  width: 800px;
  height: 600px;
}

.g-recaptcha {
  margin-left: 513px;
}

.qr-agenda {
  width: 100px;
  height: 100px;
}

.fc-myLabel-button.fc-button.fc-button-primary {
  pointer-events: none;
  background: none;
  border: none;
  color: var(--main-color);
  margin: 0;
}

.fc-footer-toolbar.fc-toolbar {
  margin-top: 0;
}

#map {
  height: 70dvh;
  width: 60dvw;
}

.round_container {
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.left-container {
  width: 60dvw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: 15px;
  max-width: 37dvw;
}

.form-group4 {
  display: flex;
  align-items: center;
}

#coords {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.form-group2 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  /* & label {
    max-width: 150px;
  } */
}

.form-group2 > label {
  max-width: 150px;
}

.form-group3 {
  display: flex;
  border: aliceblue solid 2px;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  padding: 5px;
  border-radius: 7px;
}

#TableContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0;
  border: solid var(--main-color) 2px;
  border-radius: 10px;
  overflow: auto;
  margin-bottom: 5px;
  margin-top: 80px;
  height: 70dvh;
}

.netcontrol {
  height: 30dvh !important;
  margin-top: 2px !important;
}

#Formcontainer > div:nth-child(1) {
  width: 150px;
}

#Formcontainer > div:nth-child(2) {
  width: inherit;
}

#chatcontainer {
  width: 98%;
  background-color: #edece4;
  padding: 5px;
  border: solid var(--main-color) 1px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 5px;
  max-height: 20dvh;
  min-height: 20dvh;
}

#conversation {
  overflow: auto;
}

#Formcontainer {
  width: 98%;
  background-color: #c8ddaf;
  padding: 5px;
  border: solid var(--main-color) 1px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 300px;
}

.selectedRadio {
  color: rgb(0, 255, 179);
  background-color: var(--main-color);
}

.windroos {
  background: rgba(3, 84, 25, 0.9);
  border-radius: 50%;
  padding: 2px;
}

.leaflet-control a {
  background: white;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

#map > div.leaflet-control-container > div.leaflet-top.leaflet-left > button,
#map > div.leaflet-control-container > div.leaflet-top.leaflet-left > div > a {
  width: 30px;
  height: 30px;
}

#map
  > div.leaflet-control-container
  > div.leaflet-top.leaflet-left
  > button
  > i {
  font-size: 22px;
  color: #b80e1f;
  margin-top: 5px;
}

#map
  > div.leaflet-control-container
  > div.leaflet-top.leaflet-left
  > div
  > a
  > i {
  font-size: 22px;
  margin-top: 5px;
  color: blue;
}

.FormButton {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  border: none;
  background-color: var(--main-color);
  color: var(--text-color);
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.reset {
  height: 20px;
  width: 300px;
  background-color: red;
  color: yellow;
  margin-top: 10px;
}

/* *************trainer start************** */
.trainer_container {
  display: flex;
  justify-content: space-between;
}

.trainer_menu {
  border: solid 1px black;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
}

.trainer_information {
  width: 65%;
  border: solid 1px black;
  padding: 15px;
  border-radius: 5px;
  background-color: white;
  position: absolute;
  left: 32%;
}

.trainer_information > table {
  border: solid 1px rgb(3, 12, 60);
  width: 100%;
  padding: 15px;
  margin-bottom: 5px;
}

.trainer_information > table > tbody > tr:nth-child(1) > td:nth-child(1) {
  width: 250px;
}

.trainer_information > table > tbody > tr:nth-child(1) > td > img {
  max-width: 220px;
  max-height: 200px;
}

.trainer_information > table > tbody > tr > td:nth-child(1) > button {
  width: 55px;
  border-radius: 15px;
  background-color: var(--main-color);
  color: white;
  height: 30px;
}

.trainer_information > table > tbody > tr > td:nth-child(1) {
  width: 60px;
  text-align: center;
  margin: auto;
}

.trainer_information > table > tbody > tr > td:nth-child(4) {
  width: 55px;
  text-align: center;
}

/* //#\34 5 > tbody > tr:nth-child(2) > td:nth-child(3) > i.fa-solid.fa-circle-exclamation */
.trainer_information
  > table
  > tbody
  > tr
  > td:nth-child(3)
  > i.fa-solid.fa-check {
  font-size: 30px;
  color: green;
}

.trainer_information
  > table
  > tbody
  > tr
  > td:nth-child(3)
  > i.fa-solid.fa-circle-exclamation {
  font-size: 30px;
  color: red;
}

div.trainer_menu > button {
  background-color: var(--main-color);
  color: rgb(243, 243, 249);
  bottom: 35px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.trainer_information > table > tbody > tr:nth-child(1) > td:nth-child(2) {
  text-align: center;
}

.trainer_information > table > tbody > tr:nth-child(1) > td:nth-child(3) {
  font-weight: bold;
}

.trainer_information
  > table
  > tbody
  > tr:nth-child(6)
  > td:nth-child(2)
  > button
  > i {
  font-size: 40px;
  margin: 2px;
  color: #2acf1f;
}

.trainer_information
  > table
  > tbody
  > tr:nth-child(6)
  > td:nth-child(1)
  > button {
  border-radius: 20px;
  background-color: rgb(9, 176, 76);
  color: gold;
  height: 40px;
  width: 40px;
  font-size: 16px;
}

.info-div {
  color: darkblue;
  background-color: rgb(232, 232, 179);
  padding: 10px;
}

.fa-brands {
  font-size: 25px;
}

.trainer_information > table > tbody > tr:nth-child(6) > td:nth-child(1),
.trainer_information > table > tbody > tr:nth-child(6) > td:nth-child(2) {
  border: none;
}

.trainer_information > table > tbody > tr:nth-child(2) > td:nth-child(3) {
  width: 70px;
}

#limit {
  width: 300px;
  font-size: 20px;
  text-align: center;
}

.thumbnail {
  cursor: pointer;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
}

/*change the number below to scale to the appropriate size*/
.thumbnail:hover {
  transform: scale(2.5) translateX(45px) translateY(45px);
  z-index: 999999999;
}

.btn_vragen {
  margin: 25px;
  width: 100%;
}

#nummers {
  width: 100%;
}

.inline2 {
  display: flex;
  justify-content: space-between;
}

.form-card {
  background: var(--bacground-color);
  padding: 2rem;
  border-radius: 20px;
  width: 95dvw;
  height: 90dvh;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  display: flex;
  margin: 0;
  flex-direction: column;
  justify-content: flex-start;
  border: solid var(--main-color) 2px;
}

.form-card h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}

.form-group-modal {
  min-width: 50dvw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  & label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #444;
    margin-left: 0;
  }

  & input[type="text"],
  input[type="date"] {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--main-color);
    font-size: 1rem;
    transition:
      border-color 0.2s,
      box-shadow 0.2s;
  }

  & input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
  }

  & input[type="radio"] {
    width: 20px;
    accent-color: #07229b;
    transform: scale(1.1);
    width: 100%;
    font-size: 22px;
  }

  & input[type="checkbox"] {
    width: 20px;
    accent-color: #07229b;
    transform: scale(1.2);
    margin-right: 15px;
    margin-left: 15px;
  }

  & button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #667eea;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    /* transition:
      background 0.2s,
      transform 0.1s; */
  }

  & button:hover {
    background: #5a6fd6;
  }

  & button:active {
    transform: translateY(1px);
  }
}

.inline-group {
  width: 100%;
  display: flex;
  align-items: center;
}

/* .form-group-modal {
  display: flex;
  justify-content: flex-start;
  align-content: space-around;
  flex-direction: row;
  align-items: center;
  width: 80%;
  text-align: start;

  & label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 200px;
  }

  & input[type="checkbox"] {
    width: 20px;
  }
} */

.inline2 > textarea {
  width: 70vw;
}

.inline2 > label {
  width: 150px;
}

.inline3 {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
}

#IMG {
  width: 70px;
}

.trainer_information > table > tbody > tr:nth-child(7) > td:nth-child(2) {
  padding: 2px;
  margin: auto;
  width: 80px;
  display: inline-flex;
  justify-content: center;
}

/* .trainer_information > table > tbody > tr:nth-child(1) td:nth-child(2),
.trainer_information > table > tbody > tr:nth-child(1) td:nth-child(3) {
  background-color: rgb(229, 243, 232);
} */
.active_q {
  background-color: rgb(229, 243, 232);
}

.inactive_q {
  background-color: rgb(236, 10, 10);
}

.correct_2 {
  background-color: rgb(117, 233, 117);
}

/* *************trainer stop************** */

/* *************@MEDIA************** */

@media screen and (min-width: 33.75rem) {
  section .card {
    min-height: 15rem;
  }
}

section .card {
  position: relative;
  z-index: 555;
  max-width: 38rem;
  min-height: 20rem;
  width: 90%;
  display: grid;
  place-content: center;
  place-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0.063em 0.75em 1.563em rgba(0, 0, 0, 0.78);
  border-radius: 1rem;
}

section .card-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.8em 0.8em 0em 1.5em;
}

section .card-header .close {
  color: #f17a7a;
  width: 2.5rem;
  cursor: pointer;
}

section .green .card-body {
  align-items: flex-end;
}

@media screen and (min-width: 33.75rem) {
  section .card-body {
    display: flex;
    text-align: unset;
  }
}

section .card-body {
  width: 100%;
  padding: 0.7em 2em 0.5em 2em;
  text-align: left;
}

@media screen and (min-width: 33.75rem) {
  section .card-body > div {
    margin-left: 2em;
  }
}

section .card-body h3 {
  color: #32e728;
  margin-bottom: 0.5em;
}

section .card-body p {
  text-align: left;
  color: #cccccc;
  font-size: 1rem;
  letter-spacing: 0.031rem;
}

section .card-body a {
  display: block;
  text-align: center;
  color: cadetblue;
  cursor: pointer;
}

@media screen and (min-width: 33.75rem) {
  section .card .progress {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

section .card .progress {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}

section .green .btn-first {
  margin-left: 0;
}

@media screen and (min-width: 33.75rem) {
  section .card .btn-first,
  section .card .btn-second {
    padding: 0.625rem 2.2rem;
  }
}

section .card .btn-first,
section .card .btn-second {
  background: var(--main-color);
  color: #fff;
  border-radius: 0.25em;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  font-size: 0.9rem;
}

section .card .btn-second {
  margin-left: 2em;
  background: rgb(75, 6, 6);
}

@media screen and (min-width: 33.75rem) {
  section .card .btn-first,
  section .card .btn-second {
    padding: 0.625rem 2.2rem;
  }
}

section .card .btn-first,
section .card .btn-second {
  color: #fff;
  border-radius: 0.25em;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  font-size: 0.9rem;
}

/* *************************** */

@layer animation.base {
  @keyframes op-hide {
    100% {
      visibility: hidden;
    }
  }
}

@layer animation.scroll-driven {
  body {
    timeline-scope: --carousel;
  }
  #carousel {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
    scroll-timeline: --carousel inline;
    > * {
      scroll-snap-align: center;
    }
  }

  .controls-btn {
    animation-duration: auto;
    animation-fill-mode: forwards;
    animation-timeline: --carousel;
    animation-timing-function: linear;

    /* &.preview {
      animation-name: preview;
    } */

    /* &.next {
      animation-name: next;
    } */
  }

  .controls-btn .preview {
    animation-name: preview;
  }

  .controls-btn .next {
    animation-name: next;
  }

  @keyframes preview {
    from {
      visibility: hidden;
    }
  }

  @keyframes next {
    to {
      visibility: hidden;
    }
  }
}

.hidescrollbar {
  overflow: hidden;
}

.art_content {
  /* overflow: hidden; */
  margin: 15px;
  max-height: 100dvh;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--main-color);
  height: 3px;
}

p {
  margin: unset;
}

body > div > article > p {
  margin-left: 10px;
}

.float_right {
  float: right;
  display: flex;
  flex-direction: column;
  padding: 5px;
}

.float_left {
  float: left;
  display: flex;
  flex-direction: column;
  padding: 5px;
}

.fixed_width_200 > img {
  max-width: 200px;
}

.fixed_height_200 > img {
  max-height: 200px;
}

.fixed_height_300 > img {
  max-height: 300px;
}

.float_right > figcaption,
.float_left > figcaption {
  font-size: small;
  text-align: center;
}

body > div.main_container > div > article > h2 {
  margin-bottom: 15px;
}

body > div.main_container > div > div > p:nth-child(2) {
  font-size: large;
}

article > p {
  margin-left: 10px;
}

.div50dvw {
  width: 50dvw;
  margin-right: 15px;
}

.header-card {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

article {
  padding-bottom: 30px;
  overflow: hidden;
}

body
  > div.main_container
  > div
  > article
  > table
  > tbody
  > tr
  > td:nth-child(1) {
  text-align: center;
  width: 100px;
}

.col_space-evenly {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.image_center {
  display: flex;
  justify-content: center;
}

.max_size_img {
  max-width: 1000px;
}

/* MOBILE */

@media (max-width: 800px) {
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
    position: fixed;
    height: 80dvh;
    top: 3rem;
    left: 0;
    width: 100%;
    background-color: #335c2a;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
  }

  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
    animation: animation 0.5s ease forwards var(--i);
  }

  .log-sign {
    display: flex;
    justify-content: center;
  }

  .nav-links {
    flex: initial;
    width: 100%;
  }

  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }

  .nav-link:hover > a {
    transform: scale(1);
    background-color: var(--main-color);
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: var(--main-color);
    display: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown {
    display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover > a > i {
    transform: rotate(360deg);
  }

  .dropdown-link > a {
    background-color: transparent;
    color: #fff;
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .arrow {
    z-index: 1;
    background-color: var(--main-color);
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: 0.5s;
  }

  .nav-link:hover .arrow {
    background-color: var(--main-color);
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover > a {
    background-color: #ceece3;
    color: var(--main-color);
  }

  .dropdown-link:first-child:hover ~ .arrow {
    background-color: var(--main-color);
  }

  .nav-link > a > i :not(.fa) {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: 0.7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: 0.7s;
  }

  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
  }

  div.log-sign > a {
    text-align: center;
    width: fit-content;
  }

  .main_container {
    position: relative;
    padding: 5px;
    min-height: calc(100dvh - var(--nav-height));
    max-height: calc(100dvh - var(--nav-height));
  }

  .footer-container {
    min-height: var(--footer-height) * 1.5;
    max-height: var(--footer-height) * 1.5;
    flex-direction: column;
  }

  #wave_2 {
    bottom: 27px;
  }

  .breadcrumb {
    min-width: 100dvw;
    max-width: 100dvw;
    flex-direction: row;
  }

  ul.breadcrumb {
    padding: 0;
    list-style: none;
  }

  .footer {
    /* min-width: 100dvw;
    max-width: 100dvw;
    text-align: center;
    padding-top: 2px;
    padding-bottom: 2px; */
    display: none;
  }

  .footerUserInfo {
    min-width: 100dvw;
    max-width: 100dvw;
    text-align: center;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .nav-btn {
    min-height: calc(100dvh - var(--nav-height));
    max-height: calc(100dvh - var(--nav-height));
  }

  .hiddenOnMobile {
    display: none;
  }

  .trv {
    top: 50px;
    width: 350px;
    left: calc((100dvw / 2) - (350px / 2));
  }

  .box {
    position: absolute;
    bottom: 100px;
    width: 350px;
    left: calc((100dvw / 2) - (350px / 2));
    height: 120px;
  }

  .simple-modal-window {
    min-width: 320px;
    max-width: 320px;
    overflow: auto;
    /* min-height: 170px; */
    border-radius: 8px;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 14px;
    animation: fadein 0.5s ease-in-out;
    position: absolute;
    top: 150px;
    z-index: 9999;
  }

  .simple-modal-text {
    white-space: unset;
  }

  h3 {
    font-size: 16px;
  }

  p {
    margin-right: 5px;
    margin-left: 5px;
    font-size: 14px;
  }

  section .card-body p {
    color: #cccccc;
  }

  /* .block-flex-row-space-around {
    flex-direction: column;
  } */

  .team-card {
    width: unset;
    margin-bottom: 25px;
  }

  /* .imageGallery {
    & img {
      max-inline-size: 100%;
      width: 100%;
      aspect-ratio: unset;
      height: unset;
    }
  } */

  .imageGallery > img {
    max-inline-size: 100%;
    width: 100%;
    aspect-ratio: unset;
    height: unset;
  }

  .AlbumGallery > button {
    height: unset;
  }

  .diaAlbum {
    display: none;
  }

  ul {
    margin: unset;
  }

  body {
    font-size: 14px;
  }

  .image-style-align-left,
  .image-style-side {
    max-height: 250px;
    max-width: 350px;
  }

  #calendar {
    min-width: unset;
    max-height: 87dvh;
    min-height: 87dvh;
    padding: 0;
    margin: auto;
  }

  .fc .fc-toolbar.fc-header-toolbar {
    display: flex;
    flex-direction: column;
  }

  .fixed_width_200 > img {
    max-width: 30dvw;
  }

  .fixed_height_200 > img {
    max-width: 90dvw;
  }

  .fixed_height_300 > img {
    max-height: 150px;
    max-width: 90dvw;
  }

  .float_right {
    float: unset;
  }

  .float_right > img {
    max-width: 90dvw;
    object-fit: cover;
  }

  body > div.main_container > div > article > table > tbody > tr > td,
  body
    > div.main_container
    > div
    > article
    > div
    > table:nth-child(1)
    > tbody
    > tr:nth-child(11)
    > td:nth-child(2)
    > strong,
  body > div.main_container > div > article > div > table > tbody > tr > td {
    font-size: x-small;
  }

  .round_container {
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    width: 100dvw;
    & .left-container,
    .right-container {
      width: 100dvw;
      display: flex;
      flex-direction: column;
      align-content: center;
      & #map {
        width: 90dvw;
        height: 50dvh;
      }
      & #TableContainer {
        width: fit-content;
        align-content: center;
        text-align: center;
        margin: auto;
        padding-left: 185px;
      }
    }
  }

  .col_space-evenly {
    flex-direction: column;
    align-items: stretch;
  }

  body > div.main_container > div > article > div > ul,
  body > div.main_container > div > article > ul {
    margin-left: 30px;
  }
} /* end MOBILE */
