/*modal*/
.iatub_modal:not(.active),.iatub_content:not(.active),.iatub_result:not(.active) {
    display: none;
}
.iatub_modal {
    position: fixed;
    background: #00000060;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
}
.iatub_modal .iatub_content {
    background: #fff;
    width: 800px;
    margin: 100px auto 0;
    padding: 20px;
    border-radius: 30px;
    overflow-y: auto;
    height: calc(100vh - 200px);
}
.iatub_modal .iatub_content::-webkit-scrollbar {
    width: 0;
}
.iatub_loading {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff0;
    height: 100%;
}
.iatub_modal .iatub_close {
    position: absolute;
    font-size: 60px;
    right: 20px;
    top: 40px;
    line-height: 20px;
    cursor: pointer;
    color: #000;
}
.iatub_loading>img {
    width: 40px;
}
.iatub_modal p {
    margin-bottom: 10px;
    line-height: 22px;
}
.iatub_modal button.change_missions {
    padding: 15px 20px;
    line-height: 0;
    border-radius: 30px;
    background-color: #fff0;
    text-transform: uppercase;
    color: #4285f4;
    border: 1px solid #4285f4;
    transition: all 0.2s;
    cursor: pointer;
    margin-left: 15px;
    font-size: 16px;
}
.iatub_modal button.change_missions:hover {
    background: #4285f4;
    color: #fff;
}
@media (max-width:767px) {
    .iatub_modal .iatub_content {
        width: 100%;
    }
}