*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --accent: #f06a24;
  --accent-dark: #b7460b;
  --paper: #f8efe0;
  --soft: rgba(255, 255, 255, 0.85);
  --shadow: 0 14px 30px rgba(70, 45, 15, 0.22);
  --stat-red: #d63a49;
  --stat-green: #1e8c55;
  --stat-cyan: #27b9e6;
}

body {
  margin: 0;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  background:#FFEEDC;
  min-height: 100vh;
}

.carousel-item {
  transition: transform 0.6s ease-in-out !important;
}
.carousel-fade .carousel-item {
  transition: opacity 0.6s ease-in-out !important;
}

.numberstyle {
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 4px;
}

h1,h2,h3,h4,h5 {
    font-family: "Prompt", sans-serif;
}

img { width: 100%;
}

.waiting-election-alert {
  width: 90%;
  position: relative;
  top: -25px;
}

.h-bold {
  font-weight: 700;
}

.election-logo {
  position: absolute;
  width: 20%;
  max-width: 320px;
}

.menu {
  display: flex;
  column-gap: 10px;
  align-items: flex-start;
}

.menubar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 30px 90px 90px 30px;
  flex: 0 0 90%;
  max-width: 90%;
}

.title {
  font-size: clamp(20px, 1.5vw, 28px);
  font-weight: 700;
  color: #1a5fd0;
  margin: 0px auto;
  width: 100%;
  min-width: 250px;
  text-align: center;
}

.menu-group {
  display: flex;
  background: #282627;
  border-radius: 999px;
  padding: 10px;
  gap: 5px;
  flex: 0 0 60%;
  width: 100%;
}

.menu-item {
  flex: 1;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.menu-item:hover {
  background: #333;
}

.menu-item.active {
  background: #ff7a00;
  color: #fff;
}

.menu-item i {
  font-size: 14px;
}

.mononews-logo {
  flex: 0 0 10%;
  max-width: 10%;
  justify-content: flex-end;
  display: flex;
}

.mononews-logo img {
  width: 75px;
}

/* section1 */
.sec1-candidate-container {
  position: relative;
}
.sec1-candidate-container .candidate-box1 {
  width: 100%;
  height: 100%;
  position: relative;
}
.sec1-candidate-container .candidate-box2 {
  position: relative;
}
.sec1-candidate-container .candidate-card {
  position: absolute;
  aspect-ratio: 1 / 1.1;
  width: 30%;
}
.sec1-candidate-container .candidate-card-bg {
  background-color: #014BAE;
  aspect-ratio: 3 / 2;
  position: absolute;
  width: 100%;
  border-radius: 25px 25px 0 0;
  bottom: 0;
}
.sec1-candidate-container .candidate-card-person {
  position: absolute;
  bottom: 0;
  overflow: visible;
}
.sec1-candidate-container .candidate-card-person img {
  --aura-color: 255, 255, 255; /* default */
  --aura-scale: 1;
  filter:
    drop-shadow(0 0 calc(3px * var(--aura-scale)) rgba(var(--aura-color), 0.7))
    drop-shadow(0 0 calc(7px * var(--aura-scale)) rgba(var(--aura-color), 0.5))
    drop-shadow(0 0 calc(13px * var(--aura-scale)) rgba(var(--aura-color), 0.35));

  animation: auraPulse 1.8s ease-in-out infinite;
}

@keyframes auraPulse {
  0% {
    filter:
      drop-shadow(0 0 calc(3px * var(--aura-scale)) rgba(var(--aura-color), 0.6))
      drop-shadow(0 0 calc(7px * var(--aura-scale)) rgba(var(--aura-color), 0.4))
      drop-shadow(0 0 calc(11px * var(--aura-scale)) rgba(var(--aura-color), 0.25));
  }
  50% {
    filter:
      drop-shadow(0 0 calc(5px * var(--aura-scale)) rgba(var(--aura-color), 0.95))
      drop-shadow(0 0 calc(13px * var(--aura-scale)) rgba(var(--aura-color), 0.7))
      drop-shadow(0 0 calc(21px * var(--aura-scale)) rgba(var(--aura-color), 0.5));
  }
  100% {
    filter:
      drop-shadow(0 0 calc(3px * var(--aura-scale)) rgba(var(--aura-color), 0.6))
      drop-shadow(0 0 calc(7px * var(--aura-scale)) rgba(var(--aura-color), 0.4))
      drop-shadow(0 0 calc(11px * var(--aura-scale)) rgba(var(--aura-color), 0.25));
  }
}
/* ชั้นนอก: ตัดเฉพาะซ้าย–ขวา */
.candidate-clip-x {
  overflow-x: hidden;
  overflow-y: visible;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120%;
}

.sec1-candidate-container .candidate-card-logo {
  width: 18%;
  height: 18%;
  position: absolute;
  top: 41%;
  right: 2%;
}
.sec1-candidate-container .candidate-card-rank {
  width: 36%;
  height: 36%;
  position: absolute;
  top: 34%;
  left: 4%;
  font-size: clamp(32px, 8vw, 82px);
  color: #fff;
  opacity: 1;
}
.sec1-candidate-container .is_blank .candidate-card-rank {
  color: #696967 !important;
}
.sec1-candidate-container .seat-badge {
  background: linear-gradient(180deg, #000000 0%, #014BAE 50%);
  height: 20%;
  text-align: center;
}
.sec1-candidate-container .is_blank .seat-badge {
  background: #dbdfe2 !important;
}
.seat-badge .number {
  color: #ffffff;
  font-size: clamp(16px, 5.8vw, 70px);
  line-height: clamp(20px, 6vw, 80px);
}
.seat-badge .text {
  color: #ffffff;
  font-size: clamp(9px, 1.8vw, 20px);
}
.is_blank .seat-badge .number {
  color: #696967 !important;
}
.is_blank .seat-badge .text {
  color: #696967 !important;
}
.opacity-bg {
  background: linear-gradient(to bottom, #014BAE77 0%, #014BAE00 95%);
  aspect-ratio: 2.5 / 1;
}
.candidate-box3 .text-lg {
  color: #014BAE;
  padding-top: 2%;
  font-size: clamp(10px, 1vw, 16px);
  text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;
}
.candidate-box3 .text-xs {
  display: none;
  color: #014BAE;
  padding-top: 2%;
  font-size: clamp(10px, 1vw, 16px);
  text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;
}
.is_blank .candidate-box3 .text-lg {
  color: #696967 !important;
}
.is_blank .candidate-box3 .text-xs {
  color: #696967 !important;
}
.candidate-card-1 {
  top: 0;
  left: 35%
}
.candidate-card-2 {
  margin-top: 10%;
  left: 0;
  width: 25% !important;
}
.candidate-card-3 {
  margin-top: 10%;
  right: 0;
  width: 25% !important;
}
.candidate-card-4 {
  margin-top: 49%;
  left: 20%;
  width: 25% !important;
}
.candidate-card-5 {
  margin-top: 49%;
  right: 15%;
  width: 25% !important;
}
.sec1-results-container {
  margin-top: 50%;
}
.sec1-results .result-box-area {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}
.sec1-results .result-text {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  bottom: 19%;
  font-size: 100px;
}
.sec1-results .result-update-text,
.sec1-results .result-condition-text {
  color: #004aad;
  margin: 5px 0;
  text-align: center;
}
.sec1-results .result-box-area2 {
  width: 100%;
  max-width: 420px;
  background-color: #ffffff;
  border-radius: 0 0 25px 25px;
  border: solid #2b4899 1px;
  border-top: solid #2b4899 5px;
  margin: 0 auto;
}
.sec1-results .result-box-area3 {
  width: 100%;
  max-width: 420px;
  background-color: #ffffff;
  border-radius: 0 0 25px 25px;
  border: solid #eb5a2c 1px;
  border-top: solid #eb5a2c 5px;
  margin: 0 auto;
}
.sec1-results .box-area-head {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #cccccc;
  align-items: flex-end;
}
.box-area-head .bah-title {
  padding: 5px;
  font-size: 20px;
  color: #2b4899;
  font-weight: 700;
}
.box-area-head .bah-desc {
  font-size: 14px;
  color: #777777;
  padding: 5px;
}
.result-box-area2 .bah-title,
.result-box-area2 .box-area-foot {
  color: #2b4899;
}
.result-box-area3 .bah-title,
.result-box-area3 .box-area-foot {
  color: #eb5a2c;
}
.sec1-results .box-area-foot {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}

/* Section2 */
.sec2-menu {
  width: 100%;
  background: #fff3ee;
  border-radius: 18px;
  padding: 14px;
  margin-top: 30%;
  position: relative;
}

.menu-header {
  background: #292728;
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  font-weight: 700;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  font-size: clamp(16px, 1.5vw, 28px);
}

.menu-header .icon {
  padding: 10px 15px;
  color: #EC5B2E;
}

.menu-header .text {
  border-radius: 14px;
  background: #615D5A;
  padding: 10px 15px;
  width: 100%;
  text-align: center;
}

.menu-content {
  margin-top: 20%;
  font-size: clamp(16px, 1.5vw, 24px);
}

.item {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  color: #555;
  font-weight: 500;
  cursor: pointer;
}

.item.highlight {
  background: #fff;
  border-radius: 20px;
  color: #ff5a1f;
  font-weight: bold;
  box-shadow: 1px 1px #cccccc;
}

.count {
  white-space: nowrap;
}

.tip-box {
    background-color: #ffffff;
    border-radius: 0 0 0 30px;
    border: solid #eb5a2c 1px;
    border-top: solid #eb5a2c 5px;
    margin: 0 auto;
    padding: 10px;
    color: #555;
    min-width: 250px;
}
.tip-box .tip-head {
    display: flex;
    justify-content: flex-start;
    border-bottom: solid 1px #cccccc;
    align-items: center;
    gap: 5px;
    padding-bottom: 5px;
    font-weight: 700;
}
.tip-box .tip-head .p_logo,
.tip-box .tip-foot .c_desc img,
.sec2-list .slide-item .s-body img
 {
    width: 30px;
    height: 30px;
}
.tip-box .tip-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding-top: 5px;
}
.tip-box .tip-foot .c_desc {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tip-box .tip-foot .c_vote {
  font-weight: 700;
}
.tippy-box[data-theme~='custom'] {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.tippy-box[data-theme~='custom'] .tippy-content {
  padding: 0;
}
.svg-fade-enter {
  opacity: 0;
}
.svg-fade-enter-active {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.sec2-list {
  width: 100%;
  background: #fff3ee;
  border-radius: 18px;
  padding: 14px;
  position: relative;
}
.sec2-list .head-text {
  font-size: clamp(20px, 1.5vw, 26px);
  color: #0C469A;
  text-align: center;
}

.sec2-list .slide-item .s-head {
  color: #FF5A1F;
  border-bottom: solid #cccccc 1px;
  font-weight: 400;
  text-align: center;
  font-size: clamp(16px, 1.5vw, 20px);
}
.sec2-list .slide-item .s-body {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  margin: 5px;
}
.font-b {
  font-weight: 500;
}
.sec2-list .slide-item .s-body .s-body-desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#sec2-slide-container {
  padding-bottom: 42px;
  font-size: clamp(12px, 2vw, 16px);
  min-height: 857px;
}
#sec2-slide-container .carousel-control-prev,
#sec2-slide-container .carousel-control-next {
  height: 40px;
  bottom: 7px;
  top: unset;
}
#sec2-slide-container .slide-item {
  margin: 10px 0;
  background: #ffffff;
  padding: 5px;
  border-radius: 18px;
  box-shadow: 1px 1px #cccccc;
}
#sec2-slide-container .carousel-item {
  min-height: 760px;
}
#mapSvg rect, #mapSvg text {
  cursor: pointer;
}
#mapSvg #Bangkok_x2B_5 rect, #mapSvg #Bangkok_x2B_5 text {
  cursor: unset;
}

/* Section3 */
.section3 {
  margin-top: 5%;
}
.sec3-party-container {
  background-color: #fff;
  border-radius: 15px;
  margin-top: 12%;
}

.sec3-title {
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.sec3-desc {
  color: var(--ink);
  text-align: center;
  width: 100px;
  float: right;
  margin-right: 3%;
}

#sec3-party-carousel {
  padding-bottom: 42px;
  min-height: 526px;
}

.sec3-party-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  border-radius: 0px 0px 15px 15px;
  overflow: hidden;
  background: #4a4a4a;
  margin: 10px auto;
}

.sec3-party-box .left {
  width: 18%;
  max-width: 70px;
  height: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec3-party-box .center {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 7px;
  gap: 12px;
  color: #fff;
  border-radius: 50px 0px 0px 50px;
  width: 50%;
  min-width: 150px;
}

.sec3-party-box .center .logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec3-party-box .center .party-name {
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
}

.sec3-party-box .right {
  width: 27%;
  min-width: 50px;
  height: 100%;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec3-party-carousel .carousel-control-prev,
#sec3-party-carousel .carousel-control-next {
  height: 40px;
  bottom: 7px;
  top: unset;
}

.sec3-percent-container {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 0px 0px 15px 15px;
  overflow: hidden;
  background: #E9E8E6;
  margin: 0 auto;
}
.percent-text {
  color: #083CA1;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  width: 40%;
}
.percent-num-text {
  color: #FE6200;
  font-size: 60px;
  font-weight: 700;
}
.sec3-update-text {
  color: #083CA1;
  text-align: center;
  font-size: 12px;
}

.sec3-c-title, .sec3-p-title {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 0px 0px 15px 15px;
  overflow: hidden;
  background: #615D5A;
  margin: 0 auto;
  font-size: clamp(16px, 1.5vw, 28px);
  color: #ffffff;
  justify-content: center;
  padding: 15px 10px;
}

.sec3-c-seats-container, .sec3-p-seats-container {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 5px;
  margin: 10px 0;
}
.sec3-p-seats-container .seat-p-text {
  grid-column: span 15;
	font-size: 14px;
  margin-bottom: 10px;
}

.tooltip-img {
  width: 50px;
  height: 50px;
}

.seat-box {
  aspect-ratio: 1 / 1;
  background-color: #ccc;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.sec3-btn {
    flex: 1;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 5px;
    background: #ff7a00;
    color: #fff;
    border-radius: 999px;
    cursor: pointer;
    width: 240px;
    position: fixed;
    bottom: 10px;
    right: 3%;
    z-index: 999999;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
#parliament {
  margin-top: 60px;
}
#all_seats circle {
  cursor: pointer;
  transition: 
    r 0.15s ease,
    opacity  0.15s ease;
}
.seat-hover-opacity {
  opacity: 0.3;
}
.seat-hover {
  transform: scale(1.08);
  opacity: 1 !important;
}
.seat-hover-circle {
  r: 8;
  opacity: 1 !important;
}

/* section4 */
.sec4-vote-result {
    width: 100%;
    margin-top: 10%;
}

.vote-title {
    font-size: 22px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}

.vote-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vote-bar {
    flex: 1;
    display: flex;
    height: 44px;
    border-radius: 22px;
    background: #ddd;
    margin: 30px 0;
}

.vote {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-weight: bold;
    color: #fff;
}

.vote.title-text {
    font-size: 28px;
    width: 30%;
    background: #014BAE;
    justify-content: center;
}

.vote-container { 
  width: 100%;
  position: relative;
  
}
.vote-container .value {
  position: relative;
  z-index: 5;
  font-size: clamp(16px, 1.5vw, 20px);
}
.vote.agree {
    width: 25%;
    height: 100%;
    background: #63b18c;
    position: absolute;
    z-index: 4;
    border-radius: 30px;
}
.vote.agree .score {
    position: absolute;
    top: -24px;
    right: 10px;
    color: #63B18C;
}
.vote.disagree {
    width: 50%;
    height: 100%;
    background: #d72626;
    position: absolute;
    z-index: 3;
    border-radius: 30px;
}
.vote.disagree .score {
    position: absolute;
    bottom: -24px;
    right: 10px;
    color: #d72626;
}
.vote.abstain {
    width: 75%;
    height: 100%;
    background: #bdb7b3;
    position: absolute;
    z-index: 2;
    border-radius: 30px;
}
.vote.abstain .score {
    position: absolute;
    top: -24px;
    right: 10px;
    color: #bdb7b3;
}
.vote.invalid {
    width: 100%;
    height: 100%;
    background: #9e9e9e;
    position: absolute;
    z-index: 1;
   border-radius: 30px;
}
.vote.invalid .score {
    position: absolute;
    bottom: -24px;
    right: 10px;
    color: #9e9e9e;
}
.vote-percent {
    font-size: 32px;
    font-weight: bold;
    white-space: nowrap;
}

.vote-legend {
    display: flex;
    gap: 16px;
    font-size: 14px;
    background-color: #EAEAE8;
    padding: 10px;
    border-radius: 5px;
    justify-content: center;
    margin-top: 12px;
}

.vote-legend div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot.green { background: #63b18c; }
.dot.red { background: #d72626; }
.dot.gray { background: #bdb7b3; }
.dot.lightgray { background: #9e9e9e; }

.vote-title .line-box {
  width: 100%;
  position: relative;
}

.vote-title .line-box .lineo { 
  width:  15px;
  height: 15px;
  border-radius: 20px;
  background-color: #40403E;
  position: absolute;
  left: calc(75% - 2px);
  top: -8px;
  z-index: 3;
} 
.vote-title .line-box .line1 { 
  width: 75%;
  height: 5px;
  border-radius: 5px;
  background-color: #40403E;
  position: absolute;
  z-index: 2;
} 
.vote-title .line-box .line2 { 
  width: 100%;
  height: 1px;
  background-color: #777777;
  position: absolute;
  top: -1px;
  z-index: 1;
} 
.sec4-vote-result .line-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.sec4-vote-result  .line-box  .line-end { 
  width: 100%;
  height: 1px;
  background-color: #777777;
} 
.sec4-vote-result .text-end { 
  font-size: 12px;
  color: #777777;
} 

  

@media (max-width: 992px) {
  body {
    overflow: unset !important;
  }
  .waiting-election-alert {
    width: 100%;
    top: 10px;
  }
  .election-logo {
    max-width: 60%;
    position: unset;
    width: 100%;
    margin: 0 auto;
  }
  .sec1-results .result-text {
    font-size: clamp(40px, 10vw, 140px);
    bottom: 5%;
  }
  .sec1-results-container-mobile {
    display: flex !important;
  }
  .sec1-results-container {
    display: none;
  }
  .mononews-logo {
    display: none;
  }
  .menubar {
    flex: 0 0 100%;
    max-width: 100%;
    background: none;
    flex-direction: column;
    box-shadow: none;
  }
  .title {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .sec1-candidate-container .candidate-card-bg {
    border-radius: 20px 20px 0 0;
  }
  .candidate-box3 .text-lg {
    display: none;
  }
  .candidate-box3 .text-xs {
    display: block;
  }
  .sec1-results {
    margin-top: 5%;
  }
  .sec4-vote-result, .sec3-party-container {
    margin-top: 0;
  }
  .sec2-menu {
     margin-top: 0;
  }
  .menu-content {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
  }
  .menu-content .count {
    display: none;
  }

  #sec2-slide-container {
    min-height: 827px;
  }
  .sec3-mb-more {
    margin-bottom: 60px !important;
  }
  #parliament {
    margin-top: 10px !important;
    margin-bottom: 60px !important;
  }
}

@media (max-width: 576px) {
  .sec1-candidate-container .candidate-card-person img {
    --aura-scale: 0.5;
  }
  .title {
    font-size: 20px;
  }
  .menu-group i { display: none; }
  .sec3-party-box {
    height: 60px;
    padding-left: 5px;
  }
  .sec3-title {
    font-size: 20px;
  }
  .sec3-party-box .center {
    gap: 5px;
  }
  .sec3-party-box .center .logo {
    width: 30px;
    height: 30px;
  }
  .sec3-party-box .left {
    width: 35px;
    font-size: 16px;
  }
  .sec3-party-box .right {
    font-size: 25px;
  }
  .sec3-party-box .center .party-name {
    font-size: 14px;
    line-height: 15px;
  }
  .sec3-percent-container .percent-num-text {
    font-size: 40px;
  }
  .sec3-c-title, .sec3-p-title {
    font-size: 20px;
  }
  .vote-legend {
    margin-top: 0;
  }
  .vote.title-text {
    display: none;
  }
  .vote-container {
    width: 100%;
  }
  .sec1-candidate-container .candidate-card-bg {
    border-radius: 12px 12px 0 0;
  }
  #sec3-party-carousel {
    min-height: 426px;
  }
  .sec3-btn {
    width: 40px;
    height: 40px;
  }
  .sec3-btn .text {
    display: none;
  }
}

