/*modal*/
.iatup_modal:not(.active),.iatup_content:not(.active),.iatup_result:not(.active), .iatup_modal form.iatup_form:not(.active) {
    display: none;
}
.iatup_modal {
    position: fixed;
    background: #00000060;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
}
.iatup_modal .iatup_content {
    background: #fff;
    width: 800px;
    margin: 100px auto 0;
    padding: 20px 40px;
    border-radius: 30px;
    overflow-y: auto;
    height: calc(100vh - 200px);
}
.iatup_modal .iatup_content::-webkit-scrollbar {
    width: 0;
}
.iatup_modal .iatup_loading {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff0;
    height: 100%;
}
.iatup_loading>img {
    width: 40px;
}
.iatup_modal .iatup_close {
    position: absolute;
    font-size: 60px;
    right: 20px;
    top: 40px;
    line-height: 20px;
    cursor: pointer;
    color: #000;
}
.iatup_modal .iatup_content h3 {
    font-size: 26px;
    line-height: 32px;
}
.iatup_modal p {
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 16px;
}
.iatup_modal span.iatup_place {
    font-weight: bolder;
    line-height: 24px;
    font-size: 16px;
    color: #1e73be;
    cursor: pointer;
}
.iatup_modal .change_missions {
    margin-left: 10px;
    cursor: pointer;
}
.iatup_modal .submit {
    display: flex;
    gap: 10px;
    background: #fff;
    box-shadow: 0 0 10px #ccc;
    margin: 10px auto;
    width: 500px;
    border-radius: 30px;
    padding: 10px;
    justify-content: space-between;
}
.iatup_modal .submit>input {
    flex-basis: 65%;
    border: 0;
    outline: 0;
    font-size: 16px;
    background: #fff;
}
.iatup_modal .submit>input:focus {
    background: #fff;
}
.iatup_modal .submit>button {
    border-radius: 30px;
    height: 40px;
    background: #5390f5;
    line-height: 20px;
}
.iatup_modal .iatup_username img {
    width: 50%;
}
@media (max-width:767px) {
    .iatup_modal .iatup_content {
        width: 100%;
        padding: 10px;
    }
    .iatup_modal .submit {
        width: 100%;
    }
    .iatup_modal .submit>input {
        flex-basis: 50%;
        width: 150px;
    }
    .iatup_modal .iatup_content h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .iatup_modal .iatup_username img {
        width: 100%;
    }
}