@media screen and (max-width: 590px) {
    #MAIN_PAGE .col-xl-10, #MAIN_PAGE .col-lg-10{
        padding-left: 0!important;
        padding-right: 0!important;
    }
}

.frame_gift {
    width: 70%;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 6px 18px;
    border-radius: 80px;
    border: 3px solid #9BD3FF;
    color: #027DDF;
    font-weight: 700;
    text-align: center;
}

.frame_gift a {
    font-size: 13px;
    display: inline-block;
    padding: 2px 15px;
    color: #fff;
    background-color: #10AFFF;
    border-radius: 50px;
    margin: 0 5px;
}

@media screen and (max-width: 1200px) {
    .frame_gift {
        width: 90%;
    }
}


@media screen and (max-width: 590px) {
    .frame_gift {
        width: 100%;
    }
    .frame_gift a {
        margin: 3px 5px;
    }
}



.quiz_play_wrap {
    margin-top: 40px;
    padding: 0 10%;
}

.quiz {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    perspective: 1200px;
}

.quiz_slide {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    visibility: hidden;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    padding: 0 20px 20px 20px;
}


.question_wrap {
    width: 100%;
    height: 100%;
    /* padding: 0 50px; */
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 1px 5px #8ED9ff;
    padding: 0 0 0px 0;
}


.quiz_slide.active {
    visibility: visible;
    z-index: 1;
}

.number {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.number .number_box {
    width: 110px;
    height: 55px;
    background-color: #10AFFF;
    border-radius: 0 0 80px 80px;
    line-height: 48px;
    text-align: center;
    color: #ffffff;
    font-size: 22px;
}


.number .number_box span {
    font-weight: 400;
    font-size: 14px;
    color: #D1F0FF;
}

.question h3 {
    font-size: 23px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    text-align: center;
}

.answers {
    display: flex;
    padding: 20px 0 0px 0;
    justify-content: center;
}

.answers ul {
    width: 70%;
    display: flex;
}

.answers ul li {
    flex: 1;
    font-size: 80px;
    text-align: center;
}

.answers ul li:nth-child(1) {
    border-right: 2px dotted #00ADEF;
}

.answers label {
    position: relative;
    cursor: pointer;
}

.answers label [type="radio"] {
    display: none;
    width: 50px;
    height: 50px;
}

[type="radio"]+span {
    color: #E1E1E1;
}

[type="radio"]+span:hover {
    color: #FC3C1A;
}

[type="radio"]:checked+span {
    color: #FC3C1A;
}

[type="radio"]:checked+span:hover {
    color: red;
}


@media screen and (max-width: 990px) {
    
    .quiz_play_wrap{
       padding: 0 5%;
    }

    .question {
        padding: 0 20px;
    }

    .answers ul {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .quiz_play_wrap{
           padding: 0 15px;
    }
     .quiz_slide {
        padding: 0 0 20px 0;
     }
}

@media screen and (max-width: 590px) {

    .question {
        padding: 0 15px;
    }

    .question h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .quiz_play_wrap{
           padding: 0 0px;
    }
}


@media screen and (max-width: 440px) {
    .question h3 {
        font-size: 19px;
    }
}

.quiz_pic{
    width: 180px;
    margin: 0 auto;
    animation: pulse 1s infinite alternate;
    -webkit-animation: pulse 1s infinite alternate;
}
.quiz_pic img{
    margin-bottom: -2px;
}

@media screen and (max-width: 590px) {
    .quiz_pic{
        width:220px;
        margin: 0 auto;
    }
}

.quiz-slide-move-to-left {
    -webkit-animation: moveToLeft .4s ease both;
    animation: moveToLeft .4s ease both;
}

.pt-page-moveFromLeft {
    -webkit-animation: moveFromLeft .4s ease both;
    animation: moveFromLeft .4s ease both;
}

.quiz-slide-move-from-right {
    -webkit-animation: moveFromRight .4s ease both;
    animation: moveFromRight .4s ease both;
}


@-webkit-keyframes moveToLeft {
    from {}

    to {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes moveToLeft {
    from {}

    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-webkit-keyframes moveFromRight {
    from {
        -webkit-transform: translateX(100%);
    }
}

@keyframes moveFromRight {
    from {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.submit-block{
        margin: 20px 0 30px 0;
}