.icon-button {
  cursor: pointer;
  border: none;
  font: inherit;
  padding: 0.5rem;
  margin: -0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  font-weight: 700;
  color: var(--color-accent);
}

button[disabled] {
  pointer-events: none;
}

.button {
  font: inherit;
  cursor: pointer;
  font-weight: 700;
  min-height: 3rem;
  padding: 0.5rem 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-accent);
  color: #fff;
  border: none;
}
.button[disabled] {
  background: var(--color-lighter-gray);
  color: var(--color-light-gray);
}
.button--transparent {
  background: transparent !important;
  color: var(--color-accent);
}
.button--full {
  width: 100%;
  display: flex;
}

.login-button-wrap {
  display: flex;
  justify-content: flex-end;
}
.login-dialog legend {
  margin-bottom: 1.5rem;
}
.login-dialog :where(p) {
  margin-bottom: 1.5rem;
}
.login-dialog-title {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.login-dialog-main {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-light-gray);
}

input {
  font: inherit;
}

input[disabled],
select[disabled],
textarea[disabled] {
  opacity: 0.75;
  pointer-events: none;
}

input[type=text],
input[type=email],
input[type=password],
select {
  border: 1px solid var(--color-light-gray);
  height: 3rem;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
select:focus {
  border-color: var(--color-accent);
}

input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}

input[type=file] {
  background-image: url(/typo3conf/ext/c3property_directory/Resources/Public/Assets/Icons/add.svg);
  background-size: 1.5rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  cursor: pointer;
}
input[type=file]::file-selector-button {
  width: 0;
  height: 100%;
  border: none;
  opacity: 0;
  padding: 0;
  margin: 0;
}

fieldset {
  display: grid;
  gap: 0.5rem;
}
fieldset + fieldset {
  margin-top: 1.5rem;
}

legend {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
}

label {
  display: flex;
  margin-bottom: 0.5rem;
  line-height: 1.625;
  font-size: 1rem;
}

textarea {
  display: block;
}

select {
  background-image: url(/typo3conf/ext/c3property_directory/Resources/Public/Assets/Icons/down.svg);
  background-size: 1.5rem;
}

.form-check {
  display: flex;
  cursor: pointer;
  margin-bottom: 0;
}
.form-check span {
  margin-top: 0.0625rem;
  font-size: 0.875rem;
}
.form-check a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.form--default {
  max-width: 30rem;
}
.form-field.hidden {
  display: none;
}
.form-field-caption {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
}
.form-field-files {
  margin-top: 0.5rem;
}
.form-field-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-light-gray);
}
.form-field-file-body {
  display: flex;
  gap: 1rem;
  align-items: center;
  line-height: 1.5;
  min-width: 0;
}
.form-field-file-body img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
}
.form-field-file-body span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.form-field-file-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.form-field-file-buttons button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.form-field-file-buttons img {
  pointer-events: none;
}
.form-field-file-move {
  cursor: move !important;
}
@media (pointer: coarse) {
  .form-field-file-move {
    display: none;
  }
}
@media (pointer: fine) {
  .form-field-file-up, .form-field-file-down {
    display: none;
  }
}
.form-field-file-up {
  transform: rotate(180deg);
}
.form-field .error {
  font-size: 12px;
  color: red;
  margin: 2px 0;
}

.c3users-field ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
}
.c3users-field ul li {
  padding: 0;
}
.c3users-edit {
  max-width: 31.75rem;
  width: 100%;
  margin: auto;
  display: grid;
  gap: 1.5rem;
}
.c3users-edit-row {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-light-gray);
}
.c3users-edit-row-label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.c3users-edit-row-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.c3users-edit-row-current {
  opacity: 0.6;
  word-break: break-word;
  line-height: 1.556;
}
.c3users-edit-dialog legend {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--color-accent);
}
.c3users-edit-verification {
  max-width: 31.75rem;
  width: 100%;
  margin: auto;
}
.c3users-edit-verification h2 {
  margin-bottom: 2rem;
}

.logout-container {
  max-width: 31.75rem;
  width: 100%;
  margin: auto;
}

.c3pd-form fieldset {
  display: grid;
  gap: 1.5rem;
}
.c3pd-form-columns {
  gap: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "form above" "form below" "form ." "below2 .";
  grid-auto-flow: row dense;
}
@media (max-width: 990px) {
  .c3pd-form-columns {
    grid-template-columns: 1fr;
    grid-template-areas: "above" "form" "below" "below2";
    gap: 4rem;
  }
}

.c3pd-disclaimer {
  margin-top: 4rem;
  font-size: 1rem;
}

.c3pd-edit-actions {
  max-width: 31.75rem;
  margin-left: auto;
  display: grid;
  gap: 0.5rem;
  width: 100%;
  align-content: start;
}
@media (max-width: 990px) {
  .c3pd-edit-actions {
    max-width: 100%;
    margin-left: 0;
  }
}
.c3pd-edit-actions hr {
  margin: 4rem 0;
  border-color: var(--color-light-gray);
}
.c3pd-edit-delete {
  color: var(--color-red);
}
.c3pd-edit-form fieldset + fieldset {
  margin-top: 4rem;
}

.c3pd-new {
  font-size: 1rem;
}
.c3pd-new-release-progress {
  grid-area: above;
}
.c3pd-new-release-progress p, .c3pd-new-release-progress-bottom p {
  margin-top: 1.5rem;
}
.c3pd-new-release-progress h2 {
  margin-bottom: 2rem;
}
@media (max-width: 990px) {
  .c3pd-new-release-progress h2 {
    display: none;
  }
}
.c3pd-new-release-progress-bottom {
  grid-area: below2;
}
.c3pd-new-release-progress, .c3pd-new-submit {
  max-width: 31.75rem;
  margin-left: auto;
}
@media (max-width: 990px) {
  .c3pd-new-release-progress, .c3pd-new-submit {
    max-width: 100%;
    margin-left: 0;
  }
}
.c3pd-new-form {
  grid-area: form;
}
.c3pd-new-form fieldset + fieldset {
  margin-top: 4rem;
}
.c3pd-new-submit {
  grid-area: below;
  position: sticky;
  top: 120px;
}
.c3pd-new-success .c3pd-release-progress {
  margin: 2rem 0;
}

.c3pd-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--layout-grid-gap);
}
@media (max-width: 1100px) {
  .c3pd-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .c3pd-overview {
    grid-template-columns: 1fr;
  }
}
body .c3pd-overview {
  margin: auto !important;
}
.c3pd-overview--new {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 30rem;
}
@media (max-width: 600px) {
  .c3pd-overview--new {
    border: none !important;
    aspect-ratio: auto;
    padding: 0 !important;
    min-height: 0;
  }
}
.c3pd-overview--new .button {
  width: auto;
  padding-inline: 2rem;
}
@media (max-width: 600px) {
  .c3pd-overview--new .button {
    width: 100%;
  }
}
.c3pd-overview-edit p {
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  font-size: 0.875rem;
}
.c3pd-overview-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-light-gray);
  font-size: 1rem;
  align-items: center;
}
.c3pd-overview-footer p {
  margin: 0;
}
.c3pd-overview-footer button {
  font: inherit;
  line-height: inherit;
  color: var(--color-accent);
  font-weight: 700;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.c3pd-overview-footer button[disabled] {
  color: var(--color-light-gray);
}
.c3pd-overview-empty-archive {
  grid-column: 1/-1;
  text-align: center;
}

.c3pd-filter {
  margin-bottom: 2rem;
}
.c3pd-filter-item label {
  font-size: 1rem;
}

.c3pd-filter,
.c3pd-properties-list {
  display: grid;
  gap: var(--layout-grid-gap);
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1300px) {
  .c3pd-filter,
  .c3pd-properties-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 990px) {
  .c3pd-filter,
  .c3pd-properties-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .c3pd-filter,
  .c3pd-properties-list {
    grid-template-columns: 1fr;
  }
}

.c3pd-properties-list {
  list-style: none;
  padding: 0;
}
.c3pd-properties-count {
  font-weight: 700;
  margin-bottom: 2rem;
}

.c3pd-property-tile {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  background: #fff;
}
.c3pd-property-tile[hidden] {
  display: none;
}
.c3pd-property-tile-logo {
  margin-bottom: 1.5rem;
}
.c3pd-property-tile-logo img {
  width: 100%;
  aspect-ratio: 334/210;
  object-fit: cover;
}
.c3pd-property-tile-title {
  margin-bottom: 0.5rem;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.125rem;
}
.c3pd-property-tile-description {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  flex-grow: 1;
  line-height: 1.625;
}

.c3pd-property-header {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  gap: var(--layout-grid-gap);
  grid-template-areas: "header empty images";
}
@media (max-width: 768px) {
  .c3pd-property-header {
    grid-template-columns: 1fr;
    grid-template-areas: "images" "header";
    gap: 4rem;
  }
}
.c3pd-property-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  margin: 0;
}
.c3pd-property-list li, .c3pd-property-list a {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.c3pd-property-list img {
  flex-shrink: 0;
  width: 1.5rem;
}
.c3pd-property-images {
  grid-area: images;
}
.c3pd-property-images-main {
  margin-bottom: 1rem;
}
.c3pd-property-images-items {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .c3pd-property-images-items {
    padding: 0 var(--layout-content-padding);
    margin: 0 calc(var(--layout-content-padding) * -1);
    overflow-x: auto;
    scroll-padding-inline: var(--layout-content-padding);
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
  }
}
.c3pd-property-images-items button {
  flex-shrink: 0;
  scroll-snap-align: start;
}
.c3pd-property-images-item {
  padding: 0.1875rem;
  border: 0.0625rem solid var(--color-light-gray);
  background: transparent;
  margin: 0;
  cursor: pointer;
  border-radius: 0;
}
.c3pd-property-images-item--active {
  border-color: var(--color-accent);
}
.c3pd-property-title {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .c3pd-property-title {
    margin-bottom: 2rem;
  }
}
.c3pd-property-content {
  display: grid;
  grid-template-columns: 6fr 2fr 4fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "texts none info" "texts none downloads";
  gap: var(--layout-grid-gap);
  row-gap: 0;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .c3pd-property-content {
    grid-template-columns: 1fr;
    gap: 0;
    grid-template-areas: "info" "texts" "downloads";
  }
}
.c3pd-property-content-item:not(:last-child) {
  margin-bottom: 4rem;
}
.c3pd-property-content-item h2 {
  font-size: 1.125rem;
  color: var(--color-accent);
  line-height: 1.556;
  margin-bottom: 1rem;
}
.c3pd-property-content-item--info {
  grid-area: info;
}
@media (max-width: 768px) {
  .c3pd-property-content-item--info {
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-light-gray);
  }
}
.c3pd-property-content-item--downloads {
  grid-area: downloads;
}
.c3pd-property-content-texts {
  grid-area: texts;
}
@media (max-width: 768px) {
  .c3pd-property-content-texts {
    margin-bottom: 4rem;
  }
}
.c3pd-property-description {
  margin-bottom: 0;
}
.c3pd-property-map .c3pd-map-marker {
  border-width: 0.25rem;
}
@media (max-width: 768px) {
  .c3pd-property-map-route {
    width: 100%;
  }
}
.c3pd-property-report {
  font-size: 0.875rem;
}
.c3pd-property-report button {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  font-weight: 700;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.c3pd-property-report-dialog--reported .c3pd-property-report-form {
  display: none;
}
.c3pd-property-report-dialog--reported .c3pd-property-report-success {
  display: block;
}
.c3pd-property-report-form legend {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}
.c3pd-property-report-form p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.c3pd-property-report-form textarea {
  min-height: 11.5rem;
}
.c3pd-property-report-success {
  display: none;
}
.c3pd-property hr {
  margin: 4rem 0;
  border-color: var(--color-light-gray);
}

.c3pd-map {
  text-align: center;
}
.c3pd-map-consent {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c3pd-map-consent div {
  max-width: 32rem;
  padding: 1rem;
}
.c3pd-map-viewport {
  height: 37.5rem;
  background: var(--color-lighter-gray);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .c3pd-map-viewport {
    margin-left: calc(var(--layout-content-padding) * -1);
    width: calc(100% + var(--layout-content-padding) * 2);
  }
}
.c3pd-map-marker {
  border-radius: 1000px;
  border: 0.125rem solid var(--color-accent);
  background: #fff;
  display: flex !important;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 3px 12px rgba(73, 75, 77, 0.3);
  transform: translateY(25%);
}
.c3pd-map-marker::before {
  content: "";
  width: 62%;
  height: 62%;
  background: var(--color-accent);
  border-radius: 1000px;
}
.c3pd-map-info {
  font-family: Lato, sans-serif;
  text-align: left;
}
.c3pd-map-info-image {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.c3pd-map-info-title {
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
  font-size: 1.125rem;
  color: var(--color-accent);
  font-weight: 700;
}
.c3pd-map-info-description {
  font-size: 0.875rem;
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
}
.c3pd-map-info-button {
  font-size: 1.125rem;
}
.c3pd-map .leaflet-popup-close-button {
  display: none;
}
.c3pd-map .leaflet-popup-content {
  margin: 0;
  padding: 1.5rem 0.5rem;
  width: 16rem;
}
.c3pd-map .leaflet-popup-content-wrapper {
  border-radius: 0;
  box-shadow: 2px 3px 12px rgba(73, 75, 77, 0.3);
  color: var(--color-text);
}
.c3pd-map .leaflet-popup a {
  color: #fff;
}
.c3pd-map .leaflet-pane {
  z-index: 0;
}

.c3pd-search {
  display: flex;
  max-width: 48.625rem;
  margin: auto auto 2rem;
}
.c3pd-search input {
  height: 3rem;
}
.c3pd-search button {
  border: none;
  cursor: pointer;
  background: var(--color-accent);
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.c3pd-release-progress {
  --step-width: 6.625rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.c3pd-release-progress--state-draft .c3pd-release-progress-line::before {
  width: 50%;
}
.c3pd-release-progress--state-published .c3pd-release-progress-line::before {
  width: 100%;
}
.c3pd-release-progress-line {
  position: absolute;
  height: 3px;
  background: var(--color-light-gray);
  top: 0.65rem;
  left: calc(var(--step-width) / 2);
  right: calc(var(--step-width) / 2);
}
.c3pd-release-progress-line::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-accent);
}
.c3pd-release-progress-step {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  width: var(--step-width);
  text-align: center;
  position: relative;
  z-index: 1;
}
.c3pd-release-progress-step::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1000px;
  border: 3px solid var(--color-light-gray);
  box-sizing: border-box;
  margin: auto auto 0.25rem;
  box-shadow: var(--shadow-default);
  background: #fff;
}
.c3pd-release-progress-step--active {
  color: var(--color-accent);
}
.c3pd-release-progress-step--active::before {
  border-color: var(--color-accent);
}

@keyframes dialog-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes dialog-backdrop-in {
  to {
    opacity: 1;
  }
}
.dialog {
  box-shadow: var(--shadow-default);
  padding: 1.5rem;
  border: none;
  width: 48.625rem;
  max-width: calc(100% - 3rem);
  margin-top: 3rem;
  transform: translateY(2rem);
  opacity: 0;
  animation: dialog-in 0.3s forwards;
}
.dialog::backdrop {
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: dialog-backdrop-in 0.3s forwards;
}
.dialog-close-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

@keyframes sending-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-open {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.loading-open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}

.c3pd-loading {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  z-index: 5001;
}
.c3pd-loading .loader {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  animation: sending-rotation 1s linear infinite;
  border: 0.313rem solid #FFFFFF;
  border-bottom-color: transparent;
  border-radius: 50%;
}

:root {
  --color-light-gray: #DCDEE2;
  --color-lighter-gray: #F5F6F8;
  --color-red: #C11534;
  --shadow-default: 2px 3px 12px rgba(220, 222, 226, .8);
  --layout-spacing-multiplier-mobile: 1;
  --layout-spacing-multiplier-tablet: 1;
}

.headline {
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.back-link {
  margin-bottom: 2rem;
}

.typo3-messages {
  list-style: none;
  display: grid;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.875rem;
}
.typo3-messages li {
  padding-left: 0;
  margin: 0;
}

.card {
  padding: 1.5rem;
  box-shadow: var(--shadow-default);
}
.card--border {
  border: 2px solid var(--color-accent);
}

.link-tabs {
  margin-bottom: 4rem;
}

@media (max-width: 600px) {
  #c2718 .row > div:first-child {
    order: 2;
  }
}

/*# sourceMappingURL=main.css.map */
