/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *


 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
strong, b {
  font-weight: bold;
}
em, i {
  font-style: italic;
}
a img {
  border: none;
}
input {
  -webkit-border-radius: 0 !important;
     -moz-border-radius: 0 !important;
          border-radius: 0 !important;
}
/* END RESET*/
/* BUTTON STYLES */

/* Page navigation */
.form-navigation-bar {
  /* Box Model */
  margin: 0 0 21px -8px;
}

/* Section navigation */
.form-entry-navigation {
  /* Positioning and Layout */
  display: flex;
  flex-direction: column;

  /* Box Model */
  width: 108px;

  /* Typography */
  line-height: 20px;
}

.button-margin {
  /* Box Model */
  margin: 2px 0 2px 8px;
}

/* Navigation button */
.navigation-button {
  /* Positioning and Layout */
  display: inline-block;

  /* Box Model */
  box-sizing: border-box;

  /* Typography */
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.form-navigation-bar .navigation-button {
  /* Box Model */
  height: 27px;
  padding: 0 8px;
}

.form-entry-navigation .navigation-button {
  /* Box Model */
  height: 20px;
  width: 100px;
  padding: 0 8px;
}

/* Form button */
.form-button {
  /* Positioning and Layout */
  display: inline-block;

  /* Box Model */
  box-sizing: border-box;
  width: 100px;
  height: 22px;

  /* Typography */
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.form-confirmation-button {
  /* Positioning and Layout */
  display: inline-block;

  /* Box Model */
  box-sizing: border-box;
  height: 27px;

  /* Typography */
  font-size: 12px;
  text-align: center;
}

/* Grey button */
.grey-button {
  /* Box Model */
  border: 1px solid #aaa;

  /* Typography */
  color: #aaa;
}

.grey-button:hover {
  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: #aaa;
}

/* Green button */
.green-button {
  /* Box Model */
  box-sizing: border-box;
  border: 1px solid lime;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 12px;
  text-align: center;
  color: lime;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.green-button:hover {
  /* Typography */
  color: #222;
  background-color: lime;
}

/* Red button */
.red-button {
  /* Box Model */
  box-sizing: border-box;
  border: 1px solid red;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 12px;
  text-align: center;
  color: red;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.red-button:hover {
  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: red;
}

/* Wide button */
.form-title-button {
  /* Box Model */
  margin: 0 0 25px 0;
}

.form-end-button {
  /* Box Model */
  margin: 0.5em 0 0 0;
}

.form-button-wide {
  /* Positioning and Layout */
  display: inline-block;

  /* Box Model */
  box-sizing: border-box;
  width: 100%;
  height: 25px;
  border: 1px solid lime;

  /* Typography */
  font-size: 12px;
  font-weight: 400;
  color: lime;
  text-align: center;
  text-decoration: none;
}

.form-button-wide:hover {
  /* Visual Appearance */
  background-color: lime;

  /* Typography */
  color: #222;
}

/* Select styles */
.select-style {
  /* Positioning and Layout */
  overflow: hidden;

  /* Box Model */
  border: 1px solid #aaa;
  border-radius: 0;
  padding: 8px;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  color: #aaa;

  /* Visual Appearance */
  background-color: #222;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.select-style:hover {
  /* Typography */
  color: blue;

  /* Visual Appearance */
  border: 1px solid blue;
}

.select-style select {
  /* Box Model */
  padding: 5px 4px;
  border: none;

  /* Visual Appearance */
  box-shadow: none;
  background-image: none;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.select-style select:focus {
  /* Visual Appearance */
  outline: none;
}

/* Checkbox styles */
.checkbox-section-wrapper {
  /* Positioning and Layout */
  overflow: hidden;
}

.checkbox-wrapper {
  /* Positioning and Layout */
  display: box;
  float: left;

  /* Box Model */
  margin: 1em 1em 1.75em 0;

  /* Miscellaneous */
  overflow: hidden;
}

.checkbox-field {
  /* Positioning and Layout */
  float: left;
}

.checkbox {
  /* Box Model */
  width: 3em;
  height: 3em;
  margin: 0;
  box-sizing: border-box;

  /* Visual Appearance */
  background-color: #aaa;
  border: 1px solid #aaa;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.checkbox:checked {
  /* Box Model */
  border: 1px solid #aaa;

  /* Visual Appearance */
  background-color: #111;
}

.checkbox-title {
  /* Positioning and Layout */
  float: left;
  box-sizing: border-box;

  /* Box Model */
  padding: 4px 0 4px 8px;
  margin: 0 0.5em 0 0;
}

.checkbox-list-wrapper {
  /* Positioning and Layout */
  display: flex;
  flex-direction: column;
}

.checkbox-list-entry-wrapper {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  margin: 8px 1em 8px 0;
  overflow: hidden;
}

.checkbox-country {
  /* Box Model */
  width: 2em;
  height: 2em;
  margin: 0;
  border: 1px solid #aaa;

  /* Visual Appearance */
  background-color: #aaa;

  /* Miscellaneous */
  -webkit-appearance: none;
  box-sizing: border-box;
}

.checkbox-country:checked {
  /* Box Model */
  border: 1px solid #aaa;

  /* Visual Appearance */
  background-color: #111;
}

.select-field-style {
  /* Box Model */
  margin: 1em 0 1.75em 0;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 0;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  color: #aaa;

  /* Visual Appearance */
  background-color: #222;

  /* Miscellaneous */
  overflow: hidden;
  -webkit-appearance: none;
}

.select-field-style select {
  /* Box Model */
  border: none;

  /* Typography */
  color: blue;

  /* Visual Appearance */
  /*background: transparent;*/
  background-image: none;
  box-shadow: none;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.form-datedata {
  /* Positioning and Layout */
  display: flex;
  flex-direction: row;

  /* Typography */
  /*text-align: center;*/
}

.select-datefield-style {
  /* Box Model */
  margin: 1em 5px 1.75em 0;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 0;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  color: #aaa;

  /* Visual Appearance */
  background-color: #222;

  /* Miscellaneous */
  overflow: hidden;
  -webkit-appearance: none;
}

.select-datefield-style select {
  /* Box Model */
  border: none;

  /* Typography */
  color: blue;

  /* Visual Appearance */
  /*background: transparent;*/
  background-image: none;
  box-shadow: none;

  /* Miscellaneous */
  -webkit-appearance: none;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
}

@media (max-width: 500px) {
}
/* FORM GLOBAL STYLES */
.admin-form-wrapper {
  /* Positioning and Layout */
  flex: 0 0 79vw;

  /* Box Model */
  margin: 0 2vw 0 1vw;
}

.admin-form-container {
  /* Positioning and Layout */
  display: flex;
  flex-direction: row;

  /* Box Model */
  padding: 0 0 2em 0;
}

.content-col {
  /* Positioning and Layout */
  flex: 1 62vw;

  /* Box Model */
  padding: 0 1vw 0 0;
  box-sizing: border-box;
}

.details-col {
  /* Positioning and Layout */
  flex: 1 0 14vw;

  /* Box Model */
  margin: -50px -2vw 0 0;
  padding: 50px 2vw 0 1vw;

  /* Visual Appearance */
  background-color: #222;
}

.admin-form-title {
  /* Positioning and Layout */
  display: block;

  /* Box Model */
  height: 50px;
  margin: 15px 0 15px 0;
  padding: 0;

  /* Typography */
  font-size: 2em;
  font-weight: bold;
  line-height: 50px;

  /* Miscellaneous */
  white-space: nowrap; /* Prevent text wrapping */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Cut off the text and add an ellipsis (...) */
}

/* FORM ENTRY STYLES */
.form-entrylist-container {
  /* Box Model */
  margin: 0 0 32px 0;
  border-bottom: 1px solid #aaa;
}

.form-navigation-wrapper {
  /* Positioning and Layout */
  display: flex;
  flex-direction: row;

  /* Box Model */
  margin-top: -2px;
  /*padding: 4px 0 4px 0;*/
}

.form-navigation-wrapper a {
  /* Typography */
  text-decoration: none;
}

.form-section {
  /* Positioning and Layout */
  display: flex;
  flex-direction: row;

  /* Box Model */
  /*margin-top: -4px;*/
  padding: 4px 6px 4px 6px;
}

.form-section a {
  /* Typography */
  text-decoration: none;
}

.form-section-entryrow {
  /* Positioning and Layout */
  display: flex;
  flex: 1 1;
  flex-direction: row;

  /* Box Model */
  margin: 0 0 0 10px;
  padding: 6px 0 0 0;

  /* Typography */
  font-size: 1em;
  line-height: 1.5em;

  /* Miscellaneous */
  overflow: hidden;
}

.form-section-entryrow h2 {
  /* Box Model */
  -webkit-margin-before: 0.83em;
  -webkit-margin-after: 0.83em;
}

.form-section-entryrow p {
  /* Typography */
  font-size: 1em;
  font-weight: lighter;
  line-height: 1.5em;
}

.form-entry-links a {
  /* Typography */
  font-size: 1em;
  font-weight: lighter;
  line-height: 1.5em;

  /* Typography */
  color: #aaa;
}

.entry-title-section {
  /* Positioning and Layout */
  flex: 0 0 100px;

  /* Box Model */
  /*margin: 0 5vw 0 0;*/
  padding-right: 1em;

  /* Typography */
  line-height: 1em;
}

.entry-list-section {
  /* Positioning and Layout */
  flex: 0 1 calc(62vw-400px);

  /* Box Model */
  margin: 0 5vw 0 0;

  /* Typography */
  line-height: 1em;
}

.section-colour {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  width: 5px;
  height: 54px;
  margin-right: 1vw;
}

.category-colour {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  width: 5px;
  height: 54px;
  margin-right: 1vw;
}

.category-colour-outline {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  width: 7px;
  height: 72px;
  margin-right: 1vw;
  box-sizing: border-box;
}

.form-data {
  /* Positioning and Layout */
  display: flex;
  flex-direction: column;

  /* Box Model */
  padding: 0px 0 24px 0;
}

.form-label {
  /* Box Model */
  margin: 0 0 0.5em 0;

  /* Typography */
  font-size: 1.5em;
}

.form-field {
  /* Box Model */
  width: 61vw;
  /*margin: 1em 0 1.75em 0;*/
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 0;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  color: #aaa;

  /* Visual Appearance */
  background-color: #111;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.form-datafield {
  /* Box Model */
  width: 62vw;
  margin: 0 0 0 0;
  padding: 2px 8px 2px 8px;
  border: 1px dotted;
  box-sizing: border-box;
}

.form-postfield {
  /* Box Model */
  width: 62vw;
  margin: 0 0 0 0;
  padding: 2px 8px 2px 8px;
  border: 1px dotted;
  box-sizing: border-box;

  /* Typography */
  color: black;

  /* Visual Appearance */
  background-color: white;
}

.form-listing-wrapper {
  /* Visual Appearance */
  overflow: hidden;
}

.form-entry {
  /* Positioning and Layout */
  display: block;
  float: left;

  /* Box Model */
  margin: 1em 0.5em 1.1em 0;
  padding: 8px;
  border: 1px dotted;
  box-sizing: border-box;
}

.form-seal {
  /* Box Model */
  width: 16vw;

  /* Visual Appearance */
  background-color: #fff;
}

.form-seal-pad {
  /* Positioning and Layout */
  display: none;
}

.form-seal-mobile {
  /* Positioning and Layout */
  display: none;
}

/* FORM KEYWORD LIST STYLES */
.form-keywordlist-container {
  /* Positioning and Layout */
  display: block;

  /* Box Model */
  /*margin: -0.3vw -2vw 0 -0.3vw;*/
  box-sizing: border-box;

  /* Miscellaneous */
  overflow: hidden;
}

.form-keywordlist-box {
  /* Positioning and Layout */
  display: block;
  display: inline-block;
}

.form-keywordlist-box-input {
  /* Box Model */
  height: 27px;
  margin: 0 5px 10px 0;
  padding: 0 8px 0 8px;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Typography */
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  /*color: #000;*/
  color: #aaa;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-keywordlist-box-input:hover {
  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: #aaa;
}

/* FORM WORDBOX LIST STYLES */
.form-wordboxlist-container {
  display: block;

  /* Box Model */
  margin: -0.25vw -2vw 25px -0.25vw;
  box-sizing: border-box;

  /* Miscellaneous */
  overflow: hidden;
}

.form-wordbox {
  /* Positioning and Layout */
  float: left;
}

.form-wordbox-entry {
  /* Box Model */
  height: 35px;
  margin: 0.25vw;
  padding: 4px 12px;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Typography */
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  color: #aaa;
}

.form-wordbox-button {
  /* Box Model */
  height: 35px;
  /* padding: 0 8px; */
  margin: 0.25vw;
  padding: 4px 12px;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Typography */
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  color: #aaa;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-wordbox-button:hover {
  /* Typography */
  text-decoration: none;
  color: #222;

  /* Visual Appearance */
  background-color: #aaa;
}

.form-entryfield-title {
  /* Box Model */
  width: 5em;
}

.form-section-entryfield {
  /* Positioning and Layout */
  flex: 1 1;

  /* Box Model */
  padding: 0 0 0.5em 0.5em;
  margin: 0 0 0 0.5em;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* FORM STYLES */
  .admin-form-wrapper {
    /* Positioning and Layout */
    flex: 0 0 73vw;

    /* Box Model */
    /*width: 84vw;*/
    margin: 0px 1vw 0 1vw;
  }

  .admin-form-container {
    /* Positioning and Layout */
    display: flex;
    flex-direction: column;

    /* Box Model */
    padding: 0 0 2em 0;
  }

  .content-col {
    /* Positioning and Layout */
    flex: 0 73vw;

    /* Box Model */
    margin: 0 0 2em 0;
    padding: 0 0 0 0;
    box-sizing: border-box;
  }

  .details-col {
    /* Positioning and Layout */
    display: none;
  }

  .form-data {
    /* Positioning and Layout */
    display: flex;
    flex-direction: column;
  }
  .form-field {
    /* Box Model */
    width: 73vw;
    margin: 0;
    box-sizing: border-box;
  }

  .form-datafield {
    /* Box Model */
    width: 73vw;
  }
  .select-style {
    /* Box Model */
    margin: 0;
  }
}

@media (max-width: 500px) {
  /* FORM GLOBAL STYLES */
  .admin-form-wrapper {
    /* Positioning and Layout */
    flex: 0 0 98vw;

    /* Box Model */
    /*width: 84vw;*/
    margin: 73px 1vw 0 1vw;
  }

  .form-navigation-wrapper {
    /* Positioning and Layout */
    flex-wrap: wrap;
  }

  /* FORM ENTRY STYLES */
  .entry-title-section {
    /* Positioning and Layout */
    flex: 0 0 80px;
  }

  /* FORM STYLES */
  .form-field {
    /* Box Model */
    width: 98vw;
    box-sizing: border-box;
  }

  .form-datafield {
    /* Box Model */
    width: 98vw;
  }
}
/* GLOBAL STYLES */

.image-container {
  /* Positioning and Layout */
  position: relative;

  /* Typography */
  text-align: center;
  color: white;
}

.tile-canvas {
  position: relative;
  text-align: center;
  color: white;
}

.hero-centered {
  /* Positioning and Layout */
  position: absolute;
  top: 50%;
  left: 50%;

  /* Miscellaneous */
  transform: translate(-50%, -50%);
}

.admin-content-wrapper h2 {
  /* Typography */
  text-transform: none;

  /* Visual Appearance */
  background-color: #222;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
}

@media (max-width: 500px) {
}
/* GLOBAL IMAGE STYLES */
/* used in entry show pages */
.form-image {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  width: 14vw;
  margin: 0 1vw 1vw 0;
}

/* used in entry edit pages */
.form-edit-hero {
  /* Box Model */
  width: 14vw;
}

/* FORM IMAGE LIST STYLES */
.form-imagelist-container {
  /* Positioning and Layout */
  display: block;
  box-sizing: border-box;

  /* Box Model */
  margin: -0.3vw -0.3vw 1em -0.3vw;
  overflow: hidden;
}

.form-imagelist-box {
  /* Positioning and Layout */
  /*position: absolute;*/
  float: left;

  /* Box Model */
  margin: 0.3vw;
  box-sizing: border-box;
}

/* Destyling button_to */
.form-imagelist-button {
  /* Box Model */
  padding: 0;
  border: none;

  /* Typography */
  font: inherit;
  color: inherit;

  /* Visual Appearance */
  background: none;

  /* Miscellaneous */
  cursor: pointer;
  outline: inherit;
}

.image-box-background {
  background-color: #DDDDDD;
}

/* used in image indexes */
.thumb-tile {
  /* Positioning and Layout */
  position: relative;
  display: block;

  /* Box Model */
  width: 11.92vw;
  height: 7.95vw;
}
/* used in image indexes */
/* used in image lists select_to, select_from */
.thumb-tile-small {
  /* Positioning and Layout */
  position: relative;
  display: block;

  /* Box Model */
  width: 5.66vw;
  height: 3.773vw;
  /* height: 4.245vw; */
  /*background-color: #FFF;*/
}

/* used in image indexes */
.thumb-tile-square {
  /* Positioning and Layout */
  position: relative;
  display: block;

  /* Box Model */
  height: 11.92vw;
  width: 11.92vw;
}

/* used in image indexes */
.thumb-tile-square-small {
  /*background-color: #FFF;*/
  position: relative;
  display: block;

  /* Box Model */
  height: 5.66vw;
  width: 5.66vw;
}

/* used in logo indexes */
.logo-tile-square {
  /* Positioning and Layout */
  /*position: relative;*/
  /*display: block;*/

  /* Box Model */
  height: 11.6vw;
  width: 11.6vw;
  /* width: 14vw;
  height: 14vw; */

  /* Visual Appearance */
  background-color: #fff;
}

.thumb-tile-title {
  /* Box Model */
  padding: 0.25em;

  /* Typography */
  font-weight: bold;
  font-size: 2em;
  color: #fff;

  /* Visual Appearance */
  background-color: rgba(0, 0, 0, 0.2);
}

.form-imagelist-title {
  /* Box Model */
  padding: 0.25em;

  /* Typography */
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}

.form-image-wrapper {
  padding: 0 0.5em 1em 0;
  line-height: 0;
  overflow: hidden;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* IMAGE STYLES */
  .form-imagelist-container {
    /* Box Model */
    margin: 0 -1vw 1em -1vw;
  }

  .form-imagelist-box {
    /* Box Model */
    margin: 1vw;
  }

  .thumb-tile-square {
    /* Box Model */
    width: 16.75vw;
    height: 16.75vw;
  }

  /* used in image indexes */
  .thumb-tile-square-small {
    /* Box Model */
    height: 7.375vw;
    width: 7.375vw;
  }

  /* used in image lists select_to, select_from */
  .thumb-tile-small {
    /* Positioning and Layout */
    position: relative;
    display: block;

    /* Box Model */
    width: 16.75vw;
    height: 11.17vw;
    /* height: 4.245vw; */
    /*background-color: #FFF;*/
  }

  .logo-tile-square {
    /* Box Model */
    width: 16.75vw;
    height: 16.75vw;
  }

  .form-imagelist-title {
    font-size: 2em;
  }

  .form-edit-hero {
    /* Box Model */
    width: 35.5vw;
  }

  .form-image {
    /* Positioning and Layout */
    display: block;

    /* Box Model */
    width: 35.5vw;
  }

  .form-thumb {
    /* Positioning and Layout */
    position: relative;
    display: block;

    /* Box Model */
    width: 16.75vw;
    height: 11.17vw;

    background-color: #fff;
  }
}

@media (max-width: 500px) {
  /* IMAGE STYLES */
  .thumb-tile-square {
    /* Box Model */
    width: 48vw;
    height: 48vw;
  }
  /* used in image indexes */
  .thumb-tile-square-small {
    /* Box Model */
    height: 23vw;
    width: 23vw;
  }
  /* used in image indexes */
  /* used in image lists select_to, select_from */
  .thumb-tile-small {
    /* Box Model */
    width: 48vw;
    height: 31.92vw;
    /*background-color: #FFF;*/
  }

  .logo-tile-square {
    /* Box Model */
    width: 48vw;
    height: 48vw;
  }

  .form-image {
    /* Positioning and Layout */
    display: block;

    /* Box Model */
    width: 98vw;
  }

  .form-edit-hero {
    /* Box Model */
    width: 98vw;
  }

  .form-thumb {
    /* Positioning and Layout */
    display: block;

    /* Box Model */
    width: 48vw;
    height: 32vw;
  }
}
/* INDEX STYLES */
.admin-index-wrapper {
  /* Positioning and Layout */
  flex: 0 0 15vw;

  /* Box Model */
  margin: 49px 1vw 0 2vw;
}

.admin-index-section {
  /* Box Model */
  margin: 0 0 1em 0;
}

.admin-index-section a {
  /* Typography */
  text-decoration: none;
}

.admin-index-title {
  /* Box Model */
  padding-bottom: 6px;
  border-bottom: 1px solid #aaa;

  /* Typography */
  font-weight: bold;
  color: #555;
}

ul.admin-menu li {
  /* Box Model */
  border-bottom: 1px solid;

  /* Typography */
  font-size: 1em;
  line-height: 25px;
  list-style: none;
}

ul.admin-menu li a {
  /* Positioning and Layout */
  display: block;

  /* Box Model */
  padding-left: 10px;

  /* Typography */
  font-weight: 400;
  text-decoration: none;
  color: #aaa;
}

ul.admin-menu li a:hover {
  /* Positioning and Layout */
  display: block;

  /* Box Model */
  padding-left: 10px;

  /* Typography */
  text-decoration: none;
  color: #222;

  /* Visual Appearance */
  background-color: #999;
}

.admin-logout {
  /* Box Model */
  margin: 25px 0 0 0;

  /* Typography */
  /*text-align: center;*/
}

.admin-index-red-button {
  /* Positioning and Layout */
  display: flex;
  align-items: center; /* Vertically center the text */
  justify-content: flex-start; /* Align text to the left */

  /* Box Model */
  width: 100%;
  height: 27px;
  padding: 0 0 0 10px;
  border: 0;
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  box-sizing: border-box;

  /* Typography */
  font-size: 12px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  text-decoration: none;
  color: red;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.admin-index-red-button:hover {
  /* Box Model */
  border: 1px solid red;

  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: red;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* INDEX STYLES */
  .admin-index-wrapper {
    /* Positioning and Layout */
    flex: 0 0 23vw;

    /* Box Model */
    margin: 50px 1vw 0 1vw;
  }
}

@media (max-width: 500px) {
  /* INDEX STYLES */
  .admin-index-wrapper {
    /* Positioning and Layout */
    display: none;
  }

  .admin-index-section {
    /* Positioning and Layout */
    display: flex;
    flex-direction: row;

    /* Box Model */
    margin: 0 0 0 0;
  }

  .admin-index-title {
    /* Box Model */
    width: 49vw;
    padding: 8px 0 0 0;
    border-bottom: 1px solid #000;
    box-sizing: border-box;

    /* Typography */
    color: #000;
  }

  .admin-index-entry {
    /* Box Model */
    width: 31vw;
    margin: 1vw;
    padding: 8px;
    box-sizing: border-box;
  }

  .admin-index-spacer {
    /* Positioning and Layout */
    flex: 1 0 auto;
  }

  .admin-index-section {
    /* Box Model */
    width: 98vw;
    box-sizing: border-box;
  }

  .admin-menu li {
    /* Box Model */
    width: 49vw;
    box-sizing: border-box;

    /* Typography */
    text-align: left;
    color: #000;
  }

  ul.admin-menu li {
  }

  ul.admin-menu li a {
    /* Typography */
    color: #000;
  }

  ul.admin-menu li a:hover {
    /* Positioning and Layout */
    display: block;

    /* Box Model */
    padding-left: 10px;

    /* Typography */
    text-decoration: none;
    color: #fff;

    /* Visual Appearance */
    background-color: #000;
  }

  .admin-logout {
    /* Box Model */
    margin: 25px 0 0 0;
  }

  .admin-index-red-button {
    /* Positioning and Layout */
    display: block;

    /* Box Model */
    width: 98vw;
    padding: 4px 0 4px 0px;
    border-top: 1px solid red;
    border-bottom: 1px solid red;
    box-sizing: border-box;

    /* Typography */
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: red;

    /* Miscellaneous */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }

  .admin-index-red-button:hover {
    /* Box Model */
    border: 1px solid red;

    /* Typography */
    color: white;

    /* Visual Appearance */
    background-color: red;
  }
}
/* ADMIN HEADER STYLES */
.login-header {
  /* Box Model */
  height: 100px;
  box-sizing: border-box;

  /* Typography */
  text-align: center;
}

#adminheader {
  /* Positioning and Layout */
  display: none;
}

/* ADMIN PAGE STYLES */
.admin-content-wrapper {
  /* Positioning and Layout */
  display: flex;

  /* Box Model */
  width: 100vw;
  min-height: 100vh;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  /* Set global font size here */
  font-size: 12px;
  line-height: 25px;
  color: #aaa;

  /* Visual Appearance */
  background-color: #222;
}

/* DETAIL COLUMN STYLES */
.admin-details-container {
  /* Box Model */
  /*height: 50px;*/
  margin: 15px 2vw 15px 1vw;
  padding: 24px 8px 8px 8px;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* HEADER STYLES */
  .admin-content-wrapper {
    /* Positioning and Layout */
    display: flex;
    flex-direction: row;
  }

  /* ADMIN PAGE STYLES */

  /* DETAIL COLUMN STYLES */
  .admin-details-container {
    /* Box Model */
    margin: 0 0 0 0;
    padding: 0;
  }
}

@media (max-width: 500px) {
  /* HEADER STYLES */
  #adminheader {
    /* Positioning and Layout */
    display: block;

    /* Typography */
    font-family: "Open Sans", helvetica, arial, sans;
  }

  .admin-header {
    /* Positioning and Layout */
    position: fixed;
    z-index: 20;

    /* Box Model */
    width: 100vw;
    height: 73px;
    border-bottom: 1px dotted black;
    box-sizing: border-box;

    /* Typography */
    color: #000;

    /* Visual Appearance */
    background-color: rgba(255, 255, 255, 1);
  }

  #menulinks {
    /* Positioning and Layout */
    position: absolute;
    left: 100vw;

    /* Miscellaneous */
    transition: all 0.5s ease-in-out;
  }

  /* ADMIN PAGE STYLES */
  .admin-content-wrapper {
    /* Positioning and Layout */
    display: flex;
    flex-direction: column;
  }
}
/* LOGIN */
.login-header-content {
  /* Box Model */
  box-sizing: border-box;
  height: 100px;
  /*padding: 10px;*/

  /* Typography */
  /*font-family: 'Open Sans', helvetica, arial, sans;*/
  font-size: 50px;
  line-height: 100px;
  text-align: center;

  /* Visual Appearance */
  background-color: rgba(255, 255, 255, 1);
}

.login-header-icon {
  /* Box Model */
  height: 90px;
}

.login-centered {
  /* Positioning and Layout */
  position: absolute;
  top: 400px;
  left: 50%;

  /* Miscellaneous */
  transform: translate(-50%, -50%);
}

.login-form {
  /* Box Model */
  margin: 0 0 1em 0;
}

.login-title {
  /* Box Model */
  margin: 0 0 1em 0;
}

.login-field {
  /* Box Model */
  width: 400px;
  margin: 1em 1vw 1.75em 0;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 0;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  color: #aaa;

  /* Visual Appearance */
  background-color: #111;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.login-button input[type="submit"] {
  /* Box Model */
  /*height: 2em;*/
  margin: 1em 0 0 0;
  padding: 4px 8px;
  border: 1px solid lime;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  /*font-family: 'Times New Roman', Times, serif;*/
  font-size: 1em;
  color: lime;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.login-button input[type="submit"]:hover {
  /* Box Model */
  border: 1px solid lime;

  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: lime;
}

.login-shared-links a {
  /* Typography */
  /*text-decoration: none;*/
  color: #aaa;
}

.notice-success {
  /* Box Model */
  margin-bottom: 1em;

  /* Typography */
  color: lime;
}

.button-list {
  /* Box Model */
  margin: 0.5em 0 0.5em 0;

  /* Miscellaneous */
  overflow: hidden;
}

.button-list-button {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  margin: 0 0.5em 0 0;
}

.admin-form-button {
  /* Box Model */
  height: 27px;
  padding: 0 16px 0 16px;
  box-sizing: border-box;

  /* Typography */
  text-decoration: none;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

a.admin-form-button {
  /* Positioning and Layout */
  display: inline-block;

  /* Box Model */
  /*height: 2em;*/
  padding: 0px 16px 0px 16px;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Typography */
  /*font-size: 1em;*/
  text-align: center;
}

.admin-green-button {
  /* Positioning and Layout */
  display: block;

  /* Box Model */
  height: 27px;
  padding: 4px 16px 4px 16px;
  border: 1px solid lime;

  /* Typography */
  font-family: "Open Sans", "helvetica", "arial", sans-serif;
  font-size: 1em;
  text-align: center;
  color: lime;

  /* Visual Appearance */
  background-color: transparent;
}

.admin-green-button:hover {
  /* Box Model */
  border: 1px solid lime;

  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: lime;
}

/* GLOBAL STYLES */
.user-content-wrapper {
  /* Positioning and Layout */
  display: flex;
  min-height: 100vh;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  line-height: 25px;
  color: #000;

  /* Visual Appearance */
  background-color: #fff;
}

.user-checkbox {
  /* Positioning and Layout */
  display: table-cell;
  vertical-align: middle;

  /* Typography */
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Visual Appearance */
  background-color: #aaa;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.user-checkbox:checked {
  /* Positioning and Layout */
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Visual Appearance */
  background-color: #111;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.user-checkbox-title {
  /* Positioning and Layout */
  vertical-align: middle;
  display: table-cell;

  /* Box Model */
  height: 16px;
  padding-left: 8px;

  /* Typography */
  line-height: 8px;
}

.remember-cb-wrapper {
  /* Positioning and Layout */
  display: table;

  /* Box Model */
  height: 16px;
  box-sizing: border-box;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
}

@media (max-width: 500px) {
  /* LOGIN STYLES */
  .login-centered {
    /* Positioning and Layout */
    position: absolute;
    top: 50%;
    left: 50%;

    /* Miscellaneous */
    transform: translate(-50%, -50%);
  }

  .login-field {
    /* Box Model */
    width: 80vw;
    margin: 1em 0 1.75em 0;
    padding: 8px;
    border: 1px solid #aaa;
    border-radius: 0;

    /* Typography */
    font-family: "Open Sans", helvetica, arial, sans;
    font-size: 1em;
    color: #aaa;

    /* Visual Appearance */
    background-color: #111;

    /* Miscellaneous */
    -webkit-appearance: none;
  }
}
.admin_pagination {
  /*background: white;*/
  cursor: default;
  /* self-clearing method: */
  margin: 25px 0 25px 0;
}
.admin_pagination a,
.admin_pagination span,
.admin_pagination em {
  /*padding: 0.2em 0.5em;*/
  display: block;
  float: left;
  margin-right: 1px;
  width: 25px;
  height: 25px;
  text-align: center;
}
.admin_pagination .disabled {
  display: none;
}
.admin_pagination .current {
  font-style: normal;
  font-weight: bold;
  background: #aaa;
  color: #222;
  border: 1px solid #aaa;
}
.admin_pagination a {
  text-decoration: none;
  color: #aaa;
  border: 1px solid #aaa;
}
.admin_pagination a:hover,
.admin_pagination a:focus {
  color: #222;
  background: #aaa;
  border-color: #aaa;
}
.admin_pagination .page_info {
  background: #2e6ab1;
  color: white;
  /*padding: 0.4em 0.6em;*/
  width: 22em;
  margin-bottom: 0.3em;
  text-align: center;
}
.admin_pagination .page_info b {
  color: #000033;
  background: #6aa6ed;
  padding: 0.1em 0.25em;
}
.admin_pagination:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
* html .admin_pagination {
  height: 1%;
}
*:first-child + html .admin_pagination {
  overflow: hidden;
}
/* ADMIN SIDEMENU STYLES */

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* ADMIN SIDEMENU STYLES */
}

@media (max-width: 500px) {
  /* ADMIN SIDEMENU STYLES */
  .admin-side-menu-wrapper {
    /* Positioning and Layout */
    position: absolute;

    /* Box Model */
    width: 100vw;
    height: 100vh;
    padding: 73px 1vw 100px 1vw;

    /* Miscellaneous */
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .admin-side-menu-wrapper a {
    /* Typography */
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  #admin-side-menu-toggle {
    /* Positioning and Layout */
    display: block;
    float: right;
    position: relative;
    z-index: 30;

    /* Typography */
    font-size: 3em;

    /* Miscellaneous */
    cursor: pointer;
  }

  #admin-side-menu-toggle a {
    /* Positioning and Layout */
    position: relative;
    z-index: 100;

    /* Box Model */
    padding: 12px;

    /* Typography */
    font-size: 1em;

    /* Miscellaneous */
    cursor: pointer;
  }
}
/* COLLECTIONS STYLES */
.search-field-title {
  margin: 0 0 8px 0;
}
.search-field-wrapper {
/*  display: flex;
  flex-direction: row;*/
  margin: 0 0 24px 0;
}
.search-field-hero {
  background: transparent;
  border: 2px solid #FFF;
  border-radius: 0;
  box-sizing: border-box;
  color: #FFF;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1em;
  margin: 1em 0 0 0;
  padding: 8px;
  -webkit-appearance: none;
  width: 100%;
}
.search-field-hero::placeholder {
  color: #000;
}
.search-field-hero-required {
  margin: 12px 12px 0 6px
}
.search-button-hero {
  background-color: transparent;
  border: 2px dotted #FFF;
  box-sizing: border-box;
  color: #FFF;
  font-family: 'Times New Roman', Times, serif;
  font-size: 12px;
  margin: 1em 0 1em 0;
  padding: 7px 7px 7px 7px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.search-button-hero:hover {
  background-color: #FFF;
  border: 1px solid #FFF;
  color: #000;
}
.search-field {
  border: 1px solid #AAA;
  border-radius: 0;
  box-sizing: border-box;
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1em;
  margin: 1em 0 1em 0;
  padding: 8px;
  -webkit-appearance: none;
  width: 100%;
}
.search-field::placeholder {
  color: #AAA;
}
.search-field-required {
  margin: 12px 12px 0 6px
}
.search-button {
  background-color: transparent;
  border: 1px dotted #000;
  box-sizing: border-box;
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 12px;
  margin: 1em 0 1em 0;
  padding: 7px 7px 7px 7px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.search-button:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #FFF;
}
.user-logout {
  /*text-align: center;*/
  margin: 25px 0 0 0;
}
.user-logout a {
  width: 100%;
}
.collection-red-button {
  background-color: transparent;
  border: 1px dotted red;
  box-sizing: border-box;
  color: red;
  font-family: 'Times New Roman', Times, serif;
  font-size: 12px;
  margin: 1em 0 1em 0;
  padding: 7px 7px 7px 7px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.collection-red-button:hover {
  background-color: red;
  border: 1px solid red;
  color: #FFF;
}
.opac-search-wrapper {
  display: flex;
  flex-direction: row;
  position: relative; 
  overflow: hidden;
}
.opac-search-select {
  position: relative;
  float: left;
}
.opac-search-select select {
  /*background-color: #222;*/
  border: 1px dotted #000;
  border-radius: 0;
  /*color: #AAA;*/
  /*direction: rtl;*/
  font-family: 'Times New Roman', Times, serif;
  font-size: 1em;
  margin: 1em 24px 1em 0;
  overflow: hidden;
  padding: 8px 34px 8px 8px;
  -webkit-appearance: none; 
}
.opac-search-select::after {
  content: '< >';
  font: 16px "Consolas", monospace;
  color: #000;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 24px;
  /*Adjust for position however you want*/
  
  top: 24px;
  padding: 0 0 2px 0;
  border-bottom: 1px solid #999;
  /*left line */
  
  position: absolute;
  pointer-events: none;
}

/* RESOURCES STYLES */
.resource-wrapper {
 border: 1px dotted #000;
 margin: 25px 0 25px 0;
}
.resource-header {
  border-bottom: 1px dotted #000;
  font-size: 15px;
  padding: 0px 8px 0px 8px;
}
.resource-content {
  font-size: 15px;
  padding: 0px 8px 0px 8px;
}
.resource-imagefield {
  border-top: none;
  /*box-sizing: border-box;*/
  height: 41vw;
  /*height: 10vw;*/
  padding: 0px;
  width: 100%;
}
.resource-relations {
  border-top: 1px dotted #000;
  font-size: 15px;
  padding: 0px 8px 0px 8px;
}
.resource-footer {
  border-top: 1px dotted #000;
  font-size: 15px;
  padding: 0px 8px 0px 8px;
}




/* MEDIA QUERIES */
@media (max-width: 1000px) {
  .resource-imagefield {
    height: 64vw;
  }
}



@media (max-width: 500px) {
  .opac-search-wrapper {
    flex-direction: column;
  }
  .opac-search-select select {
    width: 100%;
  } 
  .opac-search-select::after {
    right: 0px;
  }
}
/* GLOBAL STYLES */
html {
  padding: 0;
}
body {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "Times New Roman", Times, serif;
  margin: 0;
  min-height: 100vh;
  padding: 0;
}
h1 {
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
}
h2 {
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
}
a {
  color: #000;
}
[onclick] {
  cursor: pointer;
}
#content-wrapper {
  position: absolute;
  right: 0;
  transition: all 0.5s ease-in-out;
  width: 100vw;
}
#login-section {
  box-sizing: border-box;
  position: absolute;
  left: -100vw;
  margin: 64px 2vw;
  transition: all 0.5s ease-in-out;
  width: 96vw;
}
.content-container {
  min-height: 100vh;
}

.desktop {
  display: block;
}
.pad {
  display: none;
}
.mobile {
  display: none;
}

/* HEADER STYLES */
.header {
  background-color: rgba(255, 255, 255, 1);
  border-bottom: 1px dotted black;
  box-sizing: border-box;
  color: #000;
  display: block;
  height: 32px;
  position: fixed;
  width: 100%;
  z-index: 20;
}
.header.active {
  background-color: rgba(255, 255, 255, 1);
  border-bottom: 1px dotted black;
  color: #000;
}
/* *** *** *** transparent header *** *** *** */
/*.header.active {
  background-color: rgba(255, 255, 255, 1);
  border-bottom: 1px solid black;
  color: #000;
}*/
.login-header-content {
  background-color: rgba(255, 255, 255, 1);
  box-sizing: border-box;
  /*font-family: 'Open Sans', helvetica, arial, sans;*/
  font-size: 50px;
  line-height: 100px;
  /*padding: 10px;*/
  text-align: center;
  height: 100px;
}
.side-menu-toggle {
  display: none;
}
#menulinks {
  display: block;
}
#sidemenulinks {
  display: none;
}
#login-section {
  display: none;
}
.header-nav {
  padding: 0.5em 0 0.5em 0;
  position: absolute;
  right: 2vw;
}
.nav-links > li {
  display: inline-block;
  margin-left: 1em;
}
.nav-links > li ~ li {
  /*border-left: 1px solid rgba(255, 255, 255, 1);*/
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  padding-left: 1em;
}
.nav-links.active > li ~ li {
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  padding-left: 1em;
}
.header-nav a,
.drop-trigger {
  color: #000;
}
.header-nav.active a,
.drop-trigger.active {
  color: #000;
}
.nav-links a,
.drop-trigger {
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-contacts {
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: none;
}
#btn-close {
  display: none;
}
#btn-close-collection {
  display: none;
}
.login-menu-toggle {
  display: none;
}
#login-btn-close {
  display: none;
}

/* GLOBAL PAGE STYLES */
.hero-container {
  position: relative;
  text-align: center;
  color: white;
}
.section-hero {
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  /*height: calc(var(--vh, 1vh) * 100);*/
}

/*.entry-hero {
  background-size: cover; 
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
}*/
.hero-title {
  font-size: 6em;
  font-weight: bold;
  line-height: 1;
  /*text-shadow: 0px 0px 2px #000;*/
}
.hero-subtitle {
  font-size: 2em;
  text-align: center;
}
.hero-centered {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.hero-centered-bottom {
  bottom: 3em;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
}
.hero-centered-middle {
  position: absolute;
  transform: translate(50vw, 50vh);
}
.hero-centered-lower {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 70vh);
}
.hero-caption {
  font-size: 1em;
  color: #fff;
  position: absolute;
  bottom: 16px;
  left: 16px;
  text-align: left;
  /*text-shadow: 0px 0px 2px #000;*/
}
.hero-caption span {
  /*  background-color: #DDD;
  padding: 0 5px 0 5px;*/
}
/* *** *** *** hero arrow *** *** *** */
/*.hero-arrow {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 50px solid white;
}*/

/*.hero-arrow {
  position: relative;
  text-align: center;*/
/*padding: 12px;*/
/*margin-bottom: 6px;*/
/*  height: 20px;
  width: 200px;
}
.hero-arrow:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 51%;
  background: white;
  transform: skew(0deg, 15deg);
}
.hero-arrow:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background: white;
  transform: skew(0deg, -15deg);
}*/

.section-container {
  display: block;
  overflow: hidden;
  margin: 2em 1.5vw 2em 1.5vw;
}
.section-wrapper {
  padding: 0 0 4em 0;
  margin: 0 1vw 0 1vw;
}
.section-title {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.5em;
  text-align: right;
  margin: 0 0 0 0;
}
.section-text {
  font-size: 1.5em;
  line-height: 1.5em;
}
.section-shop {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  margin: 0 -1vw 0 -1vw;
  width: 64vw;
}
.shop-link-box {
  float: left;
  box-sizing: border-box;
  margin: 0 1vw 2vw 1vw;
}
.shop-link-box .hover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: 0.5s ease;
}
.shop-link-box:hover .hover {
  opacity: 1;
}
.shop-link-box .normal {
  transition: 0.5s ease;
}
.shop-link-box:hover .normal {
  opacity: 0;
}
.shop-hero-wrapper {
  position: relative;
  display: block;
  height: 14vw;
  width: 14vw;
}
.shop-link-title {
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  /*background-color: rgba(0, 0, 0, 0.2);*/
  padding: 0.25em;
}
.index-link {
  font-weight: bold;
  /*text-decoration: underline;*/
  /*margin: 0 0 1.5em 0;*/
  /*padding: 0 0 0 1em;*/
}
.resources-title {
  font-weight: thin;
  font-style: italic;
  margin: 0 0 1.5em 0;
}
.resource-link {
  text-decoration: underline;
  margin: 0 0 1.5em 0;
}
.section-menu {
  display: flex;
  flex: 1;
  /*overflow: hidden;*/
  margin: 0 0 1em 0;
  width: 100%;
}
.section-menu-mobile {
  display: none;
}
.menu-button {
  border: 1px dotted black;
  flex: 0 0 auto;
  padding: 8px;
}

/* MANIFESTO STYLES */
/*.soarc-text {
  font-size: 3em;
  line-height: 1.2em;
}*/
/*.section-hero span {
  color: white;
  mix-blend-mode: difference;
}*/
.soarc-title {
  font-size: 10.5em;
  /*font-weight: bold;*/
  text-align: center;
}
.soarc-subtitle {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
}

.network-container {
  overflow: hidden;
  margin: 0 -1vw 0 -1vw;
}
.partner-wrapper {
  float: left;
  width: 16vw;
}

.donation-menu {
  display: flex;
  margin: 4em 0 0 0;
}
.donation-button {
  border-top: 1px dotted black;
  border-left: 1px dotted black;
  border-right: 1px dotted black;
  box-sizing: border-box;
  flex: 1;
  padding: 8px;
  text-align: center;
}
.donation-button.inactive {
  border: 1px dotted #999;
  border-bottom: 1px dotted black;
  box-sizing: border-box;
}
.donation-button.inactive:hover {
  border: 1px solid #999;
}
.donation-payment-section {
  border-bottom: 1px dotted black;
  border-left: 1px dotted black;
  border-right: 1px dotted black;
  box-sizing: border-box;
  min-height: 6em;
  padding: 32px 8px 8px 8px;
}

/* ATLAS STYLES */
.entrylist {
  margin: 0 0 0 0;
}
.entry-title {
  color: white;
  font-size: 3em;
  font-weight: bold;
  text-align: center;
}
.entry-link {
  text-decoration: underline;
}
.hero-button {
  border: 1px dotted white;
  box-sizing: border-box;
  color: white;
  font-size: 1em;
  font-weight: bold;
  margin: 2em auto 0 auto;
  text-align: center;
  width: 100px;
}
.hero-button:hover {
  background-color: white;
  border: 1px solid white;
  color: black;
}
.hero-button-active {
  border: 1px solid white;
  background-color: white;
  box-sizing: border-box;
  color: black;
  font-size: 1em;
  font-weight: bold;
  margin: 2em auto 0 auto;
  text-align: center;
  width: 100px;
}
.entry-description {
  display: block;
  color: black;
  font-size: 1.5em;
  line-height: 1.5em;
  padding: 0 18vw 0 18vw;
}
.entry-section-wrapper {
  padding: 0 0 0 0;
  margin: 0 1vw 1em 1vw;
}
.entry-section-title {
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: thin;
  font-style: italic;
  text-align: right;
  margin: 0 0 0 0;
}
/* Entry image menu over image container in white */
/*.entry-imagecontainer {
  position: relative;
  z-index: 5;
}
.entry-image {
  box-sizing: border-box;
  display: block;
  padding: 0 0 0 0;
  width: 62vw;
}
.entry-image-caption {
  color: white;
  float: right; 
  margin: -1.5em 8px;
  position: relative;
  z-index: 10;
}
.entry-image-links {
  float: left; 
  margin: -1.5em 0 0 8px;
  position: relative;
  z-index: 10;
}
.entry-image-button {
  border: 1px dotted white; 
  color: white;
  float: left;
  margin-right: 5px; 
  text-align: center; 
  width: 15px; 
}
.entry-image-button:hover {
  background-color: white;
  border: 1px solid white; 
  color: black;
}*/
/* Entry image menu under image container in black */
.entry-imagecontainer {
}
.entry-image {
  box-sizing: border-box;
  display: block;
  padding: 0;
  width: 62vw;
}
.entry-image-caption {
  float: right;
  margin-top: 8px;
}
.entry-image-links {
  margin-top: 8px;
}
.entry-image-button {
  border: 1px dotted black;
  float: left;
  margin-right: 5px;
  text-align: center;
  width: 15px;
}
.entry-image-button:hover {
  border: 1px solid black;
}
/*####################################*/
.entry-shoplist-title {
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: thin;
  font-style: italic;
  text-align: right;
  margin: 0 0 0 0;
}

/* PROGRAMMES STYLES */
.programmes-hero {
  background: url(/../uploads/hero-images/hero2/DP-2015_5-01-2000px.jpg)
    no-repeat center center;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
}

.programmes-container {
  margin: 2em 0 0 0;
  width: 100vw;
}

.index-box {
  margin: 0 1vw 0 0;
}
.index-title {
  margin: 0 0 1em 0;
}
.index-button {
  border: 1px dotted black;
  box-sizing: border-box;
  min-height: 2em;
  margin: 0 0 1em 0;
  padding: 7px 0 7px 7px;
}

.programmelist {
  margin: 0 0 0 0;
}
.programmes-entry-box {
  margin: 0 0 1em 0;
}
.programmes-hero-wrapper {
  border: 1px dotted black;
  display: block;
  height: 28vw;
  overflow: hidden;
  position: relative;
}
.programmes-title {
  color: white;
  font-size: 3em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 60vw;
}
.programmes-box-field {
  border: 1px dotted black;
  box-sizing: border-box;
  min-height: 2em;
  padding: 14px 14px 14px 14px;
}
.programmes-entry-wrapper {
  margin: 1em 0 0 0;
}
.programmes-description-section {
  /*border: 1px dotted black;*/
  /*  border-top: 1px dotted black;
  border-left: 1px dotted black;
  border-right: 1px dotted black;
  padding: 8px;*/
}
.programmes-credits-section {
  font-size: 12px;
  /*border-top: 1px dotted black;*/
  /*  border-left: 1px dotted black;
  border-right: 1px dotted black;*/
  /*padding: 8px;*/
  margin: 4em 0 0 0;
  padding: 8px 0 8px 0;
}
/*.programmes-entry-wrapper {
  font-size: 12px;
  border-top: 1px dotted black;
  padding: 8px 0 8px 0;
}*/
.programmes-entry-title {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.5em;
  text-align: left;
  margin: 0 0 1em 0;
}
.programmes-entry-wrapper {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  margin: 2em -1vw 2em -1vw;
  /*margin: 2em 0 2em 0;*/
  width: 64vw;
}
.entry-link-box {
  float: left;
  box-sizing: border-box;
  margin: 0 1vw 2vw 1vw;
}
.entry-link-box .hover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: 0.5s ease;
}
.entry-link-box:hover .hover {
  opacity: 1;
}
.entry-link-box .normal {
  transition: 0.5s ease;
}
.entry-link-box:hover .normal {
  opacity: 0;
}
.entry-hero-wrapper {
  position: relative;
  display: block;
  height: 14vw;
  width: 14vw;
}
.entry-link-title {
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  /*background-color: rgba(0, 0, 0, 0.2);*/
  padding: 0.25em;
}

.programmes-details-group {
  display: flex;
  flex: 1;
}
.programmes-details-field {
  flex: 0 1 auto;
}
.programmes-details-spacer {
  flex: 1 1 auto;
}

.programmes-seal-wrapper {
  overflow: hidden;
  margin: 0 -2vw 0 -2vw;
}
.programmes-seal {
  float: left;
  width: 16vw;
}

.videoWrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* EDITORIAL STYLES */
.saftzine-hero {
  background: url(/../uploads/hero-images/IMG_4788-2000px.jpg) no-repeat center
    center;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
}
.saefte-hero {
  background: url(/../uploads/hero-images/SAFT-assembling-2000px.jpg) no-repeat
    center center;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
}
.studiobooks-hero {
  background: url(/../uploads/hero-images/Alberi-e-Case-IMG_7380-2000px.jpg)
    no-repeat center center;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
}

/* COLLECTIONS STYLES */
.collection-hero {
  background: url(/../uploads/hero-images/collection_MG_9145dark.jpg) no-repeat
    center center;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
}
.collection-login-field-title {
  margin: 0 0 8px 0;
}
.collection-login-field-wrapper {
  display: flex;
  flex-direction: row;
  margin: 0 0 24px 0;
}
.collection-login-field-wrapper input {
  margin: 0;
}
/*** ON HERO ***/
/*.collection-login-field {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #FFF;
  border-radius: 0;
  box-sizing: border-box;
  color: #FFF;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1em;
  margin: 1em 0 1em 0;
  padding: 8px;
  -webkit-appearance: none;
  width: 100%;
}
::placeholder {
  color: #FFF;
}
.collection-login-field-required {
  margin: 12px 12px 0 6px
}
.collection-login-button {
  background-color: transparent;
  border: 1px dotted #FFF;
  box-sizing: border-box;
  color: #FFF;
  text-align: center;
  margin: 1em;
  padding: 7px 7px 7px 7px;
  text-decoration: none;
}
.collection-login-button:hover {
  background-color: #FFF;
  border: 1px solid #FFF;
  color: #000;
}*/
/*** ON HERO END ***/
/*** IN INDEX COL ***/
.collection-login-field {
  border: 1px solid #aaa;
  border-radius: 0;
  box-sizing: border-box;
  color: #000;
  font-family: "Times New Roman", Times, serif;
  font-size: 1em;
  margin: 1em 0 1em 0;
  padding: 8px;
  -webkit-appearance: none;
  width: 100%;
}
::placeholder {
  color: #aaa;
}
.collection-login-field-required {
  margin: 12px 12px 0 6px;
}
.collection-login-button {
  background-color: transparent;
  border: 1px dotted #000;
  box-sizing: border-box;
  color: #000;
  font-family: "Times New Roman", Times, serif;
  font-size: 12px;
  text-align: center;
  margin: 1em 0 1em 0;
  padding: 7px 7px 7px 7px;
  text-decoration: none;
  width: 100%;
}
.collection-login-button:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
/*** IN INDEX COL END ***/
.opac-container {
  margin: 64px 0 0 0;
}
.opac-link-button a {
  border: 1px dotted #000;
  box-sizing: border-box;
  color: #000;
  display: inline-block;
  /*height: 25px;*/
  text-align: center;
  /*margin: 1em 0 1em 0;*/
  padding: 7px 7px 7px 7px;
  text-decoration: none;
  width: 100%;
}
.opac-link-button:hover a {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}

/* SHOP STYLES */
.shop-container {
  margin: 64px 0 0 0;
}
.shoplist {
  margin: 0 -1vw 0 -1vw;
}
.cart-box {
  margin: 0 0 0 1vw;
}

/* SHOPPING CART STYLES */
.shop-button {
  border: 1px dotted black;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  /*font-weight: bold;*/
  margin: 0 0 1em 0;
  padding: 7px 0 7px 7px;
}
.shop-button:hover {
  background-color: #000;
  color: #fff;
}
.cart-title {
  border: 1px dotted black;
  box-sizing: border-box;
  text-align: center;
  /*font-weight: bold;*/
  min-height: 2em;
  margin: 0 0 1em 0;
  padding: 7px 0 7px 7px;
}
.cart-section {
  border: 1px dotted black;
  padding: 1em;
  margin: 0 0 1em 0;
}
#cart_notice {
  border: 1px solid #58a986;
  background: #b2ffd3;
  margin-bottom: 1em;
  padding: 8px;
  text-align: center;
}
#cart_error {
  border: 1px solid #a95858;
  background: #ffb2b2;
  margin-bottom: 1em;
  padding: 8px;
  text-align: center;
}
.cart-row-wrapper {
  font-size: 14px;
  margin-bottom: 8px;
  overflow: hidden;
}
.cart-item-wrapper {
  float: left;
}
.cart-hero-box {
  /*float: left;*/
  box-sizing: border-box;
  margin: 0 1vw 2vw 1vw;
}
.cart-image-wrapper {
  display: block;
  height: 5em;
  width: 5em;
}
.cart-item-title {
  margin: 1em 0 0 1em;
}
.cart-item-row {
}
.cart-price-row {
  text-align: right;
  display: flex;
  float: right;
  /*overflow: hidden;*/
}
.cart-price-row a {
  text-decoration: none;
}
/*.cart-item-price {
  float: right;
}
.cart-remove-link {
  float: right;
  margin-left: 8px;
}*/
#cart_total {
  font-weight: bold;
  margin: 8px 24px 0 0;
  text-align: right;
}
#cart_shipping {
  margin-right: 24px;
  text-align: right;
}
#shipping_info {
  color: #999;
}
#shipping_cost {
  margin: 16px 0 0 0;
}
#cart_netto {
  margin-right: 24px;
  text-align: right;
}
.cart-button-row {
  display: block;
}
.cart-button-row input {
  background-color: #fff;
  border: 1px dotted black;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  color: #000;
  text-align: center;
  margin: 0;
  /*min-height: 2em;*/
  padding: 7px 0 7px 7px;
  text-decoration: none;
  -webkit-appearance: none;
  width: 100%;
}
.cart-button-row input:hover {
  border: 1px solid black;
  background-color: #000;
  color: #fff;
  margin: 0 0 0 0;
}
.cart-button-wrapper {
  text-decoration: none;
}
.cart-button-wrapper a {
  text-decoration: none;
}
.cart-button-wrapper-left a {
  text-decoration: none;
  width: 400px;
}
.cart-button-wrapper-left:hover a {
  color: #fff;
}
.cart-button {
  background-color: #fff;
  border: 1px dotted black;
  box-sizing: border-box;
  font-size: 18;
  text-align: center;
  /*font-weight: bold;*/
  /*min-height: 2em;*/
  /*height: 2em;*/
  margin: 0 0 1em 0;
  padding: 7px 0 7px 7px;
  text-decoration: none;
  width: 100%;
}
.cart-button:hover {
  background-color: #000;
  border: 1px solid black;
  color: #fff;
  margin: 0 0 1em 0;
}
.cart-clear-button {
  background-color: #fff;
  border: 1px dotted black;
  box-sizing: border-box;
  color: #000;
  cursor: pointer;
  font-family: "Times New Roman", Times, serif;
  font-size: 1em;
  text-align: center;
  margin: 0 0 1em 0;
  padding: 7px 0 7px 7px;
  text-decoration: none;
  width: 100%;
}
.cart-clear-button:hover {
  background-color: #000;
  border: 1px solid black;
  color: #fff;
  margin: 0 0 1em 0;
}
.cart-button-destyle {
  float: right;
  background-color: #ffffff;
  border: 0;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: "Times New Roman", Times, serif;
  font-size: 1em;
  line-height: 1em;
  margin: 0;
  padding: 0;
}
.cart-payment-wrapper {
  display: flex;
}
.cart-payment-button-left {
  flex: 0 14vw;
  margin: 0 2vw 0 0;
}
.cart-payment-button {
  flex: 0 14vw;
}
.button-left {
  float: left;
  width: 30vw;
}
.button-right {
  text-decoration: none;
  float: right;
  width: 30vw;
}

/* SHOP DETAIL STYLES */
.detail-abstract-wrapper {
  margin: 0 -1vw 0 -1vw;
  width: 64vw;
}
.detail-image {
  box-sizing: border-box;
  padding: 2em 5vw 2em 5vw;
  float: left;
  width: 32vw;
  height: 33vw;
}
.item-image-wrapper {
  position: relative;
  /*display: block;*/
  min-height: 100%;
  overflow: hidden;
}
.detail-abstract {
  box-sizing: border-box;
  padding: 2em 5vw 2em 5vw;
  float: left;
  width: 32vw;
}
.detail-abstract-title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1;
}
.detail-abstract-subtitle {
  font-size: 0.75em;
  line-height: 1.2em;
}
.detail-abstract-spacer {
  min-height: 3em;
}
.detail-abstract-facts {
  font-size: 0.5em;
  line-height: 2em;
}
.detail-abstract-code {
  font-size: 0.75em;
  line-height: 2em;
}
.detail-availability-box {
  display: inline-block;
  border: 1px dotted black;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  margin: 21px 0 0 0;
  padding: 7px 28px 7px 28px;
}
.detail-availability-button {
  background-color: #ffffff;
  border: 1px dotted black;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  line-height: 1.5em;
  margin: 21px 0 0 0;
  padding: 7px 28px 7px 28px;
}
.detail-price {
  font-size: 1em;
}
.detail-price:hover {
  background-color: #000;
  border: 1px solid black;
  color: #fff;
}
.detail-link {
  display: inline-block;
  font-size: 0.7em;
}
.detail-link:hover {
  border: 1px solid black;
}
.detail-availability {
  font-size: 0.7em;
}
.product-description {
  clear: left;
  margin: 0 1vw 3em 1vw;
}
.product_variant-selector-wrapper {
  position: relative;
  overflow: hidden;
}
.product_variant-select select {
  /*background-color: #222;*/
  border: 1px dotted #000;
  border-radius: 0;
  /*color: #AAA;*/
  /*direction: rtl;*/
  font-family: "Times New Roman", Times, serif;
  font-size: 0.5em;
  margin: 8px -25px 8px 0;
  overflow: hidden;
  padding: 8px 45px 8px 8px;
  float: left;
  -webkit-appearance: none;
}
.product_variant-select:after {
  font-size: 0.5em;
  content: "< >";
  /*font: 17px "Consolas", monospace;*/
  color: #000;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  /*right: 10px;*/
  /*Adjust for position however you want*/
  top: 6px;
  padding: 0 0 2px 0;
  border-bottom: 1px solid #999;
  /*left line */

  position: absolute;
  pointer-events: none;
}
.product_variant-image-button {
  border: 1px dotted black;
  font-size: 13px;
  float: left;
  line-height: 13px;
  height: 15px;
  margin: 10px 5px 0 0;
  padding: 1px;
  text-align: center;
  width: 15px;
}
.product_variant-image-button:hover {
  border: 1px solid black;
}

/* SHIPPING CART */
.shipping-form {
  overflow: hidden;
  border: 1px dotted black;
  padding: 1em;
  margin: 0 0 1em 0;
}
.shipping-form-title {
  margin: 0 0 1em 0;
  text-transform: uppercase;
}
.shipping-form-column {
  box-sizing: border-box;
  float: left;
  width: 29vw;
}
.side-right {
  padding: 0 0 0 2vw;
}
.shipping-field-title {
  margin: 0 0 8px 0;
}
.shipping-field-wrapper {
  display: flex;
  flex-direction: row;
  margin: 0 0 24px 0;
}
.shipping-field-wrapper input {
  margin: 0;
}
.shipping-field {
  background-color: #333;
  border: 1px solid #aaa;
  border-radius: 0;
  box-sizing: border-box;
  color: #ccc;
  font-family: "Times New Roman", Times, serif;
  font-size: 1em;
  padding: 8px;
  -webkit-appearance: none;
  width: 24vw;
}
.shipping-field-required {
  margin: 12px 12px 0 6px;
}
.shipping-selector-wrapper {
  display: flex;
  flex-direction: row;
}
.select-div {
  box-sizing: border-box;
  margin: 0 0 24px 0;
  position: relative;
  /*width: 24vw; */
}
.select-div:after {
  content: "< >";
  /*font: 17px "Consolas", monospace;*/
  color: #ccc;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 4px;
  /*Adjust for position however you want*/

  top: 8px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  /*left line */

  position: absolute;
  pointer-events: none;
}
.select-div select {
  background-color: #333;
  border: 1px solid #aaa;
  border-radius: 0;
  box-sizing: border-box;
  color: #ccc;
  font-family: "Times New Roman", Times, serif;
  font-size: 1em;
  margin: 0;
  padding: 8px;
  width: 24vw;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.shipping-ccdate-wrapper {
  display: flex;
  flex-direction: row;
}
.select-div-ccdate {
  box-sizing: border-box;
  margin: 0 0 24px 0;
  position: relative;
  /*width: 24vw; */
}
.select-div-ccdate:after {
  content: "< >";
  /*font: 17px "Consolas", monospace;*/
  color: #ccc;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 4px;
  /*Adjust for position however you want*/

  top: 8px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  /*left line */

  position: absolute;
  pointer-events: none;
}
.select-div-ccdate select {
  background-color: #333;
  border: 1px solid #aaa;
  border-radius: 0;
  box-sizing: border-box;
  color: #ccc;
  font-family: "Times New Roman", Times, serif;
  font-size: 1em;
  margin: 0;
  padding: 8px 32px 8px 8px;
  /*width: 10vw; */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.shipping-field-data {
  /*background-color: #333;*/
  border: 1px dotted #000;
  border-radius: 0;
  /*color: #CCC;*/
  font-family: "Times New Roman", Times, serif;
  font-size: 1em;
  margin: 0 0 24px 0;
  padding: 8px;
  -webkit-appearance: none;
  width: 24vw;
}
.cart-selector-wrapper {
  position: relative;
  overflow: hidden;
}
.cart-shipping-select select {
  /*background-color: #222;*/
  border: 1px dotted #000;
  border-radius: 0;
  /*color: #AAA;*/
  /*direction: rtl;*/
  font-family: "Times New Roman", Times, serif;
  font-size: 1em;
  margin: 8px 24px 8px 0;
  overflow: hidden;
  padding: 8px 34px 8px 8px;
  float: right;
  -webkit-appearance: none;
}
.cart-shipping-select:after {
  content: "< >";
  /*font: 17px "Consolas", monospace;*/
  color: #000;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 28px;
  /*Adjust for position however you want*/

  top: 16px;
  padding: 0 0 2px 0;
  border-bottom: 1px solid #999;
  /*left line */

  position: absolute;
  pointer-events: none;
}
.shipping-cart-options {
  margin: 2em 24px 0 0;
  overflow: hidden;
}
.clear-button {
  background-color: #fff;
  border: 0;
  /*box-sizing: border-box;*/
  color: #000;
  cursor: pointer;
  float: right;
  font-family: "Times New Roman", Times, serif;
  font-size: 1em;
  text-align: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.order-checkboxes {
}
.order-checkbox-wrapper {
  overflow: hidden;
  margin: 0 0 8px 0;
}
.order-checkbox-container {
  float: left;
}
.shopping-cart-checkbox {
  background-color: #111;
  border: 1px solid #aaa;
  box-sizing: border-box;
  color: #fff;
  height: 3em;
  margin: 0;
  position: relative;
  width: 3em;
  -webkit-appearance: none;
}
.shopping-cart-checkbox:checked {
  -webkit-appearance: none;
  box-sizing: border-box;
  background-color: #fff;
  /*border: 1px solid #AAA;*/
}
/*.shopping-cart-checkbox:after {
  content: " ";
  background-color: #fff;
  display: inline-block;
  color: #00BFF0;
  width: 14px;
  height: 19px;
  visibility: visible;
  border: 1px solid #FFF;
  padding: 0 3px;
  margin: 2px 0;
  border-radius: 8px;
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.08), 0 0 2px 0 rgba(0,0,0,0.16);
}*/

.shopping-cart-checkbox:checked:after {
  content: "X";
  color: #000;
  font-size: 36px;
  transform: translate(6px, -6px);
  font-weight: lighter;
  /*top: 3px;*/
  position: absolute;
  /*display: unset;*/
  /*font-weight: bold;*/
}
.shopping-cart-checkbox-title {
  box-sizing: border-box;
  float: left;
  padding: 10px 0 6px 8px;
  margin: 0 0.5em 0 0;
}
.payment-certificate {
  color: #999;
  margin-top: 3em;
  width: 25vw;
}
.certificate-seal {
  margin-top: 1em;
  width: 5vw;
}
.billing-button {
  border: 1px dotted black;
  box-sizing: border-box;
  flex: 0 0 auto;
  padding: 8px;
  text-align: center;
  width: 24vw;
}
.billing-button:hover {
  background-color: black;
  color: white;
}

/* TEXT PAGES STYLES */
.text-pages-container {
  margin: 64px 0 0 0;
}

/* FOOTER STYLES */
.footer-container {
  border-top: 1px dotted black;
  clear: left;
  /*background-color: grey;*/
  color: white;
  /*margin-top: 2em;*/
  width: 100vw;
}
.footer-logo-v {
  /*height: 100%;*/
  /*margin-left: 7vw;*/
  /*width: 6vw;*/
}
.footer-logo-h {
  display: none;
}
.footer-box {
  box-sizing: border-box;
  float: left;
  padding: 24px;
}
.footer-box .nav-links > li {
  display: block;
  margin: 0 0 12px 0;
}
.footer-box .nav-links > li ~ li {
  border-left: 0;
  margin: 0 0 12px 0;
  padding: 0;
}

/* NEWSLETTER STYLES */
#mc_embed_signup form {
  text-align: center;
}
.mc-field-group {
  display: inline-block;
}

/* positions input field horizontally */
#mc_embed_signup input.email {
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #abb0b2;
  box-sizing: border-box;
  color: #343434;
  display: inline-block;
  font-family: "Times New Roman", Times, serif;
  font-size: 15px;
  height: 32px;
  margin: 0;
  padding: 0px 0.4em;
  vertical-align: top;
  width: 350px;
  -webkit-appearance: none;
}
#mc_embed_signup label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
}
#mc_embed_signup .clear {
  display: inline-block;
}

/* positions button horizontally in line with input */
#mc_embed_signup .button {
  background-color: #aaa;
  border-radius: 0;
  border: none;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  height: 32px;
  letter-spacing: 0.03em;
  line-height: 32px;
  margin: 0;
  padding: 0 18px;
  transition: all 0.23s ease-in-out 0s;
  -webkit-appearance: none;
}
#mc_embed_signup .button:hover {
  background-color: #777;
  cursor: pointer;
}
#mc_embed_signup div#mce-responses {
  clear: both;
  float: left;
  margin: 0 5%;
  overflow: hidden;
  padding: 0em 0.5em 0em 0.5em;
  top: -1.4em;
  width: 90%;
}
#mc_embed_signup div.response {
  float: left;
  font-weight: bold;
  margin: 1em 0;
  padding: 1em 0.5em 0.5em 0;
  top: -1.5em;
  width: 80%;
  z-index: 1;
}
#mc_embed_signup #mce-error-response {
  display: none;
}
#mc_embed_signup #mce-success-response {
  color: #529214;
  display: none;
}
#mc_embed_signup label.error {
  display: block;
  float: none;
  margin-left: 1.05em;
  padding: 0.5em 0;
  text-align: left;
  width: auto;
}

/* SOCIAL STYLES */
.social-list {
  list-style: none;
  padding: 0;
  text-align: center;
}
.social-link {
  background: rgba(0, 0, 0, 1);
  border-radius: 99px;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-family: helvetica, arial, sans;
  font-size: 1em;
  font-weight: bold;
  height: 1.5em;
  line-height: 1;
  padding-top: 0.25em;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  width: 1.5em;
}
.social-list > li ~ li {
  margin: 1.5em 0 0 0;
}

/* COLUMN STYLES */
.col-three {
  display: flex;
  flex: 1;
}
.col-index {
  flex: 0 0 15.5vw;
  padding: 0 1vw 0 0;
}
.col-content {
  flex: 0 0 62vw;
}
.col-three .col-aside {
  flex: 0 0 15.5vw;
  padding: 0 0 0 1vw;
}

.col-shopcart {
  flex: 0 0 16.5vw;
}
.col-shopcart-mobile {
  display: none;
}

.col-six {
  display: flex;
  flex: 1;
}
.col-six > div ~ div {
  border-left: 1px dotted black;
}
.col-logo {
  flex: 0 1 18%;
}
.col-address {
  flex: 1 1 32%;
}
.col-links {
  flex: 1 1 16%;
}
.col-projects {
  flex: 0 1 16%;
}
.col-social {
  flex: 0 1 18%;
}

.imageresource-desktop {
  display: block;
}
.imageresource-pad {
  display: none;
}
.imageresource-mobile {
  display: none;
}

/* MEDIA QUERIES */
@media (max-width: 1400px) {
  .entry-link-title {
    font-size: 1.5em;
  }
}

/* MEDIA QUERIES */
@media (max-width: 1210px) {
  .menu-button {
    font-size: 0.74em;
  }
  .footer-logo-v {
    /*margin-left: 5vw;*/
    /*width: 4vw;*/
  }
  .footer-logo-h {
    display: none;
  }
}

@media (max-width: 1000px) {
  html {
    padding: 0;
  }

  .desktop {
    display: none;
  }
  .pad {
    display: block;
  }
  .mobile {
    display: none;
  }

  .section-container {
    margin: 2em 2vw 2em 2vw;
  }
  .section-wrapper {
    margin: 0 0 0 0;
  }
  .section-hero {
    height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
    /*height: calc(var(--vh, 1vh) * 100);*/
  }
  .section-title {
    font-size: 2em;
    text-align: center;
    margin: 1em 0 0 0;
  }
  .section-shop {
    margin: 1em -2vw 1em -2vw;
    width: 100vw;
  }
  .shop-hero-wrapper {
    height: 23vw;
    width: 23vw;
  }
  .menu-button {
    font-size: 0.75em;
  }

  /* HEADER STYLES */
  .header {
    height: 50px;
  }
  .header-nav > li {
    margin-left: 0.25em;
  }
  .header-nav > li ~ li {
    padding-left: 0.25em;
  }
  .header-nav .nav-links a {
    font-size: 1em;
  }
  .header-logo {
    left: auto;
  }

  /* MOBILE MENU */
  .side-menu-toggle {
    display: block;
  }
  #menulinks {
    display: none;
  }
  #sidemenulinks {
    display: block;
  }
  #login-section {
    display: block;
  }
  .show-mobile-menu {
    display: block;
    float: right;
    padding: 16px 16px 16px 0;
    position: relative;
    z-index: 1000;
  }
  .header-nav {
    /*background-color: #444;*/
    background-color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    /*left: 0;*/
    left: 100vw;
    /*max-height: 0;*/
    height: 100vh;
    overflow: hidden;
    padding: 0;
    position: absolute;
    /*text-align: center;*/
    top: 50px;
    transition: all 0.5s ease-in-out;
    width: 100vw;
    z-index: 9;
  }
  .header-nav.active {
    left: 0;
  }
  .header-nav .nav-links {
    margin: 100px 75px auto auto;
    /*position: relative;*/
    text-align: right;
    width: 300px;
  }
  .show-login-menu {
    display: block;
    float: left;
    padding: 16px 0 16px 16px;
    position: relative;
  }
  .login-menu-toggle {
    display: block;
  }
  #login-btn-close {
    display: none;
  }

  /* Mobile menu transition */
  .mobile-menu-check.active ~ .header-nav {
    left: 0;
    height: 100vh;
  }
  .mobile-menu-check.active ~ .show-mobile-menu:after {
    background-color: #fff;
    color: #000;
    content: "\2715";
    left: 0;
    padding: 0 32px 0 0;
    position: absolute;
    width: 100%;
  }
  .content-wrapper.active {
    right: 100vw;
  }

  .header-nav .nav-links li {
    display: block;
    /*margin-top: 1em;*/
    padding: 1em 0 1em 0;
    border-top: 1px dotted #000;
  }
  .header-nav .nav-links > li ~ li {
    border-left: 0;
  }
  .header-nav .nav-links li:last-child {
    margin-bottom: 1em;
    border-bottom: 1px dotted #000;
  }
  .header-nav .nav-links li:first-child a {
    /*color: #fff;*/
    font-weight: bold;
  }
  .header-nav .drop-trigger {
    padding-right: 0;
  }
  .header-nav .drop-menu:after,
  .header-nav .drop-trigger:after {
    display: none;
  }

  /* FOOTER STYLES */
  .project-box {
    display: block;
  }
  .footer-logo-v {
    /*    margin-left: 8vw;
    width: 5vw;*/
  }
  .footer-logo-h {
    display: none;
  }
  .link-box {
    display: none;
  }
  .footer-box {
    padding: 12px;
  }
  .footer-box .nav-links > li {
    margin: 0 0 12px 0;
    padding: 0;
  }
  .footer-box .nav-links > li ~ li {
    margin: 0 0 12px 0;
    padding: 0;
  }

  /* NETWORK STYLES */
  .network-container {
    margin: 2em -2vw 4em -2vw;
    width: 100vw;
  }
  .partner-wrapper {
    width: 25vw;
  }

  /* ATLAS STYLES */
  .entry-image {
    width: 96vw;
  }
  .entry-section-wrapper {
    margin: 0 0 1em 0;
  }
  .entry-section-title {
    text-align: left;
  }
  .entry-shoplist-title {
    font-size: 2em;
    font-style: normal;
    font-weight: bold;
    line-height: 1.5em;
    text-align: center;
    margin: 0 0 0 0;
  }

  /* PROGRAMS STYLES */
  .category-box {
    margin: 0 1vw 1em 1vw;
  }
  .programs-text {
    font-size: 1em;
  }
  .programmes-box-field {
    padding: 1vw 1vw 1vw 1vw;
  }
  .programmes-seal-wrapper {
    overflow: hidden;
    margin: 0 -2vw 0 -2vw;
  }
  .programmes-seal {
    float: left;
    width: 25vw;
  }
  .programmes-hero-wrapper {
    height: 77.5vw;
  }
  .programmes-entry-title {
    font-size: 3em;
    text-align: center;
    margin: 1em 0 0 0;
  }
  .programmes-entry-wrapper {
    border: 0;
    margin: 1em -1vw 1em -1vw;
    width: 98vw;
  }
  .entry-hero-wrapper {
    height: 22.5vw;
    width: 22.5vw;
  }
  .entry-link-title {
    font-size: 1em;
  }

  /* SHOP STYLES */
  .shop-link-title {
    font-size: 1em;
  }
  .shoplist {
    margin: 0 -2vw 0 -2vw;
  }
  .cart-box {
    margin: 0 0 0 0;
  }

  /* SHOP DETAIL STYLES */
  .detail-abstract-wrapper {
    margin: 0 0 0 0;
    width: 98vw;
  }
  .detail-image {
    box-sizing: border-box;
    padding: 2em 5vw 2em 5vw;
    float: left;
    width: 49vw;
    height: 58.5vw;
  }
  .detail-abstract {
    box-sizing: border-box;
    padding: 2em 5vw 2em 5vw;
    float: left;
    width: 49vw;
  }

  /* SHIPPING CART */
  .shipping-form-column {
    width: 45.5vw;
  }
  .side-right {
    padding: 0 0 0 2vw;
  }
  .shipping-field {
    width: 40vw;
  }
  .select-div select {
    width: 40vw;
  }
  .shipping-field-data {
    width: 40vw;
  }
  .cart-payment-button-left {
    flex: 0 23vw;
  }
  .cart-payment-button {
    flex: 0 23vw;
  }
  .button-left {
    float: left;
    width: 47vw;
  }
  .button-right {
    text-decoration: none;
    float: right;
    width: 47vw;
  }

  /* COLUMN STYLES */
  .col-three {
    flex-direction: column;
  }
  .col-index {
    flex: 1 1 auto;
  }
  .col-content {
    flex: 1 1 auto;
    padding: 0 0 0 0;
  }
  .col-three .col-aside {
    display: block;
    flex: 1 0 auto;
    padding: 2em 0 0 0;
  }

  .col-shoplist {
    margin: 0;
    flex: 0 0 73vw;
  }
  .col-shopcart {
    display: none;
  }
  .col-shopcart-mobile {
    display: block;
  }

  .col-logo {
    flex: 0 1 25%;
  }
  .col-address {
    flex: 0 1 25%;
  }
  /*	.col-links {
		flex: 0 1 25%;
	}*/
  .col-projects {
    flex: 0 1 25%;
  }
  .col-social {
    flex: 0 1 25%;
  }

  .imageresource-desktop {
    display: none;
  }
  .imageresource-pad {
    display: block;
  }
  .imageresource-mobile {
    display: none;
  }
}

@media (max-width: 500px) {
  .desktop {
    display: none;
  }
  .pad {
    display: none;
  }
  .mobile {
    display: block;
  }

  .section-container {
    margin: 1em 2vw 1em 2vw;
  }
  .hero-title {
    font-size: 2.5em;
  }
  .hero-caption {
    font-size: 0.5em;
    bottom: 2vw;
    left: 2vw;
  }
  .shop-hero-wrapper {
    height: 48vw;
    width: 48vw;
  }
  .section-title {
    font-size: 2em;
    margin: 1em 0 1em 0;
  }
  .section-text {
    font-size: 1em;
    line-height: 1.5em;
  }
  .section-menu {
    display: none;
  }
  .section-menu-mobile {
    flex-direction: row;
    display: flex;
    text-align: center;
    margin: 0 0 0.5em 0;
    width: 100%;
  }
  .menu-button {
    flex: 1 0;
    font-size: 0.5em;
    padding: 3px;
  }
  .header-nav .nav-links {
    margin: 75px 10vw auto auto;
    text-align: right;
    width: 80vw;
  }

  /* SOCIAL STYLES */
  .social-list > li {
    display: inline-block;
    margin: 0 0.5em 0 0.5em;
  }
  .social-list > li ~ li {
    display: inline-block;
    margin: 0 0.5em 0 0.5em;
  }

  /* FOOTER STYLES */
  .footer {
    padding: 1em 0.5em 0.5em 0.5em;
  }
  .footer-logo-v {
    display: none;
  }
  .footer-logo-h {
    display: none;
  }
  .footer-box {
    padding: 0;
    margin: 0;
  }
  .link-box {
    display: block;
  }
  .footer .shop-cover {
    display: none;
  }
  .footer-nav {
    text-align: center;
  }
  .footer-logo-h {
    display: block;
  }
  .footer-logo-v {
    display: none;
  }
  .col-six .nav-contacts {
    margin: 0 2vw 2em 2vw;
    text-align: center;
  }

  /* NEWSLETTER STYLES */
  #mc_embed_signup input.email {
    width: 100%;
    margin-bottom: 5px;
  }

  #mc_embed_signup .clear {
    display: block;
    width: 100%;
  }

  #mc_embed_signup .button {
    width: 100%;
    margin: 0;
  }

  /* MANIFESTO STYLES */
  .soarc-title {
    font-size: 5em;
  }
  .soarc-subtitle {
    font-size: 2em;
  }
  .network-container {
    margin: 1em -2vw 4em -2vw;
    width: 100vw;
  }
  .partner-wrapper {
    width: 50vw;
  }

  /* ATLAS STYLES */
  .entry-title {
    font-size: 2em;
  }

  /* PROGRAMS STYLES */
  .programmes-title {
    font-size: 2em;
    width: 80vw;
  }
  .category-box {
    margin: 0 2vw 1em 2vw;
  }
  .programmes-box-field {
    padding: 0 2vw 0 2vw;
  }
  .programmes-seal {
    width: 49vw;
  }
  .programmes-hero-wrapper {
    height: 94vw;
  }
  .programmes-entry-wrapper {
    margin: 64px -1vw 0 -1vw;
    width: 98vw;
  }
  .entry-hero-wrapper {
    height: 47vw;
    width: 47vw;
  }
  .entry-link-title {
    font-size: 1em;
  }

  /* SHOP STYLES */
  .shop-container {
    margin: 64px 0 0 0;
    width: 100vw;
    /*display: block;*/
  }
  .shop-link-title {
    font-size: 2em;
  }

  /* SHIPPING CART */
  .shipping-form {
    padding: 2vw;
  }
  .shipping-form-column {
    width: 92vw;
  }
  .side-right {
    padding: 0;
  }
  .shipping-field {
    width: 88vw;
  }
  .select-div select {
    width: 88vw;
  }
  .shipping-field-data {
    width: 88vw;
  }

  /* COLUMN STYLES */
  .col-three .col-aside {
    display: block;
  }
  .col-six {
    display: flex;
    flex-direction: column-reverse;
  }
  .col-six > div ~ div {
    margin: 1em 0 1em 0;
    border-left: 0;
  }
  .col-social {
    flex: 0 0 auto;
  }
  .col-links {
    margin-top: 1em;
    flex: 0 0 auto;
  }
  .col-address {
    flex: 0 0 auto;
  }
  .col-logo {
    display: block;
  }

  .imageresource-desktop {
    display: none;
  }
  .imageresource-pad {
    display: none;
  }
  .imageresource-mobile {
    display: block;
  }
}
.field_with_errors {
  padding: 4px 2px;
  background-color: red;
  display: table;
}
.creditcard_error {
  color: red;
  font-size: 16px;
  list-style: square;
}
 
#error_explanation {
  /*width: 450px;*/
  border: 2px solid red;
  padding: 7px;
  padding-bottom: 0;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}
#error_explanation h2 {
  text-align: left;
  font-weight: bold;
  padding: 8px 8px 8px 15px;
  font-size: 1em;
  margin: -7px;
  margin-bottom: 0px;
  background-color: red;
  color: #FFF;
}
#error_explanation p {
	margin: 18px;
}
#error_explanation ul {
	margin: 18px;
}
#error_explanation ul li {
  font-size: 16px;
  list-style: square;
}
.pagination {
  /*background: white;*/
  cursor: default;
  /* self-clearing method: */ 
  margin: 25px 0 25px 0;
  font-size: 15px;
  line-height: 25px;
}
.pagination a, .pagination span, .pagination em {
  /*padding: 0.2em 0.5em;*/
  display: block;
  float: left;
  margin-right: 1px; 
  width: 25px;
  height: 25px;
  text-align: center;
}
.pagination .disabled {
  display: none; 
}
.pagination .current {
  font-style: normal;
  font-weight: bold;
  background: #000;
  color: #FFF;
  border: 1px solid #000; 
}
.pagination a {
  text-decoration: none;
  color: #000;
  border: 1px dotted #000;  
}
  .pagination a:hover, .pagination a:focus {
    color: #FFF;
    background: #000;
    border-color: #000; 
  }
.pagination .page_info {
  background: #2e6ab1;
  color: white;
  /*padding: 0.4em 0.6em;*/
  width: 22em;
  margin-bottom: 0.3em;
  text-align: center; 
}
  .pagination .page_info b {
    color: #000033;
    background: #6aa6ed;
    padding: 0.1em 0.25em; 
  }
.pagination:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; 
}
* html .pagination {
  height: 1%; 
}
*:first-child + html .pagination {
  overflow: hidden; 
}
/* SIDE MENU TOGGLE */
#side-menu-toggle {
  display: none;
  color: rgb(35, 35, 35, 1);
  cursor: pointer;
  font-size: 2em;
  position: relative;
  z-index: 100;
}
#side-menu-open {
  display: block;
  z-index: 100;
}
#side-menu-open:hover {
  color: #fff;
  background-color: #000;
}
#side-menu-close {
  display: none;
  z-index: 100;
  color: #000;
}
#side-menu-close:hover {
  color: #fff;
  background-color: #000;
}

/* SIDE MENU */
#side-menu-links {
  right: -100vw;
}
.header-nav {
}

/* MENU LIST STYLES */
.header-nav .header-nav-links {
  margin: 100px 75px auto auto;
  text-align: right;
  width: 300px;
}
.header-nav .header-nav-links li {
  border-top: 1px dotted white;
  display: block;
  padding: 1em 0 1em 0;
}
.header-nav .header-nav-links > li ~ li {
  border-left: 0;
}
.header-nav .header-nav-links li:last-child {
  border-bottom: 1px dotted white;
  margin-bottom: 1em;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  #side-menu-toggle {
    display: block;
    float: right;
    position: relative;
    cursor: pointer;
    z-index: 30;
  }
  #side-menu-toggle a {
    position: relative;
    z-index: 100;
    padding: 9px;
    font-size: 1em;
    cursor: pointer;
  }
  .header-nav a {
    font-size: 1.5em;
  }
}

@media (max-width: 500px) {
  .header-nav {
    background-color: white;
    color: black;
    height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
    position: absolute;
    top: 0px;
    transition: all 0.5s ease-in-out;
    width: 100vw;
    z-index: 9;
    box-sizing: border-box;
  }
  .header-nav .header-nav-links {
    margin: 100px 10vw auto auto;
    text-align: right;
    width: 80vw;
  }
}
/* ── overlay shell ── */
.sv-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.sv-overlay[hidden] { display: none; }

/* ── full-index mode: image fills most of the viewport ── */
.sv-overlay .sv-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.sv-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* ── slide crop div ── */
.sv-crop {
    max-width: min(80vw, 80vh);
    max-height: min(80vw, 80vh);
}

/* ── nav bar ── */
.sv-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
}

.sv-bar button {
    background: rgba(255,255,255,0.12);
    border: none;
    color: white;
    font-size: 2rem;
    line-height: 1;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s;
    -webkit-appearance: none;  /* ← add */
    appearance: none;          /* ← add */
}
.sv-bar button:hover { background: rgba(255,255,255,0.25); }

.sv-counter {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    min-width: 4rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* ── close ── */
.sv-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.4rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    -webkit-appearance: none;  /* ← add */
    appearance: none;          /* ← add */
}
.sv-close:hover { background: rgba(255,255,255,0.2); }

/* ── thumbnail button reset ── */
.sv-thumb-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
}

/* ── footer actions ── */
.sv-actions { display: inline-flex; gap: 0.5rem; margin-top: 0.4rem; }
.sv-btn {
    font-size: 0.75rem;
    padding: 3px 10px;
    border: 1px solid currentColor;
    border-radius: 3px;
    background: none;
    cursor: pointer;
    opacity: 0.7;
    color: inherit;            /* ← add */
    -webkit-appearance: none;  /* ← add */
    appearance: none;          /* ← add */
}
.sv-btn:hover { opacity: 1; }


@media (max-width: 500px) {
    .sv-actions { display: inline-flex; gap: 0.5rem; margin-top: 1px; }
    .sv-btn {
        font-size: 0.75rem;
        padding: 2px 10px;
        border: 1px solid currentColor;
        border-radius: 3px;
        background: none;
        cursor: pointer;
        opacity: 0.7;
    }
}
/* GLOBAL STYLES */
.user-content-wrapper {
  color: #000;
  background-color: #FFF;
  font-family: 'Open Sans', helvetica, arial, sans;
  line-height: 25px;
  font-size: 12px;
  display: flex;
  min-height: 100vh;
}

.user-checkbox {
  -webkit-appearance: none;
  box-sizing: border-box;
  background-color: #AAA;
  border: 1px solid #AAA;
  margin: 0;
  display: table-cell;
  vertical-align: middle;
  height: 16px;
  width: 16px;
}

.user-checkbox:checked {
  -webkit-appearance: none;
  box-sizing: border-box;
  background-color: #111;
  border: 1px solid #AAA;
}

.user-checkbox-title {
  padding-left: 8px;
  line-height: 8px;
  display: table-cell;
  height: 16px;
  vertical-align: middle;
}

.remember-cb-wrapper {
  display: table;
  box-sizing: border-box;
  height: 16px;
}
