@import "./blinks.css";
@import "./zonapro.css";

:root {
  --btn-color: #FFF;
  --stickertext-color: rgb(50,100,180);
  --clock-bg-color: rgb(50,100,180);
  --clock-color: #fff;
  --input-color: #C5C5C5;
  --input-checkbox-color: #E32222;
  --agree-col: #73618C;
  --agree-col-m: #424242;
  --form-bg-color: #fff;
  --btn-bg-color-1: #FF0100;
  --btn-bg-color-2: #A70000;
  --step2-form-text-color: #918E8E;
  --phone-type-bg-1: #FF0000;
  --phone-type-bg-2: #A80000;
}

@-webkit-keyframes snowflakes-fall {
  0%{top:-10%}
  100%{top:100%}
}

@-webkit-keyframes snowflakes-shake {
  0%{-webkit-transform:translateX(0px);transform:translateX(0px)}
  50%{-webkit-transform:translateX(80px);transform:translateX(80px)}
  100%{-webkit-transform:translateX(0px);transform:translateX(0px)}
}

@-webkit-keyframes snowflakes-shake-mobile {
  0%{-webkit-transform:translateX(0px);transform:translateX(0px)}
  50%{-webkit-transform:translateX(40px);transform:translateX(40px)}
  100%{-webkit-transform:translateX(0px);transform:translateX(0px)}
}

@keyframes snowflakes-fall {
  0%{top: -10%}
  100%{top: 100%}
}

@keyframes snowflakes-fall-mobile {
  0% {top: -10%}
  100% {top: 690px}
}

@keyframes snowflakes-shake {
  0% {transform: translateX(0px)}
  50% {transform: translateX(80px)}
  100% {transform: translateX(0px)}
}

@keyframes flash {
  0% {opacity: 0;}
  30% {opacity: 0;}
  35% {opacity: 1;}
  60% {opacity: 0;}
  100% {opacity: 0;}
}


@-moz-keyframes blink-rectangle {
    0% {opacity: 0.8;}
    50% {opacity: 0;}
    100% {opacity: 0.8;}
}

@-webkit-keyframes blink-rectangle {
    0% {opacity: 0.8;}
    50% {opacity: 0;}
    100% {opacity: 0.8;}
}

body {
  background-attachment: fixed;
  font-family: "zonapro-regular", sans-serif;
  background: #fff url(../images/bg.jpg) no-repeat top center;
  color: #000;
  background-repeat: no-repeat;
  background-size: content;
}

.snowflake {
  color: #fff;
  font-size: 15px;
  text-shadow: 0 0 1px #000;
}

.snowflake {
  position: fixed;
  top: -20px;
  z-index: 0;
  color: #F0ED90;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: snowflakes-fall,snowflakes-shake;
  -webkit-animation-duration: 10s,3s;
  -webkit-animation-timing-function: linear,ease-in-out;
  -webkit-animation-iteration-count: infinite,infinite;
  -webkit-animation-play-state: running,running;
  animation-name: snowflakes-fall,snowflakes-shake;
  animation-duration: 10s,3s;
  animation-timing-function: linear,ease-in-out;
  animation-iteration-count: infinite,infinite;
  animation-play-state: running,running
}

.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}
.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}
.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}
.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}
.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}
.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}
.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}
.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}
.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}
.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}
.snowflake:nth-of-type(10){left:92%;-webkit-animation-delay:1.5s,1.5s;animation-delay:1.5s,1.5s}
.snowflake:nth-of-type(11){left:77%;-webkit-animation-delay:3s,3s;animation-delay:3s,3s}
.snowflake:nth-of-type(12){left:67%;-webkit-animation-delay:4s,0.5s;animation-delay:4s,0.5s}
.snowflake:nth-of-type(13){left:82%;-webkit-animation-delay:5s,3.5s;animation-delay:5s,3.5s}
.snowflake:nth-of-type(14){left:45%;-webkit-animation-delay:3.5s,2.5s;animation-delay:3.5s,2.5s}
.snowflake:nth-of-type(15){left:55%;-webkit-animation-delay:4s,1.5s;animation-delay:4s,1.5s}
.snowflake:nth-of-type(16){left:65%;-webkit-animation-delay:0.5s,5s;animation-delay:0.5s,5s}
.snowflake:nth-of-type(17){left:75%;-webkit-animation-delay:1.5s,2s;animation-delay:1.5s,2s}
.snowflake:nth-of-type(18){left:85%;-webkit-animation-delay:4.5s,3.5s;animation-delay:4.5s,3.5s}
.snowflake:nth-of-type(19){left:90%;-webkit-animation-delay:2.5s,6.5s;animation-delay:2.5s,6.5s}

.star {
  animation: flash 2s linear infinite;
  background: transparent url(../images/flash.png) no-repeat center center;
  background-size: contain;
  width: 80px;
  height: 70px;
  position: absolute;
  opacity: 0;
  filter: brightness(2.5);
}

.star:nth-of-type(1){top: 570px;left: 415px;-webkit-animation-delay:1.5s,1.5s;animation-delay:1.5s,1.5s}
.star:nth-of-type(2){top: 350px;left: 394px;-webkit-animation-delay:0.5s,0.5s;animation-delay:0.5s,0.5s}
.star:nth-of-type(3){top: 626px;left: 673px;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}
.star:nth-of-type(4){top: 394px;left: 680px;-webkit-animation-delay:0.3s,0.3s;animation-delay:0.3s,0.3s}

/* BOARD */
#board {
  text-align: center;
  padding-bottom: 50px;
  font-family: "zonapro-black", sans-serif;
}

.board-col {
  padding: 0px 25px 20px 25px;
  margin-bottom: 20px;
  text-align: center;
  background: #fff;
  background-color: #fff;
  max-width: 100%;
  -webkit-box-shadow: 0px 4px 32px -7px rgba(66, 68, 90, 1);
  -moz-box-shadow: 0px 4px 32px -7px rgba(66, 68, 90, 1);
  box-shadow: 0px 4px 32px -7px rgba(66, 68, 90, 1);
}

.board-col img{
  margin: 0 auto 10px;
}

.prop-name{
  font-size: 47px;
  font-weight: 40px;
}
.pre-txt-1 {
  margin: 20px 0 20px 0;
  font-size: 40px;
  line-height: 90px;
  font-family: "zonapro-bold";
  color: #fff;
}

.pre-txt-2 {
  font-weight: bolder;
  font-family: "zonapro-regular";
  font-size: 33px;
  line-height: 35px;
  margin: 5px 0 0 0;
}

.pre-txt-2 b {
  font-size: 40px;
  line-height: 42px;
  font-family: "zonapro-extrabold";
}

#award-pre {
  position: absolute;
  top: 150px;
  left: 0px;
  width: 330px;
}

#logo-container{
  margin: 0 -15px 25px -15px;
  padding: 10px 10px 0px 10px
}

#logo-pre {
  margin: 0px auto 15px auto ;
  padding: 0 10px;
  display: block;
  max-width: 100%;
}

.label-txt{
  padding:0 10px;
  margin-bottom: -5px;
}

#logo {
  margin: 30px auto 20px;
  width: 100%;
}

#logo_l {
  margin-top: 20px;
  width: calc(100% + 32px);
  margin-left: -16px;
}

#logo_m {
  margin-top: 20px;
  width: calc(100% + 32px);
  margin-left: -16px;
}

#board h2 {
  font-size: 59px;
  line-height: 59px;
  margin-top: 30px;
  margin-bottom: 0px;
}

#board h2 span {
  font-family: "zonapro-regular", sans-serif;
}

#board h1 {
  font-size: 110px;
  line-height: 110px;
  margin: 0px auto;
}

.clock-minute {
  float: right;
  font-weight: bold;
  background-color: var(--clock-bg-color);
  color: var(--clock-color);
  text-align: center;
  padding-top: 10px;
  width: 130px;
  height: 73px;
  margin-right: -150px;
}

.clock-minute-label {
  font-size: 14px;
  letter-spacing: 1.1px;
}

#timerClock {
  font-size: 30px;
  letter-spacing: 2.2px;
  margin-top: -3px;
  display: block;
}

/* FORM */
#form-col {
  max-width: 650px;
  min-width: 650px;
  margin-top: 100px;
  padding: 30px 10px 25px;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  background: var(--form-bg-color);
  -webkit-box-shadow: 0px 4px 18px -7px rgb(66 68 90);
  -moz-box-shadow: 0px 4px 18px -7px rgba(66, 68, 90, 1);
  box-shadow: 0px 4px 18px -7px rgb(66 68 90);
  float: right;
}

#bg-col {
  border-radius: 25px;
  padding: 0px 8px 0px 8px;
}

#form-col p.winner-contact {
  margin: 0px 0px 0px 0px;
  font-weight: 400;
  font-size: 12px;
  color: white;
}

.krok2 #form-col h2 {
  color: var(--stickertext-color);
  font-size: 27px;
  text-align: center;
}

#form-col h2 {
  margin: 15px auto 0px;
  line-height: 36px;
  text-align: center;
  font-size: 34px;
  font-family: "zonapro-bold";
}

#form-col form h2 {
  color: inherit;
}

.form-wrapper {
  margin: 0 -10px;
  padding: 5px 26px;
}

.lead {
  margin: -5px auto 15px;
  line-height: 30px;
  text-align: center;
  font-size: 30px;
  letter-spacing: -0.5px;
  font-family: "zonapro-bold";
  color: #000;
}

#form-col > p,
#form-col h2 span {
  font-size: 21px;
  color: #000;
  text-align: center;
}

.input-text {
  padding-left: 20px;
  width: 100%;
  height: 48px;
  color: #000;
  font-size: 18px;
  border: var(--input-color) 2px solid;
  margin-bottom: 4px;
}

input[type='checkbox']:checked:after {
  color: #fff;
  background: var(--input-checkbox-color);
  content: '✔';
  text-align: center;
  display: block;
  width: 14px;
  font-family: "zonapro-extrabold";
}

.top-agreement > p > span {
  display: none;
}

.cb-agreement label {
  width: 100%;
  float: left;
  margin-bottom: 5px;
  position: relative;
  padding-left: 25px;
  text-align: left;
  color: var(--agree-col);
}

.cb-agreement label input {
  position: absolute;
  left: 0px;
  top: 1px;
}

.cb-agreement {
  margin-top: 5px;
}

.cb-agreement span {
  display: none;
}

a#agreement-more {
  position: relative;
  top: -5px;
}

#submit-area {
  margin-top: 10px;
  padding: 0 20px;
}

#id_pd_register_form_step1 #btn-confirm.btn-submit-top {
  margin-bottom: 21px;
  font-size: 24px;
  padding: 0 15px;
}

#agreements-content {
  width: 100%;
  margin: 0px;
  padding: 0px;
  text-align: justify;
  color: var(--agree-col);
  font-size: 10px;
  line-height: 13px;
}

.ets .cb-agreement label input {
  width: 11px;
  height: 11px;
  left: 2px;
}

#id_pd_register_form_step1 .ets #agreements-content {
  font-size: 8px;
}

.cb-hidden {
  display: none;
}

#id_pd_register_form_step1 .step {
  color: #fff;
}

#id_pd_register_form_step1 #additional-info {
  margin: 15px 0px 10px 0px;
}

#poll_submit,
#id_pd_register_form #btn-next,
#but-next,
#btn-confirm,
#btn-participate {
  width: 100%;
  line-height: 65px;
  cursor: pointer;
  color: var(--btn-color);
  font-size: 30px;
  font-family: "zonapro-extrabold";
  letter-spacing: 0.05em;
  border-radius: 15px;
  border: none;
  display: block;
  margin: 15px auto 10px;
  background: var(--btn-bg-color-1);
  background: linear-gradient(180deg, var(--btn-bg-color-1) 10%, var(--btn-bg-color-2) 90%);
  -webkit-box-shadow: 0px 2px 1px 1px rgb(170 144 150);
  -moz-box-shadow: 0px 2px 1px 1px rgb(170 144 150);
  box-shadow: 0px 2px 1px 1px rgb(170 144 150);
}

#poll_submit:hover,
#id_pd_register_form #btn-next:hover,
#but-next:hover,
#btn-confirm:hover,
#btn-participate:hover {
  background: #555;
}

#btn-confirm {
  display: inline-block;
  margin-bottom: 0px;
}

.footer_menu {
  margin: 20px auto;
  width: 334px;
  height: 20px;
}

.footer_menu > .footer_menu_group:nth-child(1) {
  border-right: 1px solid #000;
}

.footer_menu a {
  color: #000;
  text-decoration: none;
}

body.page {
  background: #fbfbfb;
}

body.page .text-main {
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  padding: 10px 15px;
}

#footer-container {
  margin: 20px auto 0;
  width: 100%;
}

#footer-container p {
  text-align: center;
  font-size: 12px;
  color: #000;
}


#foot-col {
  max-width: 650px;
  min-width: 650px;
  float: right;
}

.blink-rectangle {
  position: absolute;
  top: 161px;
  left: -621px;
  width: 413px;
  max-width: 100%;
  height: 50px;
  background: #DF0000;
  animation: blink-rectangle 2s infinite;
}

@media (min-width:1921px) {
  .star {
    display: none;
  }

  .blink-rectangle {
    display: none;
  }
}

@media(max-width: 1919px) {
  body {
    background-position: left -200px top;
  }

  .star:nth-of-type(1){left: 215px;}
  .star:nth-of-type(2){left: 194px;}
  .star:nth-of-type(3){left: 473px;}
  .star:nth-of-type(4){left: 480px;}

  .blink-rectangle {
    left: -42vw;
  }
}

@media (max-width: 1820px) {
  #award-pre {
    display: none;
  }
}

@media(max-width: 1400px) {
  body {
    background-position: left -300px top;
  }

  .blink-rectangle {
    left: -52vw;
  }

  .star:nth-of-type(1){left: 115px;}
  .star:nth-of-type(2){left: 94px;}
  .star:nth-of-type(3){left: 373px;}
  .star:nth-of-type(4){left: 380px;}
  
  #form-col {
    max-width: 550px;
    min-width: 550px;
    margin-right: 20px;
  }

  #foot-col {
    max-width: 550px;
    min-width: 550px;
  }
}

@media(max-width: 1318px) {
  .blink-rectangle {
    left: -48vw;
    width: 400px;
  }
}

@media(max-width: 1230px) {
  .blink-rectangle {
    left: -44vw;
  }
}

@media(max-width: 1200px) {
  .blink-rectangle {
    left: -48vw;
  }
}

@media(max-width: 1100px) {
  .blink-rectangle {
    left: -43vw;
  }
}

@media (min-width: 1200px) {
  .container {
      width: 1400px;
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .agreements {
    width: 100%;
  }

  #id_pd_register_form_step1 .step-description {
    float: right;
    margin-right: 0px;
    width: 100%;
    font-size: 16.68px;
    padding: 5px 11px;
    margin-bottom: 10px;
  }

  #agreements-content {
    width: 100%;
  }

  .footer_menu {
    padding-right: 0px;
    max-width: 100%;
  }

  #fancybox-content,
  #fancybox-wrap {
    width: 100% !important;
  }

  #fancybox-wrap {
    left: 0px !important;
  }

  .pre-txt-1 {
    font-size: 25px;
    line-height: 70px;
  }

  #logo-container {
    margin: unset;
    max-width: inherit;
  }
}

.form-wrapper input {
  padding-left: 10px;
  margin-top: 1px;
  margin-bottom: 7px;
}

.footer_menu_group {
  padding: 0px 10px;
  display: inline-block;
  text-align: center;
}

#id_pd_register_form input[type="radio"] {
  height: 18px !important;
  width: 18px !important;
  margin-left: 10px;
  vertical-align: top;
  display: none;
}

input[type='radio']:after {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -1px;
  left: -1px;
  position: relative;
  background-color: #fff;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid var(--input-color);
}

input[type='radio']:checked:after {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -1px;
  left: -1px;
  position: relative;
  content: '✓';
  display: inline-block;
  visibility: visible;
  border: 2px solid var(--input-color);
  background-color: var(--input-color);
  color: var(--input-checkbox-color);
  text-align: center;
  font-weight: bold;
}

#id_pd_register_form_step1 .wrapper-step1 {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  text-align: center;
}

#id_pd_register_form_step1 #inputs {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#id_pd_register_form_step1 .col-left {
  width: 450px;
  float: left;
  font-size: 14px;
}

#id_pd_register_form_step1 .col-left input {
  width: 310px;
  height: 41px;
  border: solid 1px #a9a9a9;
  padding-left: 15px;
}

#id_pd_register_form_step1 .col-right {
  width: 430px;
  margin-left: 20px;
  float: left;
}

#id_pd_register_form_step1 .col-left .input-wrapper:nth-child(1) label {
  padding-right: 5px;
}

#id_pd_register_form_step1 .input-wrapper {
  display: inline-block;
}

#id_pd_register_form_step1 .input-wrapper:nth-child(1) {
  padding-bottom: 3px;
}

#poll_submit {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  body.main .footer_menu > .footer_menu_group:nth-child(1),
  body.krok2 .footer_menu > .footer_menu_group:nth-child(1) {
    border-right: 1px solid #000;
  }

  body.main .footer_menu a,
  body.krok2 .footer_menu a {
    color: #000;
  }

  body.main #footer-container p,
  body.krok2 #footer-container p {
    text-align: center;
    font-size: 12px;
    color: #000;
  }
}

@media screen and (max-width: 920px) {
  #id_pd_register_form_step1 #inputs {
    width: 450px;
  }

  #id_pd_register_form_step1 .col-left {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 450px;
    margin-bottom: 5px;
  }

  #id_pd_register_form_step1 .col-left input {
    width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  #id_pd_register_form_step1 #inputs label {
    display: none;
  }

  #id_pd_register_form_step1 .col-right {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 450px;
  }
}

@media screen and (max-width: 480px) {
  #id_pd_register_form_step1 .wrapper-step1,
  #id_pd_register_form_step1 .wrapper-step1 img,
  #id_pd_register_form_step1 .col-left .input-wrapper,
  #id_pd_register_form_step1 .col-left,
  #id_pd_register_form_step1 .col-right,
  #id_pd_register_form_step1 #inputs,
  #id_pd_register_form_step1 #btn-confirm,
  #poll_submit {
    width: 100%;
  }

  #id_pd_register_form_step1 .col-left input {
    width: 95%;
  }

  #id_pd_register_form_step1 .agreements-content {
    width: 70%;
  }
}

.banner .summary-field,
.aktywuj .summary-field {
  margin: 0px auto 20px auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
}

.banner #dziekujemy,
.aktywuj #dziekujemy {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  color: #000 !important;
}

.summary-field-intro {
  padding-bottom: 20px;
  background: rgba(255, 255, 255, 0.75);
  padding-top: 20px;
}

.banner .summary-field-intro p,
.aktywuj .summary-field-intro p {
  font-size: 1.5em;
  margin-bottom: 40px;
}

.banner .summary-field-intro #checkmail,
.aktywuj .summary-field-intro #checkmail {
  font-size: 1.2em;
  color: #000 !important;
}

.summary-top {
  padding: 30px !important;
}

.ads-banner,
.ads-banner div,
.ads-banner a,
.ads-banner img {
  max-width: 100%;
}

.statement {
  color: #6f6f6f;
  font-size: 11px;
  text-decoration: none;
}

@media screen and (max-width: 550px) {
  .summary-field #poll_submit {
    width: 100%;
  }

  .banner .summary-field,
  .aktywuj .summary-field {
    padding: 0px;
  }
}

#agreements-content a {
  text-decoration: underline;
  color: var(--agree-col);
}

.email_participation {
  color: var(--agree-col) !important;
}

.modern-layerbox #but-next {
  max-height: 50px;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .chosen-award {
    display: none;
  }
}

#mobile-type-input-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
}

.summary-bottom {
  padding-top: 20px;
}

.summary-bottom-ads {
  background: #fff;
  padding: 30px;
  width: 70%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #b3c6cc;
}

@media screen and (max-width: 640px) {
  .summary-bottom-ads {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.aktywuj #sec-poll .container {
  padding: 20px 5px 0px 5px;
}

.aktywuj #sec-poll h1 {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  color: #000;
  text-transform: uppercase;
}

.step2-1 div:nth-child(1) img:nth-child(1) {
  margin: -4px 41px 47px;
}

.step2-1 div .row {
  width: 580px;
  margin-top: 5px;
}

.step2-1-container-bottom {
  padding-bottom: 10px;
}

#id_pd_register_form_step1 {
  color: #000;
  text-align: left;
}

input::placeholder {
  color: rgb(95, 95, 95);
  font-size: 12px;
}

body.poll .container {
  max-width: 650px;
}

body.poll #top .container img {
  margin-top: 20px;
}

body.poll .summary-top {
  margin: 0 auto;
  background: none;
  max-width: 400px;
}

body.poll .container {
  max-width: inherit;
}

#sec-poll #white1 > h1 {
  width: 360px;
  margin: 0px auto;
  height: 150px;
}

#sec-poll #white1 > h1 > strong {
  font-size: 25px;
}

input#email_field {
  margin-bottom: 5px;
}

#logo_l {
  display: none;
}

#logo_m {
  display: none;
}

@media (max-width: 1050px) {

  #board {
    background-position-x: -412px;
  }

  #form-col h2 {
    text-align: center;
    font-size: 26px;
  }

  #form-col > p {
    text-align: center;
    display: block;
    font-size: 17px;
    margin-top: 4px
  }

  .step2-1-container-bottom > .col-md-4 {
    display: none;
  }

  #id_pd_register_form_step1 {
    margin-right: 0px;
  }

  #footer-container p {
    margin-top: 10px;
  }

  #form-col h2.step {
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .step2-1-container-bottom {
    padding-bottom: 0px;
  }
}

@media (max-width: 1200px) {
  body {
    background-position: left -365px top;
  }

  .star:nth-of-type(1){left: 45px;}
  .star:nth-of-type(2){left: 35px;}
  .star:nth-of-type(3){left: 300px;}
  .star:nth-of-type(4){left: 315px;}

  .board-col {
    margin-bottom: 67px;
  }

  .lead {
    line-height: 28px;
    text-align: center;
  }

  .container {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .snowflake {
    -webkit-animation-name: snowflakes-fall-mobile,snowflakes-shake-mobile;
    animation-name: snowflakes-fall-mobile,snowflakes-shake-mobile;
  }

  .star {
    width: 50px;
    height: 40px;
    z-index: 999;
  }

  .star:nth-of-type(1){top: 614px;left: calc(50% - 139px);}
  .star:nth-of-type(2){top: 444px;left: calc(50% - 154px);}
  .star:nth-of-type(3){top: 653px;left: calc(50% + 52px);}
  .star:nth-of-type(4){top: 477px;left: calc(50% + 53px);}

  #logo {
    display: none;
  }

  #logo_l {
    display: block;
  }

  .blink-rectangle {
    position: absolute;
    top: 263px;
    left: unset;
    width: 500px;
    max-width: 100%;
    height: 50px;
    background: #DF0000;
    animation: blink-rectangle 2s infinite;
  }

  .lead {
    margin-top: 10px;
    font-size: 25px;
  }

  .cb-agreement label {
    color: var(--agree-col-m);
  }

  #agreements-content {
    color: var(--agree-col-m);
  }

  #agreements-content a {
    text-decoration: underline;
    color: var(--agree-col-m);
  }

  .email_participation {
    color: var(--agree-col-m) !important;
  }

  .board-col {
    margin: 0 auto;
    float: inherit;
  }

  .img-responsive {
    padding-top: 20px;
    padding-right: 15px;
    padding-left: 15px;
  }

  #board .col-md-6,
  #foot-col {
    padding-left: 15px;
  }

  #foot-col {
    max-width: unset;
    min-width: unset;
  }

  #board,
  body {
    background: #ffffff;
  }

  #board h2 {
    margin-top: 20px;
  }

  #board h1 {
    margin-bottom: 20px;
    font-size: 80px;
  }

  .form-wrapper {
    padding: 0px 0px 10px;
    background-size: cover;
    margin: 0;
  }

  #btn-participate {
    margin-top: 30px;
  }

  .clock-minute {
    margin: 20px auto;
    float: unset;
  }

  #foot-col.pre-footer-col {
    margin-left: 0px;
  }

  #footer-container {
    margin-top: 20px;
  }

  #form-col {
    border: unset;
    min-width: unset;
    padding: 0px 8px 8px;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
    background: unset;
    margin: unset;
  }

  #bg-col {
    padding: 0px 8px 0px 8px;
  }

  #id_pd_register_form_step1 {
    padding: 0px 10px;
  }

  #submit-area {
    padding: 0px 12px;
  }

  #poll_submit,
  #id_pd_register_form #btn-next,
  #but-next,
  #btn-confirm,
  #btn-participate {
    font-size: 25px;
    border-top-left-radius: 35px 50%;
    border-top-right-radius: 35px 50%;
    border-bottom-left-radius: 35px 50%;
    border-bottom-right-radius: 35px 50%;
  }

  .container {
    display: flex;
    justify-content: center;
}
}

@media (max-width: 767px) {
  body.poll .summary-top {
    margin-top: -20px;
    margin-left: 0px;
    max-width: 100%;
  }

  #sec-poll #white1 > h1 {
    margin: -19px 0px 0px 0px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  #id_pd_register_form_step1 #btn-confirm.btn-submit-top {
    font-size: 22px;
  }
}

@media screen and (max-width: 550px) {
  #logo_m {
    display: block;
  }

  #logo_l {
    display: none;
  }

  #form-col {
    width: 360px;
  }

  .blink-rectangle {
    top: 210px;
    width: 320px;
    height: 42px;
  }

  .lead {
    margin: 0px auto 0px;
    font-size: 20px;
  }

  .star:nth-of-type(1){top: 404px;left: calc(50% - 110px);}
  .star:nth-of-type(2){top: 290px;left: calc(50% - 154px);}
  .star:nth-of-type(3){top: 314px;left: calc(50% + 33px);}
  .star:nth-of-type(4){top: 425px;left: calc(50% + 28px);}
}

@media screen and (max-width: 480px) {
  #board {
    padding-bottom: 10px;
  }

  .step2-1 {
    margin-left: 15px;
  }

  #form-col > p {
    text-align: center;
    display: inherit;
    font-size: 15px;
  }
}

@media screen and (max-width: 360px) {
  .lead {
    margin: 0px auto 0px;
    font-size: 20px;
  }
}

.radio-toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
  display: none;
}

.radio-toolbar label {
  display: inline-block;
  background: var(--phone-type-bg-1);
  background: linear-gradient(180deg, var(--phone-type-bg-1) 10%, var(--phone-type-bg-2) 75%);
  padding: 5px 20px;
  font-size: 22px;
  letter-spacing: 1px;
  color: #FFF;
  line-height: 40px;
  border-radius: 15px;
  width: 49%;
  cursor: pointer;
  margin-top: 5px;
  -webkit-box-shadow: 0px 4px 8px -5px rgb(66 68 90);
  -moz-box-shadow: 0px 4px 8px -5px rgba(66, 68, 90, 1);
  box-shadow: 0px 4px 8px -5px rgb(66 68 90);
}
