 @charset "utf-8";
 :root {
   --font-base: "proxima-nova", sans-serif;
   --font-headline: "proxima-nova", sans-serif;
   --font-handwriting: 'Special Elite', cursive;
   --color-text: #292929;
   --color-white: #fff;
   --color-black: #000;
   --color-purple: #35144f;
   --color-dark: #292929;
   --color-light: #bababa;
   --style-border: 0.5px solid #393838;
 }
 body {
   font-size: 16px;
   color: var(--color-text);
   background-color: var(--color-transparent);
   /*   background-color: #F2F4F4;*/
   font-family: var(--font-base);
   font-style: normal;
   font-weight: 400;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   overflow: hidden;
   position: fixed;
   width: 100%;
   height: 100%;
   transform: translate3d(0, 0, 0);
   padding: 15px 0px;
 }
 .not-select {
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
 }
 .is-hide {
   display: none !important;
 }
 .is-show {
   display: block !important;
 }
 .el-map svg {
   width: 100% !important;
 }
 p {
   line-height: 150%;
   margin-bottom: 25px;
 }
 a {
   text-decoration: none;
   outline: none;
   color: var(--color-base);
 }
 button, a {
   outline: none;
   transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -webkit-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
 }
 h1, h2, h3, h4, h5, h6 {
   font-weight: 400;
   font-size: 100%;
   font-family: var(--font-headline);
 }
 /*Start theme css*/
 .main-wrapper {
   position: relative;
   width: 100%;
   max-width: 400px;
   margin: 0px auto;
   border-radius: 5px;
   overflow: hidden;
   box-shadow: 0px 0px 16px 0 rgba(25, 42, 70, .13);
   background-color: var(--color-white);
 }
 .header-wrapper {
   background-color: var(--color-dark);
   position: relative;
   height: 60px;
 }
 .header-wrapper a {
   display: block;
   position: absolute;
   top: 50%;
   transform: translate3d(0, -50%, 0);
   pointer-events: none;
 }
 .header-wrapper a img {
   width: 100%;
 }
 .header-wrapper a.live-tracker {
   width: 70px;
   left: 10px;
 }
 .header-wrapper a.my-vote {
   width: 48px;
   right: 9px;
 }
 .nav-wrapper {
   padding: 20px 15px 15px 15px;
 }
 .nav-wrapper h2 {
   font-size: 15px;
   font-weight: 700;
   color: var(--color-light);
   line-height: 100%;
   text-transform: uppercase;
   margin-bottom: 10px;
 }
 .nav-wrapper .btn-view-all {
   position: absolute;
   top: 8px;
   right: 5px;
   display: block;
   line-height: 100%;
   color: var(--color-purple);
   padding: 10px;
   font-weight: 600;
 }
 .body-wrapper {
   min-height: 400px;
 }
 .nav-items {
   margin: 0px -5px;
 }
 .nav-items li {
   float: left;
   overflow: hidden;
   margin: 0px 5px;
 }
 .nav-items a {
   display: block;
   width: 38px;
   height: 33px;
   background-color: #858585;
   border-radius: 3px;
   padding: 0px 15px;
   line-height: 33px;
   font-size: 15px;
   font-weight: 600;
   color: var(--color-white);
   overflow: hidden;
   transition: all 0.3s ease-in-out;
   position: relative;
   text-align: right;
 }
 .nav-items a span {
   width: 0px;
   opacity: 0;
   padding-right: 3px;
   position: absolute;
   top: 0;
   left: 10px;
   transition: all 1s ease-in-out;
   transform: translate3d(-100%, 0, 0);
 }
 .nav-items li.is-active a {
   background-color: var(--color-purple);
   width: 100px;
 }
 .nav-items li.is-active a span {
   opacity: 1;
   transform: translate3d(0%, 0, 0);
 }
 .body-wrapper h3 {
   padding: 0px 15px 15px 15px;
   font-weight: 600;
   margin: 0;
   line-height: 130%;
 }
 .credit {
   position: absolute;
   bottom: 10px;
   left: 50%;
   transform: translate3d(-50%, 0px, 0px);
   width: 120px;
 }
 .credit img {
   width: 100%;
 }
 .content-wrapper {}
 .all-question {
   position: absolute;
   width: 100%;
   height: 100%;
   background-color: var(--color-white);
   top: 0;
   left: 0;
   z-index: 99;
   opacity: 0;
   pointer-events: none;
   transition: 0.3s all ease-in-out;
 }
 .is-modal .all-question {
   opacity: 1;
   pointer-events: auto;
 }
 .all-question h2 {
   font-size: 16px;
   line-height: 100%;
   color: var(--color-purple);
   font-weight: 600;
   position: absolute;
   top: 15px;
   left: 15px;
 }
 .all-question ul {
   background-color: #fafafa;
   margin-top: 45px;
   counter-reset: list-counter;
 }
 .all-question ul li {
   position: relative;
 }
 .all-question ul li::before {
   counter-increment: list-counter;
   content: counter(list-counter) ". ";
   position: absolute;
   color: var(--color-purple);
   font-weight: 600;
   top: 16px;
   left: 15px;
   line-height: 100%;
   font-size: 18px;
 }
 .all-question ul li:nth-child(even) {
   background: #fff
 }
 .all-question ul li:nth-child(odd) {
   background: #f5f5f5
 }
 .all-question ul li a {
   font-weight: 600;
   display: block;
   padding: 15px 15px 15px 40px;
   line-height: 140%;
 }
 .all-question ul li.is-active a {
   color: var(--color-purple);
 }
 .close-modal {
   position: absolute;
   top: 10px;
   right: 10px;
   width: 25px;
   height: 25px;
   display: block;
   z-index: 1;
   font-size: 0px;
   color: transparent;
   cursor: pointer;
   transition: all 0.3s ease-in-out;
 }
 .close-modal::after, .close-modal::before {
   width: 80%;
   height: 2px;
   background: #f0e1fe;
   z-index: 2;
   content: '';
   position: absolute;
   top: 12px;
   left: 2px;
   transform: rotate(45deg);
   transition: all 0.3s ease-in-out;
 }
 .close-modal::before {
   transform: rotate(-45deg);
 }
 .close-modal::after, .close-modal::before {
   background-color: #36154f;
 }
 .close-nav:hover::after, .close-nav:hover::before {
   background: #fff;
 }