/* latin */
@font-face {
  font-family: 'Josefin Slab';
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
  src: url(/public/assets/webfont/josefinslab_italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Josefin Slab';
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url(/public/assets/webfont/josefinslab_normal.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Material Symbols Sharp';
  font-style: normal;
  font-weight: 100 700;
  src: url(/public/assets/webfont/icons.woff2) format('woff2');
}
.material-symbols-sharp {
  font-family: 'Material Symbols Sharp';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;
}
* {
  font-family: "Josefin Slab", sans-serif;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  flex-flow: column nowrap;
  background: linear-gradient(-20deg, #262626, #0C0C0C);
  background-repeat: no-repeat;
  background-attachment: fixed;
}
header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 4rem 3rem;
  box-sizing: border-box;
}
header h1 {
  color: #FFFFFF;
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 100;
  margin: 0;
  margin-top: 0.45rem;
  text-align: center;
}
header h1 span {
  font-size: 2.6rem !important;
  color: #363636;
  cursor: pointer;
}
header .button-group {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 12rem;
  height: 3rem;
}
header .button-group:nth-of-type(2) {
  justify-content: flex-end;
}
header .button-group a {
  margin: 0 1rem;
  display: grid;
  place-items: center;
  text-decoration: none;
  width: 3rem;
}
header .button-group a,
header .button-group span {
  font-size: 3rem;
  color: #363636;
}
header .button-group img {
  height: 3rem;
}
header .button-group #donate-button-container {
  margin-top: 0.45rem;
}
main {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.highlighted-photos {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: center;
  align-self: stretch;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .highlighted-photos .photo:nth-of-type(4) {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .highlighted-photos .photo:nth-of-type(3) {
    display: none;
  }
}
.photo {
  display: block;
  width: 15%;
  max-width: 22rem;
  min-width: 12rem;
  aspect-ratio: 6/4;
  border-radius: 8px;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.35);
  transition: all 1.2s ease-in-out;
  margin: 0.6rem 1.2rem;
  overflow: hidden;
  cursor: pointer;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 1s ease-in-out;
}
.photo:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 1s ease-in-out;
}
.photo:hover img {
  transform: scale(1.2);
  transition: all 0.6s ease-in-out;
}
.photo-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  width: 80%;
}
.photo-list .photo {
  margin: 1.2rem;
  min-width: 16rem;
}
.button {
  display: block;
  background: radial-gradient(rgba(102, 102, 102, 0.34), rgba(0, 0, 0, 0.32));
  background-size: 26rem 26rem;
  background-position: 30% 10%;
  border: solid 0.6px #00FFE0;
  border-radius: 1000px;
  color: #FFFFFF;
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
  text-decoration: none;
  margin-top: 1rem;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.button.small {
  padding: 0.4rem 1rem !important;
  font-size: 1rem;
}
.button:hover {
  box-shadow: 4px 4px 10px rgba(0, 255, 224, 0.3);
  transition: all 0.2s ease-in-out;
}
.category {
  width: 16rem;
  height: 16rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
  margin: 1.2rem;
  position: relative;
  cursor: pointer;
  transition: all 2s ease-in-out;
}
.category-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
  align-self: stretch;
  width: 80%;
  margin: auto;
  margin-bottom: 4rem;
}
.category-images.image-count-1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.category-images.image-count-2 img {
  height: 50%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.category-images.image-count-3 img {
  height: 50%;
  width: 50%;
  object-fit: cover;
  object-position: center;
}
.category-images.image-count-3 img:last-of-type {
  width: 100%;
}
.category-images.image-count-4 img {
  height: 50%;
  width: 50%;
  object-fit: cover;
  object-position: center;
}
.category-overblur {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.2);
  transition: all 1.8s ease-in-out;
}
.category-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 200;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  opacity: 0.8;
}
.category:hover {
  transition: all 0.8s ease-in-out;
  box-shadow: 2px 2px 30px rgba(0, 255, 224, 0.2);
}
.category:hover .category-overblur {
  transition: all 0.6s ease-in-out;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
}
.spacer {
  display: block;
  height: 3rem;
}
.photo-viewer {
  display: none;
  flex-flow: column nowrap;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  padding: 4rem 8rem;
  color: #FFFFFF;
}
.photo-viewer-close {
  position: fixed;
  top: 1.6rem;
  right: 1.8rem;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 3rem;
  padding: 0;
  margin: 0;
  color: #FFFFFF;
  background: none;
  border: none;
}
.photo-viewer-close span {
  font-size: 3rem;
}
.photo-viewer-header {
  margin-bottom: 1rem;
  text-align: center;
}
.photo-viewer-title {
  font-size: 3.4rem;
  font-weight: 200;
  margin: 0;
  margin-bottom: 0.4rem;
  display: block;
}
.photo-viewer-meta {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.photo-viewer-meta span {
  font-size: 1.1rem;
  color: #7D7D7D;
  margin: 0 0.6rem;
  font-weight: 500;
}
.photo-viewer-body {
  display: flex;
  flex-flow: row nowrap;
  height: calc(100% - 5rem);
}
.photo-viewer-image {
  flex-grow: 1;
  display: grid;
  place-items: center;
  height: 100%;
}
.photo-viewer-image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.25);
}
.photo-viewer-menu {
  width: 25%;
  max-width: 36rem;
  margin-left: 2rem;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  flex-shrink: 0;
  padding: 0.2rem 0;
  box-sizing: border-box;
}
.photo-viewer-controls {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  border: solid 1px #00FFE0;
  background: rgba(57, 57, 57, 0.19);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
}
.photo-viewer-controls button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  margin-top: 0.25rem;
  cursor: pointer;
}
.photo-viewer-controls button span {
  font-size: 2rem;
  color: #FFFFFF;
}
.photo-viewer-controls div {
  margin-top: 0.25rem;
}
.photo-viewer-controls div button {
  margin: 0 0.4rem;
}
.photo-viewer-download {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  border: solid 1px #7D7D7D;
  background: rgba(57, 57, 57, 0.19);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
}
.photo-viewer-download button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  margin-top: 0.25rem;
  cursor: pointer;
}
.photo-viewer-download button span {
  margin-top: -0.2rem;
  font-size: 2rem;
  color: #FFFFFF;
}
.photo-viewer-download span {
  font-size: 1.4rem;
  display: block;
  margin-top: 0.25rem;
}
.photo-viewer-download .photo-viewer-copyright {
  margin-top: 0;
  color: #a1a1a1;
  font-size: 2rem;
}
.photo-viewer-next {
  text-align: center;
}
.photo-viewer-next span {
  color: #7D7D7D;
  font-size: 1.2rem;
  margin-top: 10%;
  display: block;
  margin-bottom: 0.2rem;
}
.photo-viewer-next img {
  max-width: 80%;
  max-height: 20rem;
  display: block;
  margin: auto;
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}
.photo-viewer.bright {
  background: rgba(255, 255, 255, 0.45);
}
.photo-viewer.bright .photo-viewer-copyright {
  margin-top: 0;
  color: #bababa;
  font-size: 2rem;
}
.photo-viewer.bright .photo-viewer-meta span {
  color: #B7B5B5;
}
.photo-viewer.bright .photo-viewer-next span {
  color: #B7B5B5;
}
@media screen and (max-width: 1200px) {
  .photo-viewer {
    padding: 2rem 2rem;
  }
  .photo-viewer-body button span {
    font-size: 1.4rem;
  }
  .photo-viewer-download span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 880px) {
  .photo-viewer-body {
    flex-flow: column nowrap;
    height: calc(100% - 15rem);
  }
  .photo-viewer-menu {
    height: 25%;
    max-height: 36rem;
    width: 100%;
    margin-top: 2rem;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-evenly;
    padding: 0;
    margin-left: 0;
    align-self: center;
  }
  .photo-viewer-controls,
  .photo-viewer-download {
    width: 50%;
    margin: 0 0.4rem;
  }
  .photo-viewer-next {
    display: none;
  }
}
@media screen and (max-width: 660px) {
  header {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding: 2.6rem 2rem;
    padding-bottom: 0.8rem;
  }
  header h1 {
    font-size: 3rem;
    line-height: 3rem;
    order: 0;
    width: 100%;
  }
  header h1 span {
    font-size: 1.6rem !important;
  }
  header .button-group {
    order: 1;
    width: 40%;
    height: 3rem;
    justify-content: space-around;
    align-items: center;
    margin-top: 0.4rem;
  }
  header .button-group:nth-of-type(2) {
    justify-content: space-around;
  }
  header .button-group a,
  header .button-group img {
    margin: 0 0.5rem;
  }
  header .button-group a,
  header .button-group span {
    font-size: 2.6rem;
    color: #363636;
  }
  header .button-group img {
    height: 2.6rem;
  }
  .highlighted-photos {
    flex-flow: column nowrap;
  }
  .highlighted-photos .photo {
    width: 70%;
  }
}
@media screen and (max-width: 460px) {
  .photo-viewer-body {
    flex-flow: column nowrap;
    flex-grow: 0;
    max-height: 50vh;
    flex-shrink: 0;
  }
  .photo-viewer-menu {
    flex-grow: 1;
    width: 100%;
    margin-top: 2rem;
    flex-flow: column nowrap;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    margin-left: 0;
    align-self: center;
  }
  .photo-viewer-controls,
  .photo-viewer-download {
    width: 100%;
    margin: 0;
    margin-bottom: 1rem;
    box-sizing: border-box;
  }
  .photo-viewer-next {
    display: block;
  }
  .photo-viewer-next span {
    margin-top: 0;
  }
}
.photocode-infobox {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 1rem;
}
.photocode-infobox strong {
  font-size: 1.2rem;
  display: block;
}
.warning {
  display: block;
  border: solid 1px #ff8300;
  color: #ff8300;
  background: rgba(255, 131, 0, 0.1);
  font-size: 1.1rem;
  padding: 1rem 3rem;
  text-align: center;
}
.warning.info {
  border: solid 1px #af6bfc;
  color: #af6bfc;
  background: rgba(175, 107, 252, 0.1);
}
.warning.success {
  border: solid 1px #80c500;
  color: #80c500;
  background: rgba(128, 197, 0, 0.1);
}
.shooting-view {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding-top: 0;
  padding: 2rem;
  box-sizing: border-box;
  color: #FFFFFF;
}
.shooting-view-left {
  width: calc(50% - 0.5rem);
}
.shooting-view-right {
  width: calc(50% - 0.5rem);
}
.shooting-view a {
  color: #00FFE0;
}
.shooting-view .business-cards {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.shooting-view .business-card {
  display: flex;
  flex-flow: column nowrap;
  background: #1f1f1f;
  padding: 1rem;
  box-sizing: border-box;
  width: 49%;
}
.shooting-view .business-card strong {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.shooting-view .business-card .name {
  font-weight: 500;
}
.shooting-view .business-card small {
  font-style: italic;
  margin-bottom: 0.3rem;
  display: inline-block;
}
.shooting-view .business-card small.notice {
  margin-top: 0.3rem;
}
.shooting-view .info-card {
  display: flex;
  flex-flow: column nowrap;
  background: #1f1f1f;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0.5rem 0;
}
.shooting-view .info-card strong {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.shooting-view .info-card small {
  font-style: italic;
  margin-bottom: 0.3rem;
  display: inline-block;
}
.shooting-view .info-card small.notice {
  margin-top: 0.3rem;
}
.shooting-view .button {
  width: fit-content;
  justify-self: center;
  align-self: center;
  text-align: center;
  margin: auto;
  margin-top: 0.5rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
.shooting-view .photo-list {
  width: 100%;
}
input:not([type="checkbox"],[type="radio"]),
select:not([type="checkbox"],[type="radio"]),
textarea:not([type="checkbox"],[type="radio"]) {
  border: none;
  border-bottom: solid 1px #0C0C0C;
  background: #272727;
  color: #FFFFFF;
  padding: 0.3rem 0.6rem;
  width: 100%;
  box-sizing: border-box;
}
input:not([type="checkbox"],[type="radio"]):active,
select:not([type="checkbox"],[type="radio"]):active,
textarea:not([type="checkbox"],[type="radio"]):active,
input:not([type="checkbox"],[type="radio"]):focus,
select:not([type="checkbox"],[type="radio"]):focus,
textarea:not([type="checkbox"],[type="radio"]):focus {
  outline: 0;
  border-bottom: solid 1px #00FFE0;
}
input[type="checkbox"],
select[type="checkbox"],
textarea[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  margin: 0 5px 3px 0;
  position: static;
  z-index: auto;
  flex-shrink: 0;
  background-color: #0C0C0C;
}
input[type="checkbox"]:disabled,
select[type="checkbox"]:disabled,
textarea[type="checkbox"]:disabled {
  background-image: url("/public/assets/no.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #1f1f1f;
  cursor: not-allowed;
}
input[type="checkbox"]:checked,
select[type="checkbox"]:checked,
textarea[type="checkbox"]:checked {
  background-image: url("/public/assets/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
input[type="checkbox"] + label::before,
select[type="checkbox"] + label::before,
textarea[type="checkbox"] + label::before {
  position: relative;
  padding-left: 0;
  display: flex;
  align-items: center;
  background-color: #0C0C0C;
}
input[type="checkbox"] + label::before::before,
select[type="checkbox"] + label::before::before,
textarea[type="checkbox"] + label::before::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #0C0C0C;
  margin-right: 5px;
  flex-shrink: 0;
}
input[type="radio"],
select[type="radio"],
textarea[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #0C0C0C;
  border-radius: 50%;
  background-color: #272727;
  position: relative;
  margin: 0 0 5px 0;
  cursor: pointer;
  vertical-align: middle;
}
input[type="radio"]:checked::before,
select[type="radio"]:checked::before,
textarea[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #00FFE0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
input[type="radio"]:disabled,
select[type="radio"]:disabled,
textarea[type="radio"]:disabled {
  border-color: #050505;
  background-color: #2c2c2c;
  cursor: not-allowed;
}
input[type="radio"]:disabled::before,
select[type="radio"]:disabled::before,
textarea[type="radio"]:disabled::before {
  background-color: rgba(0, 255, 224, 0.4);
}
input[type="radio"] + label,
select[type="radio"] + label,
textarea[type="radio"] + label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 1rem;
  user-select: none;
  color: #FFFFFF;
}
input[type="radio"] + label:disabled,
select[type="radio"] + label:disabled,
textarea[type="radio"] + label:disabled {
  cursor: not-allowed;
  color: #ffffff;
}
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.radio-group {
  margin-bottom: 0.3rem;
}
.radio-group-inner {
  display: block;
  margin: 0.2rem 0;
}
@media screen and (max-width: 1100px) {
  .shooting-view-left {
    width: 100%;
  }
  .shooting-view-right {
    width: 100%;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 700px) {
  .shooting-view .business-cards {
    flex-flow: column nowrap;
    justify-content: space-between;
  }
  .shooting-view .business-card {
    width: 100%;
    margin-top: 0.5rem;
  }
}
