* {
    box-sizing: border-box;
    font-size: 0;
    margin: 0;
}

.vote-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.skincare-container {
    width: 100%;
}

.vote-header {
    width: 100%;
    padding-top: 6.1vw;
    position: relative;
}

#skincare {
    padding-top: 0;
}

.experience-header {
    margin-bottom: 0;
}

.vote-header-img {
    width:100%;
    cursor: pointer;
}

.vote-item-container {
    width: 90%;
    text-align: left;
    margin-left: 5%;
    margin-right: 5%;
    display: none;
    margin-bottom: 5vw;
}

.vote-cat-container {
    margin-top: 5vw;
}

.cat-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 3vw;
    margin-bottom: 3vw;
}

.cat-vote-item {
    width: 23%;
    display: inline-block;
    vertical-align: top;
    height: 42.15vw;
    position: relative;
}

.vote-left {
    margin-right: 1.33%;
}

.vote-mid {
    margin-right: 1.33%;
    margin-left: 1.33%;
}

.vote-right {
    margin-left: 1.33%;
}

.cat-item-img {
    width: 100%;
}

.cat-item-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8vw;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    margin-top: 1.5vw;
    margin-bottom: 0.5vw;
    padding: 0.5vw 0;
}

.cat-item-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.95vw;
}

.cat-vote-btn {
    width: 35%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.form-background {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 4;
    top: 0;
    left: 0;
    display: none;
}

.form-container {
    width: 40%;
    left:50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.form-bg {
    width: 100%;
    border-radius: 2%;
    border: 1px solid black;
}

.form-header {
    width: 80%;
    margin-left: 10%;
    margin-top: 10%;
    animation: expand 1s linear infinite;
}

.form {
    position: absolute;
    top: 0;
}

.giveaway-form {
    margin-top: 5%;
    width: 80%;
    margin-left: 10%;
}

.giveaway-form > label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    font-weight: 400;
    line-height: 2vw;
}

.giveaway-form > input {
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    width: 100%;
    margin-bottom: 4%;
    font-weight: 400;
    height: 2vw;
    padding-left: 1vw;
}

.user-vote {
    display: none;
}

#submit-giveaway {
    width: 20%;
    padding: 0;
    border: 1px solid black;
    border-radius: 2vw;
    margin-left: 40%;
    margin-right: 40%;
    cursor: pointer;
}

.close-form {
    font-family: 'Montserrat', sans-serif;
    font-size: 6vw;
    position: absolute;
    top: 6%;
    right: 1%;
    font-weight: 20;
    line-height: 0;
    cursor: pointer;
}

.form-required {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size:0.8vw;
    text-align: right;
}

@keyframes expand {
    0%   {
        transform:scale(1);
    }
    50%   {
        transform:scale(1.1);
    }
    100% {
        transform:scale(1);
    }
}

@media screen and (max-width: 479px) {

    .vote-header {
        padding-top: 10.7vw;
    }


    .vote-item-container {
        width: 86%;
        margin-left: 7%;
        margin-right: 7%;
    }

    .vote-cat-container {
        padding-bottom: 10vw;
        margin-top: 10vw;
        border-bottom: 1px solid black;
        margin-bottom: 0;
    }
    
    .cat-vote-item {
        width: 48%;
        height: 85.57vw;
    }

    .vote-left {
        margin-right: 4%;
    }

    .vote-right {
        margin-left: 4%;
        margin-top: 5vw;
    }

    .vote-mid {
        margin: 0;
    }

    .vote-mid-2 {
        margin-top: 5vw;
    }

    .cat-title {
        font-size: 4.5vw;
    }

    .cat-item-name {
        font-size: 3.3vw;
        line-height: 3vw;
        padding: 2vw 0;
        margin-top: 3vw;
    }

    .cat-item-desc {
        font-size: 2.3vw;
    }

    .cat-vote-btn {
        width: 40%;
        margin-top: 0vw;
    }

    .form-container {
        width: 96%;
    }

    .giveaway-form {
        margin-top: 3%;
    }

    .giveaway-form > input {
        font-size: 3vw;
        height: 6vw;
    }

    .giveaway-form > label {
        font-size: 3vw;
        line-height: 4vw;
    }

    .form-header {
        margin-top: 7%;
    }

    #submit-giveaway {
        width: 30%;
        margin-left: 35%;
        border-radius: 5vw;
        margin-top: 4%;
    }

    .form-required {
        font-size: 2vw;
    }

    .close-form {
        font-size: 14vw;
    }


}