.page-template-template-page-giveaway-php .grecaptcha-badge {
  display: none !important;
}
.page-template-template-page-giveaway-php .sib_loader img {
  display: none !important;
}
.page-template-template-page-giveaway-php .sib_msg_disp {
  padding: 0 40px;
}
.page-template-template-page-giveaway-php .sib_msg_disp .sib-alert-message {
  padding: 10px;
  border-width: 2px;
  font-weight: 700;
  text-align: center;
}
.page-template-template-page-giveaway-php .sib_msg_disp .sib-alert-message.sib-alert-message-success {
  background-color: #44bd32 !important;
  border-color: #4cd137 !important;
  color: #009432 !important;
}
.page-template-template-page-giveaway-php .sib_msg_disp .sib-alert-message.sib-alert-message-warning {
  background-color: #FFC312 !important;
  border-color: #F79F1F !important;
  color: #F79F1F !important;
}

.giveaway-teaser {
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, #ffc107, #e85c27, #ffa918, #ea4e22);
  background-size: 200% 200%;
  animation: Gradient 30s ease infinite;
  position: relative;
}
.giveaway-teaser * {
  font-family: "Lato", sans-serif;
  text-align: center;
  margin: 0;
}
.giveaway-teaser h1 {
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  font-size: 4vw;
}
.giveaway-teaser .seperator {
  font-size: 1vw;
  font-weight: 400;
  color: #ffffff;
  margin: 0.5vw 0 0 0;
}
.giveaway-teaser .countdown {
  font-size: 3vw;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}
.giveaway-teaser .title {
  width: 100%;
}
.giveaway-teaser .info-card {
  max-width: 700px;
  width: 100%;
  border: 2px solid #ffffff;
  background: rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 10px;
  position: absolute;
  bottom: 1.5vw;
}
.giveaway-teaser .info-card h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}
.giveaway-teaser .info-card p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  font-size: 18px;
}

@keyframes Gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
.giveaway-page {
  position: relative;
  background: #003063;
}
.giveaway-page .giveaway-page-content {
  position: relative;
  z-index: 2;
}

.giveaway-header {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 51%;
  background-image: url("../img/vkf2021/spezi_vkf_2021_background_swirl.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.giveaway-header .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.giveaway-header .title #spezi-giveaway-countdown {
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 50px;
}
.giveaway-header .title #spezi-giveaway-countdown i {
  margin-right: 25px;
}
.giveaway-header .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 159, 227, 0.5);
}
.giveaway-header .giveaway-logo {
  width: 30vw;
}
.giveaway-header .particle {
  position: absolute;
  z-index: 2;
}
.giveaway-header .particle.particle-cube {
  width: 10vw;
  top: 6vw;
  left: 21vw;
  transform: rotate(3deg);
  animation-name: particle-cube;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.giveaway-header .particle.particle-cooler {
  width: 14vw;
  bottom: 9vw;
  right: 8vw;
  transform: rotate(10deg);
  animation-name: particle-cooler;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 2s;
}
.giveaway-header .particle.particle-fridge {
  width: 14vw;
  bottom: 8vw;
  left: 7vw;
  transform: rotate(3deg);
  animation-name: particle-fridge;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.giveaway-header .particle.particle-kissen {
  width: 12vw;
  top: 5vw;
  right: 18vw;
  transform: rotate(-5deg);
  animation-name: particle-kissen;
  animation-delay: 1s;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes particle-fridge {
  0% {
    transform: translateY(0) rotate(-5deg);
  }
  25% {
    transform: translateY(10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-10px) rotate(-5deg);
  }
  100% {
    transform: translateY(0) rotate(-5deg);
  }
}
@keyframes particle-kissen {
  0% {
    transform: translateY(0) rotate(-5deg);
  }
  25% {
    transform: translateY(5px) rotate(-6deg);
  }
  75% {
    transform: translateY(-5px) rotate(-4deg);
  }
  100% {
    transform: translateY(0) rotate(-5deg);
  }
}
@keyframes particle-cooler {
  0% {
    transform: translateY(0) rotate(10deg);
  }
  25% {
    transform: translateY(10px) rotate(10deg);
  }
  75% {
    transform: translateY(-10px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(10deg);
  }
}
@keyframes particle-cube {
  0% {
    transform: translateY(0) rotate(3deg);
  }
  25% {
    transform: translateY(5px) rotate(3deg);
  }
  75% {
    transform: translateY(-5px) rotate(3deg);
  }
  100% {
    transform: translateY(0) rotate(3deg);
  }
}
.section-giveaway-intro .content {
  margin-top: -5vw;
  z-index: 1;
  position: relative;
  background-color: #00173a;
  border-radius: 25px;
  padding: 60px;
}
.section-giveaway-intro .headline-h2 {
  text-align: center;
  margin-bottom: 30px;
}
.section-giveaway-intro .headline-h2 strong {
  font-weight: 700;
  color: #ffaa00;
}
.section-giveaway-intro .text {
  text-align: center;
  margin-bottom: 35px;
  font-size: 20px;
}

.section-giveaway-video {
  margin-top: 250px;
}
.section-giveaway-video .give-away-video-container {
  position: relative;
  z-index: 1;
}
.section-giveaway-video .give-away-video-box {
  display: block;
  width: 100%;
  background: #00173a;
  border-radius: 40px;
  position: relative;
}
.section-giveaway-video .give-away-video-box:before {
  display: block;
  content: " ";
  position: absolute;
  z-index: -1;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(90deg, #ffaa00 0%, #e4580f 100%);
  border-radius: 44px;
}
.section-giveaway-video .give-away-video {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 41px;
  overflow: hidden;
}
.section-giveaway-video .give-away-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.section-giveway-gameteaser {
  margin-top: 250px;
}
.section-giveway-gameteaser .headline-h2 {
  text-align: center;
  margin: 30px 0 20px 0;
}
.section-giveway-gameteaser .text {
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
}
.section-giveway-gameteaser .ctas {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.section-giveway-gameteaser .ctas .cta-img {
  height: 90px;
}
.section-giveway-gameteaser .ctas .cta-img a {
  display: block;
  height: 100%;
}
.section-giveway-gameteaser .ctas .cta-img a img {
  width: auto;
  height: 100%;
}

.section-giveaway-price {
  padding: 0;
  margin-top: 250px;
}
.section-giveaway-price .subtitle {
  text-align: center;
}
.section-giveaway-price .headline-h1 {
  text-align: center;
  margin-bottom: 50px;
}

.giveaway-price {
  margin-bottom: 70px;
}
.giveaway-price h2 {
  font-family: "Lato", sans-serif;
  color: #ffffff;
  font-weight: 800;
}
.giveaway-price h3 {
  font-family: "Lato", sans-serif;
  color: #ffffff;
  font-weight: 700;
}
.giveaway-price h4 {
  font-family: "Lato", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
.giveaway-price p {
  font-family: "Lato", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.giveaway-price-large {
  border-radius: 35px;
  border: 4px solid #ffaa00;
  position: relative;
}
.giveaway-price-large .info {
  padding: 50px 50px 50px 0;
}
.giveaway-price-large h2 {
  font-size: 60px;
  margin-bottom: 10px;
}
.giveaway-price-large h3 {
  font-size: 45px;
  margin-bottom: 20px;
}
.giveaway-price-large h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
.giveaway-price-large p {
  font-size: 20px;
  margin-bottom: 0;
}
.giveaway-price-large .image {
  max-width: 340px;
  width: 100%;
  padding-top: 60px;
  margin: 0 auto -25px auto;
}
.giveaway-price-large .image img {
  width: 100%;
}
.giveaway-price-large .giveaway-price-content {
  position: relative;
  z-index: 3;
}
.giveaway-price-large .giveaway-price-background-texture {
  display: none;
  background-image: url("../img/giveaway/frost.png");
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.giveaway-price-large .giveaway-price-background-gradient {
  display: none;
  background: linear-gradient(-90deg, #ffaa00 0%, #e4580f 100%);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 35px;
  overflow: hidden;
}

.giveaway-price-small .info {
  padding: 0 30px;
  text-align: center;
}
.giveaway-price-small .image {
  display: block;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}
.giveaway-price-small h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.giveaway-price-small h3 strong {
  font-size: 30px;
  font-weight: 800;
}
.giveaway-price-small h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
.giveaway-price-small p {
  font-size: 18px;
  margin-bottom: 0;
}

.section-giveaway-countdown {
  margin-top: 250px;
  margin-bottom: 250px;
}
.section-giveaway-countdown .headline-h2 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 32px;
}
.section-giveaway-countdown .headline-h1 {
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 5vw;
  background: #ffaa00;
  background: linear-gradient(to right, #ffaa00 0%, #e4580f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-giveaway-intro-border .horizon #svg-spezi-horizon .horizon-background {
  fill: #00173a;
}
.section-giveaway-intro-border .horizon #svg-spezi-horizon .horizon-stroke {
  fill: #009fe3;
}

.section-giveaway-extra-form {
  padding: 200px 15px;
}
.section-giveaway-extra-form .giveaway-extra-form-logo {
  width: 23vw;
  margin: 0 auto 50px auto;
}
.section-giveaway-extra-form .headline-h2 {
  text-align: center;
  margin-bottom: 25px;
}
.section-giveaway-extra-form .text {
  text-align: center;
  margin-bottom: 30px;
}

.section-giveaway-end {
  width: 100%;
  height: 30px;
  background-color: #003063;
}

.section-giveaway-form {
  padding: 0 0 100px 0;
  position: relative;
  background-color: #00173a;
}
.section-giveaway-form .wrapper {
  position: relative;
  z-index: 1;
}

.giveaway-form-container {
  position: relative;
  z-index: 1;
}

.giveaway-form-box {
  border-radius: 40px;
  position: relative;
  background-color: #00173a;
}
.giveaway-form-box:before {
  display: block;
  content: " ";
  position: absolute;
  z-index: -1;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(90deg, #ffaa00 0%, #e4580f 100%);
  border-radius: 44px;
}
.giveaway-form-box .headline-h3 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}
.giveaway-form-box .text {
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: 0;
}

.giveaway-form .giveaway-form-header {
  padding: 40px;
}
.giveaway-form .giveaway-form-box {
  padding: 0 25px 30px 25px;
}
.giveaway-form .giveaway-form-box .seperator {
  margin: 15px -20px 0 -20px;
  padding-top: 35px;
  border-top: 4px solid #003063;
}
.giveaway-form p {
  display: flex;
  flex-direction: column;
  margin: 0 0 25px 0;
  position: relative;
}
.giveaway-form p label {
  display: none;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #b2b6b9;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(0, -50%);
}
.giveaway-form p input {
  display: block;
  padding: 16px 30px;
  border-radius: 8px;
  background-color: #ffffff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 18px;
  border: 3px solid #ffffff;
  outline: none;
  position: relative;
  transition: 300ms;
}
.giveaway-form p input::placeholder {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #b2b6b9;
}
.giveaway-form p input:focus {
  border-color: #009fe3;
}
.giveaway-form p.checkbox {
  margin: 0;
  padding-bottom: 30px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.giveaway-form p.checkbox label {
  display: block;
  color: #ffffff;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}
.giveaway-form p.checkbox input {
  margin-top: 5px;
  margin-right: 15px;
}
.giveaway-form p.form-trigger input {
  padding: 14px 30px;
  background-color: #009fe3;
  border-color: #009fe3;
  font-size: 18px;
  color: #ffffff;
}
.giveaway-form p.form-trigger input:hover {
  border-color: #0075bf;
  background-color: #0075bf;
}

@media (max-width: 1700px) {
  .giveaway-header {
    padding-bottom: 70%;
  }
  .giveaway-header .giveaway-logo {
    width: 60vw;
  }
  .giveaway-header .particle.particle-cooler {
    width: 20vw;
  }
  .giveaway-header .particle.particle-fridge {
    width: 19vw;
    bottom: 4vw;
    left: 5vw;
  }
  .giveaway-header .particle.particle-kissen {
    width: 17vw;
    top: 7vw;
    right: 8vw;
  }
  .giveaway-header .particle.particle-cube {
    width: 18vw;
    left: 13vw;
  }

  .section-giveaway-video {
    margin-top: 120px;
  }

  .section-giveway-gameteaser {
    margin-top: 120px;
  }

  .section-giveaway-price {
    margin-top: 120px;
  }

  .section-giveaway-countdown {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}
@media (max-width: 767.98px) {
  .giveaway-teaser {
    padding: 50px 15px;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .giveaway-teaser h1 {
    font-size: 45px;
  }
  .giveaway-teaser .seperator {
    font-size: 20px;
  }
  .giveaway-teaser .countdown {
    font-size: 45px;
    margin-bottom: 35px;
    word-break: break-word;
  }
  .giveaway-teaser .info-card {
    position: relative;
    bottom: auto;
    padding: 30px;
  }

  .giveaway-header {
    padding-bottom: 0;
    height: 95vh;
  }
  .giveaway-header .title {
    top: 25vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .giveaway-header .giveaway-logo {
    width: 80vw;
  }
  .giveaway-header .giveaway-logo-title {
    font-size: 5vw;
    bottom: -1vw;
  }
  .giveaway-header .particle.particle-cube {
    width: 35vw;
    left: 10vw;
    top: auto;
    bottom: 13vw;
  }
  .giveaway-header .particle.particle-cooler {
    width: 36vw;
    bottom: auto;
    right: 8vw;
    top: 55vw;
  }
  .giveaway-header .particle.particle-fridge {
    width: 36vw;
    bottom: auto;
    left: 2vw;
    top: 56vw;
  }
  .giveaway-header .particle.particle-kissen {
    width: 32vw;
    top: auto;
    right: 9vw;
    bottom: 25vw;
  }

  .section-giveaway-intro {
    padding-top: 70px;
  }
  .section-giveaway-intro .text {
    font-size: 18px;
  }
  .section-giveaway-intro .content {
    padding: 50px 30px;
  }

  .section-giveaway-video {
    margin-top: 70px;
  }
  .section-giveaway-video .give-away-video-box {
    border-radius: 10px;
  }
  .section-giveaway-video .give-away-video-box:before {
    border-radius: 12px;
  }
  .section-giveaway-video .give-away-video {
    border-radius: 10px;
  }

  .section-giveway-gameteaser {
    margin-top: 70px;
  }
  .section-giveway-gameteaser .text {
    font-size: 18px;
  }

  .section-giveaway-price {
    margin-top: 70px;
  }

  .giveaway-price-large {
    padding: 30px;
  }
  .giveaway-price-large .image {
    max-width: 50vw;
    padding-top: 0;
    margin-top: -18vw;
  }
  .giveaway-price-large .info {
    padding: 50px 0 0 0;
  }
  .giveaway-price-large h2 {
    font-size: 45px;
  }
  .giveaway-price-large h3 {
    font-size: 32px;
  }
  .giveaway-price-large h4 {
    font-size: 20px;
  }
  .giveaway-price-large p {
    font-size: 18px;
  }

  .section-giveaway-countdown {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .section-giveaway-countdown .headline-h1 {
    font-size: 45px;
  }

  .section-giveaway-form {
    padding: 50px 0 70px 0;
  }

  .giveaway-form .giveaway-form-header {
    padding: 30px;
  }
  .giveaway-form .giveaway-form-box {
    padding: 0 15px 30px 15px;
  }

  .section-giveway-gameteaser .ctas {
    flex-direction: column;
  }

  .section-giveaway-extra-form {
    padding: 80px 15px;
  }
  .section-giveaway-extra-form .giveaway-extra-form-logo {
    width: 70vw;
  }
}
.section-vkf-teaser {
  padding-top: 150px;
  background-color: #003063;
}
.section-vkf-teaser .vkf-teaser {
  position: relative;
}
.section-vkf-teaser .vkf-teaser .title {
  position: relative;
  z-index: 3;
  padding: 230px 0;
}
.section-vkf-teaser .vkf-teaser .title .logo {
  margin: 0 auto;
  max-width: 60%;
  width: 100%;
}
.section-vkf-teaser .vkf-teaser .title .cta-container {
  justify-content: center;
  margin-top: 0;
}
.section-vkf-teaser .vkf-teaser .particle-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.section-vkf-teaser .vkf-teaser .particle-container .particle {
  position: absolute;
  display: none;
}
.section-vkf-teaser .vkf-teaser .particle-container .particle.kuehlschrank {
  display: block;
  left: -4vw;
  width: 18vw;
  bottom: -120px;
  max-width: 340px;
  transform: rotate(-3deg);
  animation-name: particle-teaser-fridge;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.section-vkf-teaser .vkf-teaser .particle-container .particle.kuehlbox {
  display: block;
  right: 50px;
  max-width: 330px;
  transform: rotate(3deg);
  bottom: -115px;
  width: 20vw;
  animation-name: particle-teaser-cooler;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 2s;
}
.section-vkf-teaser .vkf-teaser .particle-container .particle.cube {
  display: block;
  right: 30px;
  max-width: 250px;
  transform: rotate(-5deg);
  top: -30px;
  width: 13vw;
  animation-name: particle-teaser-cube;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.section-vkf-teaser .vkf-teaser .particle-container .particle.sitzkissen {
  display: block;
  max-width: 230px;
  transform: rotate(-5deg);
  left: 30px;
  top: 20px;
  width: 11vw;
  animation-name: particle-teaser-kissen;
  animation-delay: 1s;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.section-vkf-teaser .vkf-teaser .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}
.section-vkf-teaser .vkf-teaser .background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: rgba(0, 159, 227, 0.6);
}
.section-vkf-teaser .vkf-teaser .background .background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image: url("../img/vkf2021/spezi_vkf_2021_teaser_background_swirl.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@keyframes particle-teaser-fridge {
  0% {
    transform: translateY(0) rotate(-3deg);
  }
  25% {
    transform: translateY(10px) rotate(-3deg);
  }
  75% {
    transform: translateY(-10px) rotate(-3deg);
  }
  100% {
    transform: translateY(0) rotate(-3deg);
  }
}
@keyframes particle-teaser-cooler {
  0% {
    transform: translateY(0) rotate(3deg);
  }
  25% {
    transform: translateY(10px) rotate(3deg);
  }
  75% {
    transform: translateY(-10px) rotate(3deg);
  }
  100% {
    transform: translateY(0) rotate(3deg);
  }
}
@keyframes particle-teaser-cube {
  0% {
    transform: translateY(0) rotate(-5deg);
  }
  25% {
    transform: translateY(5px) rotate(-5deg);
  }
  75% {
    transform: translateY(-5px) rotate(-5deg);
  }
  100% {
    transform: translateY(0) rotate(-5deg);
  }
}
@keyframes particle-teaser-kissen {
  0% {
    transform: translateY(0) rotate(-5deg);
  }
  25% {
    transform: translateY(5px) rotate(-6deg);
  }
  75% {
    transform: translateY(-5px) rotate(-4deg);
  }
  100% {
    transform: translateY(0) rotate(-5deg);
  }
}
@media (max-width: 1700px) {
  .section-vkf-teaser .vkf-teaser .title .cta-container {
    margin-top: -25px;
  }
  .section-vkf-teaser .vkf-teaser .particle-container .particle.kuehlschrank {
    left: -8vw;
    width: 23vw;
    bottom: -110px;
  }
  .section-vkf-teaser .vkf-teaser .particle-container .particle.kuehlbox {
    width: 25vw;
  }
  .section-vkf-teaser .vkf-teaser .particle-container .particle.cube {
    width: 18vw;
  }
  .section-vkf-teaser .vkf-teaser .particle-container .particle.sitzkissen {
    width: 16vw;
  }
}
@media (max-width: 767.98px) {
  .section-vkf-teaser {
    padding-top: 40px;
  }
  .section-vkf-teaser .vkf-teaser {
    padding: 0 25px;
  }
  .section-vkf-teaser .vkf-teaser .title {
    padding: 80px 0 110vw 0;
  }
  .section-vkf-teaser .vkf-teaser .title .logo {
    max-width: 100%;
  }
  .section-vkf-teaser .vkf-teaser .title .cta-container {
    margin-top: 30px;
  }
  .section-vkf-teaser .vkf-teaser .title .cta-gets-mobile {
    flex-direction: unset;
  }
  .section-vkf-teaser .vkf-teaser .particle-container .particle.kuehlschrank {
    left: 20px;
    width: 45vw;
    bottom: 10px;
  }
  .section-vkf-teaser .vkf-teaser .particle-container .particle.kuehlbox {
    width: 45vw;
    right: 10px;
    bottom: -40px;
  }
  .section-vkf-teaser .vkf-teaser .particle-container .particle.cube {
    width: 41vw;
    right: 5px;
    top: auto;
    bottom: 45vw;
  }
  .section-vkf-teaser .vkf-teaser .particle-container .particle.sitzkissen {
    width: 37vw;
    top: auto;
    left: 20px;
    bottom: 65vw;
  }
}

/*# sourceMappingURL=spezi-giveaway-styles.css.map */
