/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
/* @import url(../../template-parts/assets/fontawesome-pro/all.min.css); */


.wetterblock {
  text-align: center;
}

.wetterblock .wetter-icon i {
  font-size: 25rem !important;
  color: white;
  position: absolute;
  transform: translate(-70%, 0);
}
.wetterblock .wetter-text {
  text-align: right;
  right: 20rem;
  position: relative;
  top: 25rem;
  margin-bottom: 4rem;
}

.wetterblock .wetter-text h3 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-block-end: 0;
}

.wetterblock .wetter-text p {
  font-size: 1.5rem;
}

.button--atlas {
  /* font-family: signo, sans-serif; */
  font-weight: 500;
  font-size: 1.5rem !important;
  display: flex !important;
  margin: 0 auto !important;
  max-width: fit-content !important;
  border: 2px solid white !important;
}

.button--atlas:hover {
  background-color: #3858e9 !important;
}

.button--atlas > span {
  display: inline-block;
}

.button--atlas:hover > span {
  opacity: 0;
}

.marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  --offset: 1rem;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 2s linear infinite;
  animation-play-state: paused;
  opacity: 0;
}

.button--atlas:hover .marquee__inner {
  animation-play-state: running;
  opacity: 1;
  transition-duration: 0.7s;
}

.marquee span {
  text-align: center;
  white-space: nowrap;
  font-style: italic;
  padding: 0.3rem 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }

  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}

/* JUST FOR STUFF */

#vorname {
  width: 7ch;
  min-width: 7ch;
}

#nachname {
  width: 8ch;
  min-width: 8ch;
}

#email {
  width: 6ch;
  min-width: 6ch;
}

#telefon {
  width: 7ch;
  min-width: 7ch;
}

#wsrn-form {
  line-height: 2;
}

.myinput {
  -webkit-appearance: none;
  appearance: none;
  width: auto;
  height: auto;
  font-family: inherit;
  font-size: var(--form-font-size, 16px);
  font-weight: regular;
  color: rgba(0,0,0,0.5);
  padding: 0.25rem;
  display: inline;
  border-width: var(--form-field-border-width, 1px);
  border-style: var(--form-field-border-style, solid);
  border-color: var(--form-field-border-initial-color);
  border-radius: var(--has-classic-forms, var(--form-field-border-radius, 3px));
  background-color: var(--has-classic-forms, var(--form-field-initial-background));
  transition: all 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  cursor: text;
}

.myinput:focus-visible {
  outline: none;
  color: var(--form-text-focus-color, var(--color));
  border-color: var(--form-field-border-focus-color);
  background-color: var(--has-classic-forms, var(--form-field-focus-background));
}

.myinput:empty:before {
  content: attr(data-placeholder);
}

#contact-form-submit {
  margin-top: 2rem;
}

@media screen and (max-width: 920px) {
  .rev-col {
    flex-direction: column-reverse;
  }

  .cust-head {
    font-size: 4rem !important;
  }
}

@media screen and (min-width: 921px) {
  .cust-head {
    font-size: 6rem;
  }
}



.check::before {
  display: block;
  content: ' ';
  background-image: url('/wp-content/themes/blocksy-child/template-parts/icons/check-solid.svg');
  background-size: 28px 28px;
  height: 28px;
  width: 28px;
  margin-right: 8px;
}

.archive .ct-title-label {
  display: none !important;
}

.wsrn-border {
  border: 4px solid #3858e9;
}

.error404 #main {
  background-image: url('/wp-content/themes/blocksy-child/template-parts/assets/wsrn404.gif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.error404 .ct-no-results {
  margin-top: 14rem;
  margin-bottom: 12rem;
}

.error404 .ct-no-results .page-title,
.error404 .ct-no-results .page-description,
.error404 .ct-no-results .search-form input {
  color: white !important;
}

.error404 .ct-no-results .search-submit svg {
  fill: white;
}