/* input(149,10): run-time error CSS1030: Expected identifier, found '.'
input(149,25): run-time error CSS1025: Expected comma or open brace, found ')' */
.previewImages {
  max-height: var(--gallery_tile_size);
  overflow: hidden;
}
.previewImages .galleryItem {
  width: var(--gallery_tile_size);
  height: var(--gallery_tile_size);
  box-sizing: border-box;
  overflow: hidden;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: top;
  background-size: cover;
  margin: 0px;
}
.gallery .galleryItem {
  width: var(--gallery_tile_size);
  height: var(--gallery_tile_size);
  box-sizing: border-box;
  overflow: hidden;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: top;
  background-size: cover;
  margin: 0px;
  cursor: pointer;
}
.gallery.sliderGallery {
  margin-left: auto;
  margin-right: auto;
  height: var(--gallery_slider_size);
  width: var(--gallery_slider_size);
  overflow: hidden;
  white-space: nowrap;
}
.gallery.sliderGallery .galleryItem {
  height: var(--gallery_slider_size);
  width: var(--gallery_slider_size);
  max-width: var(--gallery_slider_size);
  object-fit: fill;
  display: inline-block;
}
.gallery.largeGallery {
  margin-left: auto;
  margin-right: auto;
  width: var(--gallery_slider_size);
}
.gallery.largeGallery .galleryItem {
  height: var(--gallery_slider_size);
  width: var(--gallery_slider_size);
  max-width: var(--gallery_slider_size);
  object-fit: fill;
  display: inline-block;
}
.gallery.largeGallery .galleryItem + .galleryItem {
  margin-top: 10px;
}
.gallery.tilesGallery .galleryItem {
  margin-bottom: 5px;
}
#hideImage {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  vertical-align: middle;
  line-height: 100vh;
  height: 100%;
  cursor: zoom-out;
}
#hideImage #fullImage {
  cursor: default;
  text-align: center;
}
#hideImage #fullImage img {
  max-height: 100%;
  max-width: 100%;
  margin: auto;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
}
#hideImage #fullImage div {
  color: black;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 30px;
  padding: 10px;
  position: absolute;
  line-height: 40px;
  margin-top: 50vh;
  display: block;
  cursor: pointer;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 5px;
  width: 80px;
  transition: all 0.3s;
}
#hideImage #fullImage div:hover {
  background-color: white;
  transition: all 0.3s;
}
#hideImage #fullImage #next {
  right: 0px;
}
#hideImage #fullImage #close {
  right: 0px;
  top: 0px;
  margin-top: 65px;
  width: 40px;
  height: 40px;
  padding: 0px;
  line-height: 43px;
  border-radius: 40px;
}





html {
  font-size: 16px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  background-color: white;
  color: black;
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
}
h1 span {
  vertical-align: bottom;
}
h1 input,
h1 select {
  vertical-align: baseline;
}
p {
  text-align: justify;
}
body:has(.menuBarVisible) p {
  padding-right: 20px;
}
.button {
  background-color: #c7d9dc;
  color: black;
  display: inline-block;
  padding: 3px 10px 3px 10px;
  margin: 2px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 90px;
  text-align: center;
  outline: none;
  cursor: pointer;
  border: 0px;
  font-size: 16px;
}
.button:hover {
  background-color: #87a8ad;
}
.button i {
  float: left;
  margin-left: 5px;
  margin-right: 15px;
}
input[type="text"],
input[type="password"],
textarea,
select {
  width: 100%;
  border: solid 1px #d0d0d0;
  border-radius: 3px;
  padding: 5px;
  box-sizing: border-box;
  background-color: white !important;
  line-height: 1.5;
  font-size: 16px;
  appearance: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border: solid 1px #7a7a7a;
}
textarea {
  resize: none;
  height: 150px;
}
*,
::after,
::before {
  box-sizing: border-box;
}
input[type="checkbox"],
input[type="radio"] {
  width: auto;
}
input[type="submit"] {
  background-color: #c7d9dc;
  color: black;
  display: inline-block;
  padding: 3px 10px 3px 10px;
  margin: 2px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 90px;
  text-align: center;
  outline: none;
  cursor: pointer;
  border: 0px;
  font-size: 16px;
}
input[type="submit"]:hover {
  background-color: #87a8ad;
}
input[type="submit"] i {
  float: left;
  margin-left: 5px;
  margin-right: 15px;
}
table {
  border-collapse: collapse;
}
:root {
  --gallery_tile_size: 400px;
  --on_label: "On";
  --off_label: "Off";
  --gallery_slider_size: 400px;
}
nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 10000;
  background-color: #e6ecef;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  height: 55px;
  line-height: 55px;
  text-align: right;
  border-bottom: 2px solid #89a5b3;
}
nav .navToCollapse {
  display: none;
}
nav .collapsedNav {
  display: block;
}
nav a,
nav label {
  white-space: normal;
  text-align: center;
  word-break: break-all;
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  padding: 8px;
  transition: background-color 0.15s;
  border-radius: 3px;
  line-height: 20px;
  display: inline-block;
  vertical-align: central;
  cursor: pointer;
}
nav a:hover,
nav label:hover {
  color: white;
  background-color: #584b4b;
  transition: background-color 0.15s;
}
nav .logo {
  float: left;
  display: inline-block;
}
nav .logo:hover {
  background-color: transparent;
  color: #4c4c4c;
}
nav .logo > span:nth-child(1) {
  display: block;
  font-size: 25px;
  font-stretch: ultra-condensed;
}
nav .logo > span:nth-child(1) span:nth-child(1) {
  font-weight: normal;
}
nav .logo > span:nth-child(2) {
  font-weight: normal;
  display: block;
  font-size: 11px;
}
nav .cartIcon div {
  position: absolute;
  background-color: blue;
  color: white;
  margin-top: -30px;
  margin-left: 15px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
}
nav .cartIcon .noContent {
  display: none;
}
a {
  color: #0077cc;
}
.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}
.box-shadow {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}
.imagePurchaseLicense {
  margin-bottom: 10px;
}
.imagePurchaseLicense select {
  width: calc(100% - 55px);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.roundIconButton {
  display: inline-block;
  text-decoration: none;
  color: white !important;
  font-size: 20px;
  text-align: center;
  line-height: 35px;
  background-color: #1861ac;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  border: 1px solid #0a3765;
  vertical-align: middle;
}
.roundIconButton:hover {
  background-color: #0a3765;
}
.notificationBubble {
  background-color: #ffdb99;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 16px;
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
  position: absolute;
  color: black;
}
.purchaseButton {
  display: inline-block;
  text-decoration: none;
  color: #ffffff !important;
  font-size: 20px;
  text-align: center;
  line-height: 35px;
  background-color: #1861ac;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  border: 1px solid #0a3765;
  vertical-align: middle;
  color: white !important;
}
.purchaseButton:hover {
  background-color: #0a3765;
}
.purchaseButton:hover {
  background-color: #0a3765;
}
.menuBar {
  position: fixed;
  left: -210px;
  top: 53px;
  bottom: 0px;
  padding-left: 5px;
  width: 200px;
  transition: left 0.5s;
  overflow-y: auto;
  padding-bottom: 100px;
  background-color: #f6f8f9;
  color: #000000;
  z-index: 10002;
  border-right: 1px solid #c7d4db;
}
.menuBar .group {
  display: block;
  font-size: 18px;
  color: #414141;
  font-weight: bold;
  margin-top: 15px;
}
.menuBar .inGroup {
  margin-left: 10px;
}
.menuBar a {
  display: block;
  text-decoration: none;
  color: #000000 !important;
  padding: 5px;
}
.menuBar a:hover {
  background-color: #91a8c8;
}
.menuBar .picturesToPublish {
  position: absolute;
  min-width: 15px;
  height: 15px;
  background-color: #af00b6;
  line-height: 15px;
  text-align: center;
  color: white;
  font-size: 12px;
  border-radius: 15px;
  margin-top: -10px;
  margin-left: 130px;
}
.menuBar .picturesToReview {
  position: absolute;
  min-width: 15px;
  height: 15px;
  background-color: #e47600;
  line-height: 15px;
  text-align: center;
  color: white;
  font-size: 12px;
  border-radius: 15px;
  margin-top: -10px;
  margin-left: 130px;
}
.menuBar .picturesRefused {
  position: absolute;
  min-width: 15px;
  height: 15px;
  background-color: #b60000;
  line-height: 15px;
  text-align: center;
  color: white;
  font-size: 12px;
  border-radius: 15px;
  margin-top: -10px;
  margin-left: 110px;
}
.menuBarVisible {
  left: 0px !important;
  transition: left 0.5s;
}
.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
.pager .page {
  text-decoration: none;
  padding: 3px;
  font-weight: bold;
  color: white;
  min-width: 30px;
  height: 30px;
  background-color: #41687c;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  margin: 3px;
  cursor: pointer;
  line-height: 25px;
}
.pager .page:hover {
  background-color: #799aaa;
}
.pager .selectedPage {
  outline: solid 2px red;
}
.pager div {
  display: inline-block;
}
.pager .pagerInformation {
  float: right;
  line-height: 30px;
}
.buttonContainer {
  margin-top: 10px;
  text-align: center;
}
.leftTextWithImageBar {
  width: 100%;
}
.rightImageBar {
  display: none;
  width: 30vw;
  position: fixed;
  top: 50px;
  right: 0px;
  bottom: 0px;
  background: var(--imagebar_background);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.rightImageBar a {
  display: block;
  color: white;
  position: absolute;
  text-decoration: none;
  font-size: 18px;
  left: 10px;
  top: -30px;
  text-shadow: 1px 1px 2px black;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.rightImageBar a:hover {
  color: white;
}
.collapsedTitle {
  cursor: pointer;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}
.collapsedTitle:after {
  content: "\f0d8";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  margin-left: 5px;
  font-size: 20px;
  vertical-align: middle;
  font-weight: 900;
}
.collapsedTitle.expanded:after {
  content: "\f0d7";
}
.inactiveFlag {
  background-color: #dea3a3;
  border: solid 1px #c25353;
  color: black;
  padding: 3px;
  border-radius: 2px;
  width: 80px;
  display: inline-block;
  text-align: center;
}
.activeFlag {
  background-color: #b5f1b3;
  border: solid 1px #4c984a;
  color: black;
  padding: 3px;
  border-radius: 2px;
  width: 80px;
  display: inline-block;
  text-align: center;
}
@media (min-width: 800px) {
  .leftTextWithImageBar {
    width: calc(100% - 30vw - 10px);;
  }
  .rightImageBar {
    display: block;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.mainContainer {
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-top: 60px;
  min-height: calc(100vh - 140px);
  padding-top: 30px;
}
.fullWidthContainer {
  width: 100%;
  margin-left: 0px;
  margin-top: 18px;
  min-height: calc(100vh - 55px);
  padding-top: 20px;
  transition: margin-left 0.5s;
}
.mainContainer.menuBarVisible {
  width: calc(100vw - 240px);
  margin-left: 210px;
  transition: margin-left 0.5s;
}
.fullWidthContainer.menuBarVisible {
  width: calc(100vw - 240px);
  margin-left: 210px;
  transition: margin-left 0.5s;
}
#menuLanguageSelector {
  position: fixed;
  bottom: 45px;
  background-color: #f6f8f9;
  color: #000000;
  padding-bottom: 5px;
  left: 0;
  width: 200px;
  text-align: center;
  display: none;
  border-right: 1px solid #c7d4db;
}
#menuLanguageSelector select {
  width: calc(100% - 60px);
  margin-left: 5px;
}
.contact {
  display: inline-block;
  width: 400px;
  vertical-align: top;
  margin-right: 30px;
}
.address {
  display: inline-block;
  width: 200px;
  vertical-align: top;
}
.cookiePolicy {
  position: fixed;
  background-color: #0096bf;
  left: 10px;
  bottom: 10px;
  border-radius: 10px;
  padding: 10px;
  max-width: 500px;
  margin-right: 10px;
  text-align: justify;
  color: white;
  z-index: 10000000;
}
.cookiePolicy a {
  background-color: #74d7f2;
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 20px;
  color: black;
  text-decoration: none;
  transition: background-color 0.2s;
  font-weight: bold;
}
.cookiePolicy a:hover {
  background-color: #37accb;
  transition: background-color 0.2s;
}
.leftColumn div > label {
  display: block;
  font-weight: bold;
}
.leftColumn div > label:after {
  content: ":";
}
#settingsSwitch {
  cursor: pointer;
  margin-left: 5px;
  display: inline-block;
  border-radius: 3px;
  line-height: 20px;
  color: #000000;
  padding: 5px;
  transition: background-color 0.15s;
  padding: 8px;
  vertical-align: central;
}
#settingsSwitch:hover {
  color: white;
  background-color: #584b4b;
  transition: background-color 0.15s;
}
#statChartContainer {
  height: calc(100vh - 200px);
  width: 100%;
}
.introText {
  border: solid 1px #c7d4db;
  background-color: #e6ecef;
  color: #405763;
  padding: 5px;
  border-radius: 3px;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 18px;
}
#underNotLoggedIn {
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 100000;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: none;
}
#notLoggedIn {
  background-color: white;
  position: fixed;
  z-index: 100001;
  width: 400px;
  font-size: 20px;
  border: solid 1px black;
  border-radius: 10px;
  padding: 10px;
  top: 50vh;
  margin-left: calc(50vw - 200px);
  text-align: center;
  display: none;
}
#notLoggedIn i {
  font-size: 40px;
  margin-bottom: 10px;
}
#notLoggedIn span {
  text-align: justify;
  display: inline-block;
}
#notLoggedIn .buttons {
  text-align: center;
  margin-top: 20px;
}
#notLoggedIn .buttons a {
  background-color: #c7d9dc;
  color: black;
  display: inline-block;
  padding: 3px 10px 3px 10px;
  margin: 2px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 90px;
  text-align: center;
  outline: none;
  cursor: pointer;
  border: 0px;
  font-size: 16px;
  font-size: 20px;
}
#notLoggedIn .buttons a:hover {
  background-color: #87a8ad;
}
#notLoggedIn .buttons a i {
  float: left;
  margin-left: 5px;
  margin-right: 15px;
}
#profileMenuButton {
  border: solid 1px #0a3765;
  background-color: #e5a0e1;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  border-radius: 45px;
  margin-top: 5px;
  display: inline-block;
  transition: background-color 0.3s;
  overflow: hidden;
  white-space: nowrap;
  padding: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#profileMenuButton:hover {
  color: black;
  background-color: #4a6989;
  transition: background-color 0.3s;
}
#profileNotification {
  background-color: #ffdb99;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 16px;
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
  position: absolute;
  color: #000000;
  color: black;
  right: 8px;
  top: 5px;
}
#underLogin {
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 50000;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: none;
}
#underMenu {
  background-color: transparent;
  z-index: 50000;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: none;
}
#quickLogin {
  background-color: white;
  z-index: 50001;
  position: fixed;
  top: 55px;
  right: 5px;
  padding: 10px;
  border: solid 1px black;
  border-radius: 5px;
  display: none;
}
#profileMenu {
  background-color: white;
  z-index: 50001;
  position: fixed;
  top: 55px;
  right: 5px;
  padding: 10px;
  border: solid 1px #c0c0c0;
  border-radius: 3px;
  box-shadow: #c0c0c0 2px 2px 5px;
  display: none;
}
#profileMenu > a {
  display: block;
  padding: 3px;
  text-decoration: none;
  color: black;
  border-radius: 3px;
  min-width: 140px;
}
#profileMenu > a:hover {
  background-color: #91a8c8;
}
#profileMenu > a span {
  background-color: #ffdb99;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 16px;
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
  position: absolute;
  color: #000000;
  color: black;
  margin-top: -3px;
  right: 5px;
}
@media (max-width: 500px) {
  #phoneIcon {
    display: none;
  }
  .contact,
  .address {
    width: auto;
    display: block;
  }
  .fullWidthContainer {
    overflow-x: clip;
  }
}
@media (min-width: 690px) {
  .mainContainer {
    width: calc(100% - 100px);
    margin-left: 50px;
  }
  #menuLanguageSelector {
    bottom: 10px;
  }
}
@media (min-height: 500px) {
  #menuLanguageSelector {
    display: block;
  }
}
@media (min-width: 1000px) {
  .leftColumn {
    width: 50%;
    float: left;
    vertical-align: top;
  }
  .rightColumn {
    width: calc(50% - 15px);
    margin-left: 10px;
    float: right;
    vertical-align: top;
  }
  .navToCollapse {
    display: inline-block !important;
  }
  .collapsedNav {
    display: none !important;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #edf4f6 inset !important;
}
.helpBubble {
  display: inline-block;
  background-color: #41687c;
  color: white;
  width: 15px;
  height: 15px;
  line-height: 15px;
  border-radius: 15px;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  font-size: 10px;
  vertical-align: middle;
}
.helpBubble:before {
  content: "?";
}
.modernForm {
  padding-left: 20px;
}
.modernForm .helpBubble {
  position: absolute;
  margin-left: -20px;
}
.modernForm label {
  color: #808080;
  font-size: 12px;
}
.modernForm label.mandatory:after {
  content: " *";
  white-space: nowrap;
}
.modernForm label.changedEntry {
  font-weight: bold;
  color: red;
}
.modernForm input[type="text"],
.modernForm input[type="password"] {
  width: 100%;
  border: none;
  border-left: 1px solid white;
  border-bottom: 2px solid #a8a8a8;
  border-radius: 0px;
  background-color: #edf4f6 !important;
  margin-bottom: 15px;
}
.modernForm input[type="file"] {
  margin-bottom: 10px;
}
.modernForm textarea,
.modernForm [contenteditable='true'] {
  padding: 3px;
  width: 100%;
  border: none;
  border-left: 1px solid #a8a8a8;
  border-bottom: 2px solid #a8a8a8;
  border-radius: 0px;
  background-color: #edf4f6 !important;
  margin-bottom: 15px;
}
.modernForm textarea:focus,
.modernForm [contenteditable='true']:focus {
  outline: none;
}
.modernForm select {
  width: 100%;
  border: none;
  border-left: 1px solid white;
  border-bottom: 2px solid #a8a8a8;
  border-radius: 0px;
  background-color: #edf4f6 !important;
  margin-bottom: 15px;
}
.modernForm .buttons {
  text-align: center;
}
.modernForm .buttons .btn {
  width: 80px;
}
.noPadding {
  padding: 0px;
}
.form > div {
  margin-bottom: 10px;
}
.form label {
  font-weight: bold;
  display: block;
}
.form label:after {
  content: ": ";
}
.form label.mandatory {
  font-weight: bold;
}
.form label.mandatory:after {
  content: " * : ";
  white-space: nowrap;
}
.form input[type="text"],
.form input[type="password"] {
  width: 100%;
  display: block;
  margin-bottom: 5px;
}
.form textarea {
  margin-top: 5px;
  resize: none;
  width: 100%;
  height: 150px;
}
.form .buttons {
  text-align: center;
}
.form .buttons .btn {
  width: 80px;
}
.mandatoryExplain {
  font-size: 14px;
  color: #808080;
}
@media (min-width: 620px) {
  .form label {
    width: 180px;
    display: inline-block;
  }
  .form input[type="text"],
  .form input[type="password"],
  .form textarea {
    display: inline-block;
    width: calc(100% - 185px);
    vertical-align: top;
  }
}
input.check {
  width: 1em;
  font-size: inherit;
  margin: 0;
  transform: translateX(-99999px);
}
input.check + label {
  cursor: pointer;
}
input.check + label:before {
  content: " ";
  font-family: sans-serif;
  display: inline-block;
  font-size: 12px;
  vertical-align: middle;
  font-weight: 900;
  margin-left: -20px;
  margin-right: 10px;
  width: 17px;
  height: 17px;
  border: 2px solid black;
  border-radius: 3px;
  text-align: center;
}
input:checked.check + label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f00c";
}
input[type=checkbox].switch {
  width: 1em;
  font-size: inherit;
  margin: 0;
  transform: translateX(-99999px);
}
input[type=checkbox].switch + label {
  font-weight: normal;
  border: solid 1px #d0d0d0;
  background-color: white;
  width: 70px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 6px;
  line-height: 30px;
  margin-bottom: 5px;
  cursor: pointer;
  margin-left: -1em;
}
input[type=checkbox].switch + label:before {
  position: absolute;
  content: " ";
  display: block;
  width: 23px;
  height: 23px;
  background-color: #d97272;
  border-radius: 23px;
  margin-top: 3px;
  margin-left: 3px;
  transition: margin-left 0.5s, background-color 0.5s;
}
input[type=checkbox].switch + label:after {
  position: absolute;
  content: var(--label_off);
  display: block;
  width: 70px;
  height: 30px;
  text-align: right;
  color: #d0d0d0;
  margin-left: -5px;
}
input[type=checkbox].switch + label:hover {
  border: solid 1px #7a7a7a;
}
/*checked*/

input[type=checkbox]:checked.switch + label:before {
  position: absolute;
  content: " ";
  display: block;
  width: 23px;
  height: 23px;
  background-color: #62b464;
  border-radius: 23px;
  margin-top: 3px;
  margin-left: 43px;
  transition: margin-left 0.5s, background-color 0.5s;
}
input[type=checkbox]:checked.switch + label:after {
  position: absolute;
  content: var(--label_on);
  display: block;
  width: 70px;
  height: 30px;
  text-align: left;
  color: #d0d0d0;
  margin-left: 5px;
}
.error {
  border: solid 1px #d97272;
  padding: 5px;
  background-color: #fec4c4;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 15px;
}
.info {
  border: solid 1px #72aad9;
  padding: 5px;
  background-color: #c4f2fe;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 15px;
}
.warning {
  border: solid 1px #efd869;
  padding: 5px;
  background-color: #ffefa4;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 15px;
}
#actionMessages {
  position: fixed;
  bottom: 5px;
  left: 10px;
}
#actionMessages div {
  margin: 5px;
  padding: 5px;
  background-color: #72aad9;
  border: solid 1px #2d6a9d;
  min-width: 200px;
  font-size: 20px;
  font-weight: bold;
}
#actionMessages div i {
  font-size: 40px;
  vertical-align: middle;
  margin-right: 10px;
}
#popup {
  display: none;
  position: fixed;
  background: black;
  color: white;
  padding: 10px;
  top: 100px;
  left: 100px;
  z-index: 900000;
  --pointer-left-offset: 0px;
  --pointer-top-offset: 0px;
  outline: solid 1px #808080;
  border-radius: 3px;
}
#popup.top:before {
  display: block;
  content: "";
  position: fixed;
  z-index: 900000;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 25px solid black;
  margin-top: 25px;
  margin-left: calc(var(--pointer-left-offset) - 5px);
}
#popup.right:before {
  display: block;
  content: "";
  position: fixed;
  z-index: 900000;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 25px solid black;
  margin-left: -30px;
}
#popup.left:before {
  display: block;
  content: "";
  position: fixed;
  z-index: 900000;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 25px solid black;
  margin-left: 80px;
}
#popup.bottom:before {
  display: block;
  content: "";
  position: fixed;
  z-index: 900000;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 25px solid black;
  margin-top: -25px;
  margin-left: calc(var(--pointer-left-offset) - 5px);
}
.agreementContent {
  display: block;
  border: solid 1px #cedde4;
  padding: 5px;
  border-radius: 5px;
  overflow-y: scroll;
  height: 300px;
  margin-bottom: 10px;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
  text-align: justify;
}
.galleryPreview div {
  width: 200px;
  height: 200px;
  display: inline-block;
}
.galleryPreview .galleryCog {
  background-color: #41687c;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  border-radius: 25px;
  color: white;
  position: absolute;
  border: solid 1px black;
  margin-left: 5px;
  margin-top: 5px;
}
.galleryPreview .galleryCog:hover {
  background-color: #799aaa;
}
.galleryPreview .galleryOptionUnder {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: auto;
  height: auto;
  background-color: transparent;
  display: none;
}
.galleryPreview .galleryOptions {
  background-color: #53849d;
  padding: 10px;
  border-radius: 5px;
  border: solid 1px #41687c;
  position: absolute;
  width: auto;
  height: auto;
  margin-top: 5px;
  margin-left: 5px;
  color: #799aaa;
  font-size: 12px;
  display: none;
}
.galleryPreview .galleryOptions a {
  color: white;
  display: block;
  cursor: pointer;
  padding: 5px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 5px;
}
.galleryPreview .galleryOptions a i {
  width: 20px;
  display: inline-block;
}
.galleryPreview .galleryOptions a.current {
  color: #1e3039;
}
.galleryPreview .galleryOptions a:hover {
  background-color: #799aaa;
}
.files-field {
  display: none;
}
.files-label {
  width: 100%;
  display: block;
  height: 100px;
  text-align: center;
  line-height: 100px;
  border: dotted 1px #cedde4;
  margin: 3px;
  border-radius: 3px;
  cursor: pointer;
  color: black !important;
}
.files-label:hover {
  background-color: #d7e1e5;
}
.uploading {
  background-color: antiquewhite;
}
.blockButton {
  display: inline-block;
  color: black;
  cursor: pointer;
}
#editPostForm label span {
  display: inline-block;
  min-width: 100px;
}
.previewImages {
  max-height: var(--gallery_tile_size);
  overflow: hidden;
}
.previewImages .galleryItem {
  width: var(--gallery_tile_size);
  height: var(--gallery_tile_size);
  box-sizing: border-box;
  overflow: hidden;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: top;
  background-size: cover;
  margin: 0px;
}
.gallery .galleryItem {
  width: var(--gallery_tile_size);
  height: var(--gallery_tile_size);
  box-sizing: border-box;
  overflow: hidden;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: top;
  background-size: cover;
  margin: 0px;
  cursor: pointer;
}
.gallery.sliderGallery {
  margin-left: auto;
  margin-right: auto;
  height: var(--gallery_slider_size);
  width: var(--gallery_slider_size);
  overflow: hidden;
  white-space: nowrap;
}
.gallery.sliderGallery .galleryItem {
  height: var(--gallery_slider_size);
  width: var(--gallery_slider_size);
  max-width: var(--gallery_slider_size);
  object-fit: fill;
  display: inline-block;
}
.gallery.largeGallery {
  margin-left: auto;
  margin-right: auto;
  width: var(--gallery_slider_size);
}
.gallery.largeGallery .galleryItem {
  height: var(--gallery_slider_size);
  width: var(--gallery_slider_size);
  max-width: var(--gallery_slider_size);
  object-fit: fill;
  display: inline-block;
}
.gallery.largeGallery .galleryItem + .galleryItem {
  margin-top: 10px;
}
.gallery.tilesGallery .galleryItem {
  margin-bottom: 5px;
}
#hideImage {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  vertical-align: middle;
  line-height: 100vh;
  height: 100%;
  cursor: zoom-out;
}
#hideImage #fullImage {
  cursor: default;
  text-align: center;
}
#hideImage #fullImage img {
  max-height: 100%;
  max-width: 100%;
  margin: auto;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
}
#hideImage #fullImage div {
  color: black;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 30px;
  padding: 10px;
  position: absolute;
  line-height: 40px;
  margin-top: 50vh;
  display: block;
  cursor: pointer;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 5px;
  width: 80px;
  transition: all 0.3s;
}
#hideImage #fullImage div:hover {
  background-color: white;
  transition: all 0.3s;
}
#hideImage #fullImage #next {
  right: 0px;
}
#hideImage #fullImage #close {
  right: 0px;
  top: 0px;
  margin-top: 65px;
  width: 40px;
  height: 40px;
  padding: 0px;
  line-height: 43px;
  border-radius: 40px;
}
.backToList {
  display: block;
  margin-top: 20px;
  color: black;
  text-decoration: none;
  font-size: 20px;
}
.postButton {
  background-color: #c7d9dc;
  color: black;
  display: inline-block;
  padding: 3px 10px 3px 10px;
  margin: 2px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 90px;
  text-align: center;
  outline: none;
  cursor: pointer;
  border: 0px;
  font-size: 16px;
  width: 30px;
  min-width: auto;
  padding: 3px;
}
.postButton:hover {
  background-color: #87a8ad;
}
.postButton i {
  float: left;
  margin-left: 5px;
  margin-right: 15px;
}
.postButton i {
  float: inherit;
  margin: 0px;
}
.postButton.activeButton {
  background-color: #2f4c5b;
  color: white;
}
.autoHide {
  display: none !important;
}
.postButtonLeft {
  color: black;
  background-color: #c7d9dc;
  display: inline-block;
  padding: 3px;
  margin: 2px;
  margin-right: 0px;
  border-radius: 8px 0px 0px 8px;
  text-decoration: none;
  text-align: center;
  width: 60px;
}
.postButtonLeft:hover {
  background-color: #87a8ad;
}
.postButtonRight {
  color: black;
  background-color: #c7d9dc;
  display: inline-block;
  padding: 3px;
  margin: 2px;
  margin-left: 0px;
  border-radius: 0px 8px 8px 0px;
  text-decoration: none;
  text-align: center;
  width: 40px;
  border-left: solid 1px #87a8ad;
}
.postButtonRight:hover {
  background-color: #87a8ad;
}
#postSearch {
  position: fixed;
  top: 55px;
  left: 0px;
  right: 0px;
  background: white;
  padding: 5px 18px 5px;
}
#postSearch input {
  width: calc(100% - 137px);
  border: 1px solid #cedde4;
}
#postSearch a {
  background-color: #c7d9dc;
  color: black;
  display: inline-block;
  padding: 3px;
  margin: 2px;
  margin-right: 0px;
  border-radius: 3px;
  text-decoration: none;
  width: 130px;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
}
#postSearch a:hover {
  background-color: #87a8ad;
}
#postSearch a i {
  float: left;
  margin-left: 5px;
  line-height: 30px;
}
.userProfile {
  border: solid 1px #cedde4;
  border-radius: 3px;
  padding: 5px;
  margin-top: 20px;
}
.userProfile .profilePicture {
  border: solid 1px #0a3765;
  background-color: #e5a0e1;
  width: 145px;
  height: 145px;
  text-align: center;
  line-height: 145px;
  font-size: 90px;
  border-radius: 145px;
  margin-top: 5px;
  display: inline-block;
  transition: background-color 0.3s;
  overflow: hidden;
  white-space: nowrap;
  padding: 0px;
  margin-left: calc(50% - 72px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.userProfile .name {
  text-align: center;
  color: #808080;
  font-size: 20px;
}
.postBlock {
  border: solid 1px #cedde4;
  border-radius: 3px 3px 0px 0px;
  padding: 5px;
  margin-top: 20px;
}
.postBlock + .postBlock {
  border-top: none;
  margin-top: 0px;
  border-radius: 0px;
}
.postBlock .postFull a {
  font-weight: bold;
  text-decoration: none;
  color: blue;
  cursor: pointer;
}
.postBlock > a {
  margin-top: 10px;
  display: inline-block;
}
.postBlock h1,
.postBlock h2,
.postBlock h3,
.postBlock h4 {
  margin: 0px;
  font-size: 20px;
  font-weight: bold;
}
.postBlock .postHeader {
  color: #688387;
  font-size: 12px;
}
.postBlock .miniProfile {
  display: inline-block;
  border: solid 1px #0a3765;
  background-color: #e5a0e1;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 25px;
  font-size: 10px;
  vertical-align: middle;
  border-radius: 30px;
  margin-top: 5px;
  overflow: hidden;
  white-space: nowrap;
  padding: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 5px;
}
.postBlock .gray {
  color: #bbbbbb;
}
.postBlock:hover {
  background: #e6ecef;
}
.postBlock:hover .postButton {
  display: inline-block !important;
}
.postBlock .report {
  border: solid 1px #ddb700;
  margin: 3px;
  padding: 3px;
  border-radius: 2px;
  background-color: #f5ecc1;
}
.postBlock .report a {
  color: black;
  text-decoration: none;
}
.postBlock .report label {
  font-size: 12px;
  color: #808080;
  width: 100px;
  display: inline-block;
}
.postBlock code {
  font-family: monospace;
  background-color: #e8e8e8;
  padding: 3px;
  border: solid 1px #bfbfbf;
  border-radius: 2px;
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
}
.postBlock code.inline {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
}
.postPreview {
  max-height: 300px;
  overflow: hidden;
}
.postPreview a {
  color: black;
  cursor: pointer;
  text-decoration: none;
}
.postPreview a.visibleInAbstract {
  color: blue;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}
.showMore a {
  color: #87a8ad;
  cursor: pointer;
  text-decoration: none;
  font-size: 12px;
  display: block;
  padding-top: 10px;
}
.postRepliesTitle {
  font-size: 20px;
  margin-top: 10px;
}
.postRepliesTitle ~ .postBlock {
  margin-top: 0px;
}
.postFeed .pinnedFeed .postBlock {
  border: none;
  border-radius: 16px;
  padding-left: 10px;
  margin: 0px;
  padding: 0px;
}
.postFeed .pinnedFeed .postBlock .postContent,
.postFeed .pinnedFeed .postBlock .postHeader,
.postFeed .pinnedFeed .postBlock .showMore,
.postFeed .pinnedFeed .postBlock .previewImages,
.postFeed .pinnedFeed .postBlock .postButton {
  display: none;
}
.postFeed .pinnedFeed .postBlock h1 {
  font-size: 14px;
  font-weight: bold;
}
.postFeed .pinnedFeed .postBlock h1:before {
  content: "\0f0da";
  font-family: "Font Awesome 6 Free";
  margin-right: 16px;
  font-size: 12px;
}
.postFeed .pinnedFeed .postBlock:first-child {
  margin-top: 20px;
}
.postFeed .pinnedFeed .title {
  margin-top: 20px;
}
.postFeed .pinnedFeed > a {
  color: black;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  border-radius: 20px;
  vertical-align: bottom;
}
.postFeed .pinnedFeed > a:first-child {
  margin-top: 10px;
}
.postFeed .pinnedFeed > a:before {
  font-size: 6px;
  content: "\0f111";
  font-family: "Font Awesome 6 Free";
  margin-right: 15px;
  vertical-align: baseline;
}
.postFeed .pinnedFeed > a.newPosts:before {
  content: "\0f192";
  color: red;
}
.postFeed .pinnedFeed > a:hover {
  background-color: #e6ecef;
}
.postFeed .pinnedFeed > a span {
  background-color: #ffdb99;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 16px;
  margin-top: -3px;
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
  left: 150px;
  position: absolute;
}
.postFeed .newFeed {
  width: 100%;
}
#underPost {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: white;
  display: none;
}
#postDisplay {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: auto;
  display: none;
}
#postDisplay .mainContainer {
  padding-top: 0px;
}
@media (min-width: 690px) {
  #postSearch {
    padding: 5px 58px 5px;
  }
  .postFeed {
    display: flex;
  }
  .postFeed .pinnedFeed {
    width: 40%;
    max-width: 300px;
    min-width: 180px;
    margin-right: 10px;
    order: 1;
  }
  .postFeed .pinnedFeed .postBlock h1 {
    font-size: 20px;
  }
  .postFeed .pinnedFeed .postBlock h1:before {
    font-size: 20px;
    content: "\0f0da";
    font-family: "Font Awesome 6 Free";
    margin-right: 20px;
  }
  .postFeed .pinnedFeed .postBlock:first-child {
    margin-top: 20px;
  }
  .postFeed .pinnedFeed > a {
    font-size: 16px;
  }
  .postFeed .pinnedFeed > a:before {
    font-size: 10px;
  }
  .postFeed .pinnedFeed > a span {
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 18px;
    margin-top: -5px;
    font-size: 12px;
    left: 220px;
  }
  .postFeed .newFeed {
    width: 100%;
    order: 2;
  }
}


#popup {
  display: none;
  position: fixed;
  background: black;
  color: white;
  padding: 10px;
  top: 100px;
  left: 100px;
  z-index: 900000;
  --pointer-left-offset: 0px;
  --pointer-top-offset: 0px;
  outline: solid 1px #808080;
  border-radius: 3px;
}
#popup.top:before {
  display: block;
  content: "";
  position: fixed;
  z-index: 900000;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 25px solid black;
  margin-top: 25px;
  margin-left: calc(var(--pointer-left-offset) - 5px);
}
#popup.right:before {
  display: block;
  content: "";
  position: fixed;
  z-index: 900000;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 25px solid black;
  margin-left: -30px;
}
#popup.left:before {
  display: block;
  content: "";
  position: fixed;
  z-index: 900000;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 25px solid black;
  margin-left: 80px;
}
#popup.bottom:before {
  display: block;
  content: "";
  position: fixed;
  z-index: 900000;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 25px solid black;
  margin-top: -25px;
  margin-left: calc(var(--pointer-left-offset) - 5px);
}



