html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  list-style: none;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

img {
  display: block;
  border: none;
}


.gotop {
  position: fixed;
  z-index: 10;
  bottom: 30px;
}
@media (max-width: 980px) {
  .gotop {
    width: 50px;
    bottom: 140px;
    right: 0;
  }
}
.gotop span {
  display: none;
}
@media (max-width: 980px) {
  .gotop span {
    display: block;
  }
}

header {
  position: relative;
}
header:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 9px;
  background-image: url(../images/envelope_line.svg);
  background-size: contain;
  background-repeat: repeat-x;
  top: 100%;
  z-index: 2;
  background-position: center center;
  left: 0;
}

.fixed_vote {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 3;
  padding: 12.5px;
  bottom: 1vw;
  transition: transform 0.35s ease;
}
@media (max-width: 1440px) {
  .fixed_vote {
    padding: 10px;
  }
}
.fixed_vote.move {
  transform: translateY(-73px);
}
@media (max-width: 980px) {
  .fixed_vote.move {
    transform: translateY(-70px);
  }
}
.fixed_vote .page_btn {
  position: relative;
  min-width: 55px;
  height: 55px;
}
@media (max-width: 980px) {
  .fixed_vote .page_btn {
    min-width: 45px;
    height: 45px;
  }
}
.fixed_vote .page_btn:before {
  content: "";
  position: absolute;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 13.75px;
  height: 25px;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
@media (max-width: 980px) {
  .fixed_vote .page_btn:before {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
.fixed_vote .next_btn {
  transform: rotate(180deg);
}
.fixed_vote .vote_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EF4B57;
  border-radius: 8px;
  max-width: 377px;
  width: 100%;
  padding: 15.5px;
  margin-right: 100px;
  margin-left: 32px;
  transition: all 0.3s ease;
  background-color: #fff;
}
@media (max-width: 1440px) {
  .fixed_vote .vote_btn {
    max-width: 350px;
    margin-right: 40px;
    padding: 13px;
  }
}
@media (max-width: 980px) {
  .fixed_vote .vote_btn {
    max-width: 30vw;
    min-width: 130px;
    padding: 10px;
    margin: 0 20px 0 10px;
  }
}
.fixed_vote .vote_btn span {
  color: #EF4B57;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  transform: translateX(10px);
}
@media (max-width: 1440px) {
  .fixed_vote .vote_btn span {
    font-size: 18px;
  }
}
@media (max-width: 980px) {
  .fixed_vote .vote_btn span {
    font-size: 16px;
    transform: translateX(17px);
  }
}
.fixed_vote .vote_btn span:before {
  content: "";
  position: absolute;
  background-image: url(../images/heart_red.svg);
  width: 24px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% + 10px);
}
@media (max-width: 980px) {
  .fixed_vote .vote_btn span:before {
    transform: translateY(-50%) scale(0.85);
  }
}
.fixed_vote .vote_btn:hover {
  background-color: #1b80de;
  border-color: #1b80de;
}
.fixed_vote .vote_btn:hover span {
  color: white;
}
.fixed_vote .vote_btn:hover span:before {
  background-image: url(../images/heart_white.svg);
}
.fixed_vote .vote_btn:active {
  background-color: #EF4B57;
  border-color: #EF4B57;
}
.fixed_vote .vote_btn:active span {
  color: white;
}
.fixed_vote .vote_btn:active span:before {
  background-image: url(../images/heart_white.svg);
}
.fixed_vote .social_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 32px;
}
@media (max-width: 980px) {
  .fixed_vote .social_btn {
    margin-right: 10px;
    gap: 15px;
  }
}
.fixed_vote .social_btn p {
  font-size: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1440px) {
  .fixed_vote .social_btn p {
    font-size: 18px;
  }
}
@media (max-width: 980px) {
  .fixed_vote .social_btn p {
    display: none;
  }
}

.video {
  overflow: hidden;
  background-color: #fffee9;
  line-height: 1.5;
  position: relative;
}
.video:before {
  content: "";
  position: absolute;
  background-image: url(../images/stamp_wave.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 17.8645833333%;
  padding-bottom: 13.75%;
  left: 3vw;
  top: 97px;
}
@media (max-width: 1440px) {
  .video:before {
    transform: scale(0.9);
    left: 0;
  }
}
@media (max-width: 980px) {
  .video:before {
    display: none;
  }
}
.video .wave {
  position: absolute;
  z-index: 2;
  width: 16.40625%;
  padding-bottom: 12.7083333333%;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
}
@media (max-width: 980px) {
  .video .wave {
    display: none;
  }
}
.video .wave-1 {
  background-image: url(../images/wave_right.svg);
  width: 16.40625%;
  padding-bottom: 12.7083333333%;
  top: 172px;
  right: 0;
}
@media (max-width: 1440px) {
  .video .wave-1 {
    transform: scale(0.8);
    right: -20px;
  }
}
.video .wave-2 {
  background-image: url(../images/wave_right.svg);
  width: 16.40625%;
  padding-bottom: 12.7083333333%;
  right: 0;
  top: 1240px;
}
@media (max-width: 1440px) {
  .video .wave-2 {
    transform: scale(0.8);
    right: -20px;
  }
}
.video .wave-3 {
  position: absolute;
  background-image: url(../images/wave_left_complete.svg);
  width: 15.5729166667%;
  padding-bottom: 10.2604166667%;
  background-size: contain;
  background-repeat: no-repeat;
  left: 55px;
  top: 880px;
}
@media (max-width: 1440px) {
  .video .wave-3 {
    left: -15px;
  }
}
.video .envelop {
  position: absolute;
  background-image: url(../images/envelope_line.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 9px;
  bottom: 1px;
  background-position: center center;
  z-index: 2;
  left: 0;
}
.video .container {
  min-height: calc(100vh - 160px);
  max-width: 960px;
  width: 100%;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 83px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .video .container {
    max-width: 850px;
  }
}
@media (max-width: 980px) {
  .video .container {
    min-height: calc(100vh - 100px);
    padding: 50px 20px 100px;
  }
}
@media screen and (max-width: 457px) {
  .video .container {
    min-height: calc(100vh - 120px);
  }
}
.video_title {
  font-size: 28px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1440px) {
  .video_title {
    font-size: 26px;
  }
}
@media (max-width: 980px) {
  .video_title {
    font-size: 18px;
  }
}
.video_title .title {
  margin-bottom: 16px;
}
.video .participant {
  display: flex;
  align-items: start;
  justify-content: start;
  font-weight: 500;
  font-size: 24px;
}
@media (max-width: 980px) {
  .video .participant {
    font-size: 18px;
    gap: 10px;
    flex-wrap: wrap;
    align-items: start;
  }
}
.video .participant .name {
  display: flex;
  align-items: start;
}
.video .participant_box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 35px;
}
@media (max-width: 1440px) {
  .video .participant_box {
    gap: 40px;
  }
}
@media (max-width: 980px) {
  .video .participant_box {
    flex-direction: column;
    gap: 25px;
  }
}
.video .participant_label {
  position: relative;
  padding-left: 30px;
  word-break: keep-all;
}
.video .participant_label:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 20px;
  background-image: url(../images/ppl_black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}
@media (max-width: 980px) {
  .video .participant_label:before {
    transform: translateY(-50%) scale(0.9);
    top: 49%;
  }
}
.video .social {
  margin-left: 16px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 980px) {
  .video .social {
    gap: 15px;
    margin-left: 30px;
  }
}
.video .vote_number {
  display: flex;
  flex-direction: column;
  outline: 3px solid #EF4B57;
  border-radius: 8px;
}
@media (max-width: 980px) {
  .video .vote_number {
    margin-left: 30px;
  }
}
.video .vote_label {
  min-width: 132px;
  background: #EF4B57;
  padding: 2px;
  display: flex;
  justify-content: center;
}
@media (max-width: 980px) {
  .video .vote_label {
    min-width: 100px;
  }
}
.video .vote_label span {
  font-family: "Inter", sans-serif;
  display: inline-block;
  color: white;
  font-size: 18px;
  font-weight: 500;
  transform: translate(7px, -1px);
  position: relative;
}
@media (max-width: 980px) {
  .video .vote_label span {
    font-size: 16px;
    transform: translate(10px, 0);
  }
}
.video .vote_label span::before {
  content: "";
  position: absolute;
  background-image: url(../images/thumbsup_white.svg);
  width: 15px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% + 6px);
}
.video .vote_count {
  color: #EF4B57;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  padding: 5px 5px;
}
@media (max-width: 1440px) {
  .video .vote_count {
    font-size: 34px;
  }
}
@media (max-width: 980px) {
  .video .vote_count {
    font-size: 24px;
  }
}
.video .video_container {
  margin: 39px 0;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.video .video_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video .description {
  line-height: 1.6666666667;
  font-size: 18px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
@media (max-width: 980px) {
  .video .description {
    font-size: 16px;
  }
}
.video .participant_btn {
  display: flex;
  justify-content: center;
  max-width: 307px;
  width: 100%;
  margin: auto;
  border-radius: 8px;
  border: 2px solid black;
  padding: 12px;
  font-family: "Inter", sans-serif;
  margin-top: 60px;
  transition: all 0.2s linear;
}
@media (max-width: 980px) {
  .video .participant_btn {
    max-width: 280px;
  }
}
.video .participant_btn:hover {
  background-color: #1b80de;
  border-color: #1b80de;
}
.video .participant_btn:hover span {
  color: white;
}
.video .participant_btn:hover span:before {
  background-image: url(../images/list_w_icon.svg);
}
.video .participant_btn:active {
  background-color: #EF4B57;
  border-color: #EF4B57;
}
.video .participant_btn:active span {
  color: white;
}
.video .participant_btn:active span:before {
  background-image: url(../images/list_w_icon.svg);
}
.video .participant_btn span {
  color: black;
  font-size: 20px;
  font-weight: 500;
  transform: translateX(13px);
  position: relative;
}
@media (max-width: 980px) {
  .video .participant_btn span {
    font-size: 16px;
  }
}
.video .participant_btn span:before {
  content: "";
  position: absolute;
  background-image: url(../images/list_icon.svg);
  width: 23px;
  height: 20px;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
}