.tutorial_alert_popup{
    position: fixed;
    left: 0%;
    top: 0%;
    right: auto;
    bottom: auto;
    z-index: 1005;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    overflow: scroll;
}

.tutorial_alert_popup .tutorial_alert_popup_content{
    position: relative;
    margin: 0 auto;
    top: calc(50% - 285px);
    width: 850px;
    background-color: white;
    border-radius: 10px;
    height: 570px;
}

.tutorial_alert_popup .tutorial_alert_popup_content .close_img{
    position: relative;
    left: 92%;
    top: 15px;
    width: 18px;
    cursor: pointer;
}

.tutorial_alert_popup .tutorial_alert_popup_content .tutorial_steps{
    background-color: white;
}

.tutorial_alert_popup .tutorial_alert_popup_content .left_img{
    width: 46%;
    height: 570px;
    float: left;
    background-color: #e0e7f7;
    border-radius: 10px 40px 40px 10px;
}

.tutorial_alert_popup .tutorial_alert_popup_content .left_img_button{
    width: calc((100% - 240px) / 2);
    position: relative;
    top: 250px;
    height: 30px;
    float: left;
    text-align: center;
}

.tutorial_alert_popup .tutorial_alert_popup_content .left_img_button img{
    width: 30%;
    transform: rotate(90deg);
    filter: opacity(0.2);
    cursor: pointer;
}

.tutorial_alert_popup .tutorial_alert_popup_content .right_img_button{
    width: calc((100% - 240px) / 2);
    position: relative;
    top: 250px;
    height: 30px;
    float: left;
    text-align: center;
}

.tutorial_alert_popup .tutorial_alert_popup_content .right_img_button img{
    width: 30%;
    transform: rotate(-90deg);
    filter: opacity(0.2);
    cursor: pointer;
}

.tutorial_alert_popup .tutorial_alert_popup_content .tutorial_imgs{
    width: fit-content;
    height: 380px;
    margin: 0 auto;
    margin-top: 80px;
    overflow: hidden;
    float: left;
}

.tutorial_alert_popup .tutorial_alert_popup_content .tutorial_img{
    width: 240px;
    transition: 0.3s;
    position: relative;
    right: 20px;
}

.tutorial_alert_popup .tutorial_alert_popup_content .tutorial_img_buttons{
    position: relative;
    width: calc(7px * 4 + 3px * 9);
    margin: 0 auto;
    bottom: 15px;
    transition: 0.3s;
}

.tutorial_alert_popup .tutorial_alert_popup_content .tutorial_img_button{
    float: left;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: 3px;
    margin-right: 3px;
    cursor: pointer;
}

.tutorial_alert_popup .tutorial_alert_popup_content .right_content{
    width: 54%;
    height: 570px;
    float: left;
}

.tutorial_alert_popup .tutorial_alert_popup_content .right_contents{
    height: 480px;
}

.tutorial_alert_popup .tutorial_alert_popup_content .steps_title{
    width: 85%;
    margin-left: 5%;
}

.tutorial_alert_popup .tutorial_alert_popup_content .step_title{
    width: 50%;
    height: 30px;
    float: left;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    cursor: pointer;
}

.tutorial_alert_popup .tutorial_alert_popup_content .steps_bar{
    position: relative;
    width: 85%;
    margin-left: 5%;
    border-radius: 5px;
    background-color: whitesmoke;
    height: 6px;
    top: 5px;
}

.tutorial_alert_popup .tutorial_alert_popup_content .step_bar{
    width: 50%;
    height: 100%;
    background-color: #307bff;
    border-radius: 5px;
    float: left;
}

.tutorial_alert_popup .tutorial_alert_popup_content .step1_title{
    width: 85%;
    margin-left: 5%;
    margin-top: 30px;
    font-weight: 700;
    font-size: 15px;
}

.tutorial_alert_popup .tutorial_alert_popup_content .detail_steps{
    width: 85%;
    margin-left: 5%;
    background-color: whitesmoke;
    margin-top: 10px;
    padding: 35px 30px;
}

.tutorial_alert_popup .tutorial_alert_popup_content .detail_step{
    width: 100%;
    border-radius: 5px;
    height: 35px;
    cursor: pointer;
    transition: 0.3s;
}

.tutorial_alert_popup .tutorial_alert_popup_content .detail_step_num{
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #307bff;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 10px;
    top: 7px;
    left: 7px;
}

.tutorial_alert_popup .tutorial_alert_popup_content .detail_step_text{
    position: relative;
    width: 100%;
    text-align: center;
    bottom: 14px;
    font-size: 14px;
    transition: 0.3s;
}

.tutorial_alert_popup .tutorial_alert_popup_content .next_img{
    width: fit-content;
    margin: 0px auto;
}

.tutorial_alert_popup .tutorial_alert_popup_content .next_img img{
    width: 10px;
    opacity: 0.5;
}

.tutorial_alert_popup .tutorial_alert_popup_content .next_button{
    width: 85%;
    margin-left: 5%;
}

.tutorial_alert_popup .tutorial_alert_popup_content .next_button_text{
    padding: 8px 40px;
    background-color: #307bff;
    border-radius: 5px;
    width: fit-content;
    margin: 30px auto;
    margin-top: 20px;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

@media screen and (max-width: 900px){
    .tutorial_alert_popup{
        position: fixed;
        left: 0%;
        top: 0%;
        right: auto;
        bottom: auto;
        z-index: 1005;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.55);
        overflow: scroll;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content{
        position: relative;
        top: 0;
        bottom: 0;
        width: 90%;
        background-color: white;
        margin: 5% auto;
        height: 830px;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .close_img{
        position: relative;
        left: 92%;
        top: -312px;
        width: 18px;
        cursor: pointer;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .tutorial_steps{
        background-color: white;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .left_img{
        width: 100%;
        height: 320px;
        overflow: hidden;
        background-color: #e0e7f7;
        border-radius: 10px 10px 30px 30px;
    }

    .tutorial_alert_popup .tutorial_alert_popup_content .left_img_button{
        width: calc((100% - 210px) / 2);
        position: relative;
        top: 170px;
        height: 30px;
        float: left;
        text-align: center;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .left_img_button img{
        width: 30%;
        transform: rotate(90deg);
        filter: opacity(0.2);
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .right_img_button{
        width: calc((100% - 210px) / 2);
        position: relative;
        top: 170px;
        height: 30px;
        float: left;
        text-align: center;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .right_img_button img{
        width: 30%;
        transform: rotate(-90deg);
        filter: opacity(0.2);
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .tutorial_imgs{
        width: fit-content;
        height: 380px;
        margin: 0 auto;
        margin-top: 50px;
        overflow: hidden;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .tutorial_img{
        width: 210px;
        transition: 0.3s;
        position: relative;
        right: 20px;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .tutorial_img_buttons{
        position: relative;
        width: calc(7px * 4 + 3px * 9);
        margin: 0 auto;
        bottom: 390px;
        transition: 0.3s;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .tutorial_img_button{
        float: left;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        margin-left: 3px;
        margin-right: 3px;
        cursor: pointer;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .right_content{
        width: 100%;
        height: 500px;
        background-color: white;
        border-radius: 0px 0px 10px 10px;
        margin-bottom: 5%;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .right_contents{
        height: 410px;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .steps_title{
        width: 95%;
        margin-left: 2.5%;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .step_title{
        width: 50%;
        height: 30px;
        float: left;
        text-align: center;
        line-height: 30px;
        font-size: 15px;
        cursor: pointer;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .steps_bar{
        position: relative;
        width: 95%;
        margin-left: 2.5%;
        border-radius: 5px;
        background-color: whitesmoke;
        height: 6px;
        top: 5px;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .step_bar{
        width: 50%;
        height: 100%;
        background-color: #307bff;
        border-radius: 5px;
        float: left;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .step1_title{
        width: 95%;
        margin-left: 2.5%;
        margin-top: 30px;
        font-weight: 700;
        font-size: 13px;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .detail_steps{
        width: 95%;
        margin-left: 2.5%;
        background-color: whitesmoke;
        margin-top: 10px;
        padding: 35px 10px;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .detail_step{
        width: 100%;
        border-radius: 5px;
        height: 35px;
        cursor: pointer;
        transition: 0.3s;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .detail_step_num{
        position: relative;
        width: 20px;
        height: 20px;
        background-color: #307bff;
        color: white;
        border-radius: 50%;
        text-align: center;
        line-height: 20px;
        font-size: 10px;
        top: 7px;
        left: 7px;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .detail_step_text{
        position: relative;
        width: 100%;
        text-align: center;
        bottom: 13px;
        font-size: 12px;
        transition: 0.3s;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .next_img{
        width: fit-content;
        margin: 0px auto;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .next_img img{
        width: 10px;
        opacity: 0.5;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .next_button{
        width: 95%;
        margin-left: 2.5%;
    }
    
    .tutorial_alert_popup .tutorial_alert_popup_content .next_button_text{
        padding: 8px 40px;
        background-color: #307bff;
        border-radius: 5px;
        width: fit-content;
        margin: 30px auto;
        margin-top: 20px;
        color: white;
        font-size: 20px;
        cursor: pointer;
    }
}