@charset 'utf-8';

body {
    -webkit-tap-highlight-color: transparent;
}
.popu-vote input::-webkit-input-placeholder { color: #2a91b7;}
.popu-vote input::-moz-input-placeholder { color: #2a91b7;}
.popu-vote input::-ms-input-placeholder { color: #2a91b7;}

.popu-vote {
    width: 480px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    text-align: center;
    padding-top: 80px;
}
.popu-vote .popu-content {
    padding: 100px 25px 50px;
    border-radius: 10px;
    background: linear-gradient(120deg, #253358, #2a2e54 70%, #3a1d47 100%);
    position: relative;
}
.popu-vote .top-popu {
    position: absolute;
    right: 50%;
    top: 0;
    transform: translate(50%, -45%);
}
.popu-vote .top-popu img {
    -webkit-user-drag: none;
}
.popu-vote .btn-close {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}
.popu-vote .vote-description {
    font-size: 17px;
    color: #ffed19;
    margin-bottom: 15px;
}
.popu-vote .vote-question {
    color: #ffffff;
    margin: 10px 0;
    text-align: left;
}
.popu-vote .vote-list {
    color: #9ea9ca;
    margin-bottom: 15px;
}
.popu-vote .vote-list ul {
    text-align: left;
}
.popu-vote .vote-list ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 3px 20px;
}
.popu-vote .vote-list ul li span {
    display: inline-block;
    min-width: 50px;
}
.popu-vote .vote-list ul li span::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 16px;
    background: url(../images/popu-vote/icon-like.png) no-repeat center;
    background-size: contain;
    vertical-align: middle;
    margin-right: 3px;
}
.popu-vote .vote-list ul li.voted {
    background: #1b163a;
    border-radius: 20px;
    color: #ffffff;
}
.popu-vote .vote-list ul li.voted span::before {
    background-image: url(../images/popu-vote/icon-voted.png);
}
.popu-vote .vote-email {
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popu-vote .vote-email button {
    font-size: 15px;
    color: #ffffff;
    background: linear-gradient(to right, #3acef3, #e21454);
    border: none;
    outline: none;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 20px;
    position: relative;
    right: 20px;
    cursor: pointer;
}
.popu-vote .vote-email input {
    color: #ffffff;
    border: 1px solid #4bbbf3;
    outline: none;
    height: 38px;
    line-height: 38px;
    border-radius: 20px;
    padding: 0 50px 0 20px;
    background: transparent;
    position: relative;
    left: 20px;
}
.popu-vote .popu-success {
    color: #fff;
}
.popu-vote .popu-success img {
    position: relative;
    left: 10px;
}
.popu-vote .popu-success .success-title {
    font-size: 25px;
    line-height: 1.5;
    color: #fff;
    margin: 30px 0;
}
.popu-vote .popu-success .success-content {
    font-size: 17px;
    line-height: 1.5;
    color: #d5d5d5;
}
.popu-vote .vote-privacy {
    font-size: 13px;
    line-height: 1.5;
    color: #58627f;
    margin-top: 15px;
}
.popu-vote .mykk-wrap {
    flex: 1;
}
.popu-vote .mykk {
    border: none;
    background: transparent;
    border-bottom: 1px solid #9ea9ca;
    color: #fff;
    outline: none;
    width: 100%;
}

@media (max-width:479px){
    .popu-vote {
        font-size: 13px; 
        width: 340px;
        padding-top: 10px;}
    .popu-vote .vote-description {
        font-size: 13px;
        margin-bottom: 0;
    }
    .popu-vote .popu-content {
        padding: 30px 15px;
    }
    .popu-vote .top-popu {display: none;}
    .popu-vote .vote-list ul {margin-left: 0;}
    .popu-vote .vote-privacy {
        font-size: 11px;
    }
}


.popu-start-btn1 {
    margin: 20px 0;
}
.popu-start-btn1 a {
    color: inherit;
}
.popu-start-btn1 a:hover {
    text-decoration: underline;
}
.popu-start-btn1 img {
    margin-right: 10px;
}

.popu-start-btn2 {
    position: fixed;
    left: 300px;
    bottom: 10%;
}

.popu-start-btn2 img {
    animation: eggAnimate 1s ease-in-out infinite;
    position: relative;
    top: 0;
}
@keyframes eggAnimate {
    0% {top: -25px} 
    50% {top: -35px;} 
    100% {top: -25px}
}

@media (max-width:1550px){
    .popu-start-btn2 {
        position: fixed;
        left: 0;
        bottom: 10%;
    }
}