.mzone-container{
    display: block;
    padding: 0;
    min-height: 100vh;
    background-color: var(--gray-50);
    width: 100%;
}
.mzone-header{
    width: 100%;
    background-color: var(--black);
    padding: 1rem 0;

}
.mzone-header-in{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 1rem 1rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    width: 96%;
    background-color: var(--black);
}
.mzone-header .mzone-logo, .mzone-header .mzone-logo img{margin: 0; padding: 0; }



/* SIGNUP / Login */
.all-window-container {
    background-color: var(--secondary);
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    text-align: center
}

.login_page_row {
    width: 100%;
    padding: 1.5rem 0
}

a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600
}

/* 
*/
a:hover {
    text-decoration: underline
} 

a:hover {
    color: var(--primary)
}

.logo_login_cnt {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem
}

.logo_login {
    width: 200px;
    height: auto;
    margin-bottom: 1rem
}

.form_login_cnt {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1.75em
}

.login_switch_type {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--primary)
}

.login_footer_mess {
    margin-top: 2rem;
    padding: 1rem 0
}
.login_footer_mess a{
    color: var(--primary);
    /* font-weight: 600; */
    text-decoration: underline
}
.login_footer_mess a:hover{
    color: var(--yellow-100)
}

.half-window-container {
    background-color: var(--secondary);
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    padding: 0
}

.signup_col {
    background-color: var(--white);
    width: 100%;
    min-height: 100vh;
    padding: 0 1rem;
}

.signup_col_in {
    width: 100%;
    max-width: 400px
}

.signup_form_cnt {
    padding: 0;
    border-radius: 1.75em
}

.signup_step_back {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.signup_step_back .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    padding: .6rem .2rem .6rem .8rem;
    border-radius: .2rem;
    text-align: center;
    background-color: var(--gray-50)
}

.signup_current_step_text {
    padding: .2rem .5rem
}

.signup_current_step_name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    text-transform: uppercase;
    padding-bottom: 1rem
}

.signup_steps {
    padding: 2rem .5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem
}

.signup_step {
    display: block;
    height: 1rem;
    width: 100%;
    background: var(--gray-50);
    border-radius: .6rem
}

.signup_step.active {
    background: var(--secondary)
}

.signup_page_head {
    height: 3rem;
    padding: 2rem 2rem 3rem 1rem;
    
    width: 100%
}

.signup_fields {
    padding: 1rem 0
}


.mess_thankyou{
    text-align: center;
    margin: 0 auto;
}
.mess_thankyou *{
    margin: 0;
    padding: 1rem 0;

}
.mess_thankyou img{
    width: 100%;
    max-width: 260px;
    margin: 0 auto 2rem auto;
    display: block;
}


/* Area Riservata */

.mzone-main{
    /* 
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row; 
    */
    display: grid;
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    width: 96%;
    gap: 2rem;
}
.mzone-main.mzone-main-w-sidebar{
    grid-template-columns: 250px 1fr ;
    column-gap: 1rem;
}
.mzone-sidebar{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    /* padding: 1rem; */
}
.mzone-sidebar-inner{
    text-align: center;
}
.mzone-sidebar-link a span{
    display: inline;
    padding: 0 0;
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 300;
    font-size: .875rem;
}
.mzone-sidebar-link a{
    display: block;
    padding: 1rem 1rem;
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 300;
    font-size: .875rem;

}
.mzone-sidebar .mzone-sidebar-title{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    padding: 1rem 0;
}

.mzone-content{
    width: 100%;
    gap: 10px;
}

.mzone-content.mzone-content-2col{
    display: grid;
    grid-template-columns: 1fr 290px;
    column-gap: 2rem;
}
.mzone-content.mzone-content-corso-detail{
    display: grid;
    grid-template-columns: 1fr 290px;
    column-gap: 2rem;
}
.mzone-block-full-white{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem;
    gap: 1rem;
    background-color: var(--white);
    border-radius: 1.75em;
}

.mzone-block{
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 1.75em;
}
.mzone-block.mzone-block-gray{
    background-color: var(--gray-200);
}


.mzone-video-cnt{
    display: block;
    width: 100%;
    padding: 0;
    background-color: var(--white);
    border-radius: 1.75em;
}
.mzone-video{
    width: 100%;
    height: auto;
    border-radius: 1.75em;
}

.corso-capitoli-sidebar-list{
    border-radius: 1rem;
    border: 1px solid var(--primary);
    overflow: hidden;
}
.corso-capitoli-sidebar-list-header{
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    padding: 1rem .7rem .7rem .7rem;
    background-color: var(--violet-50) ;
}
.corso-capitoli-sidebar-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.corso-capitoli-sidebar-list ul li{
    padding: .3rem 0;
    border-top: 1px solid var(--primary);
}
.corso-capitoli-sidebar-list ul li a{
    padding: .5rem .7rem .3rem .7rem;
    display: block;
    font-size: 16px;
    font-weight: 400;
}
.corso-capitoli-sidebar-list ul li.active a{
    font-weight: 600;
}

/* .corso-capitoli-sidebar-list ul li ul li{
    padding: .1rem .2rem;
} */

.corso-sidebar-richiamo{
    padding: 0;
    border-radius: 25px;
    margin-top: 1rem;

    background-color: var(--black);
    color: var(--white);
    flex: none;
    overflow: hidden;
    z-index: 1;
}

.corso-sidebar-richiamo-in {
    display: flex;
    font-size: 16px;
    padding: 25px 25px 25px 25px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--white);
}

.corso-sidebar-richiamo-in a {
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
    color: #FFF;
}
.corso-sidebar-richiamo-in a:hover {
    color: inherit;
    text-decoration: underline;
}
.mzone-content .corso-sidebar-richiamo-in h2,
.mzone-content .corso-sidebar-richiamo-in h3,
.mzone-content .corso-sidebar-richiamo-in h4,
.mzone-content .corso-sidebar-richiamo-in h5{
    font-family: var(--champ);
    color: var(--white) !important;
    line-height: 1;
}
.mzone-content .corso-sidebar-richiamo-in h6,
.mzone-content .corso-sidebar-richiamo-in p{
    color: var(--white) !important;
    line-height: 1.2;
}

.corso-sidebar-richiamo-bg-txt {
    color: transparent;
    background-color: transparent;
    font-weight: 700;
    font-family: var(--champ);
    font-size: 3.1rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #fff;
    white-space: nowrap;
    position: absolute;
    bottom: .4rem;
    left: 0;
    opacity: 0.6;
}




.mzone-content *{color: #494B50;}
.mzone-content .ui_user_mess, .mzone-content .ui_user_mess *{color: #FFF;}
.mzone-content h1, .mzone-content h2, .mzone-content h3, .mzone-content h4, .mzone-content h5, .mzone-content h6{color: #2C2C2C; font-family: var(--epilogue);}

.mzone-content h2{
    font-size: 36px;
}

.mzone-content h4{
    padding-bottom:.5em;
}
.mzone-content p.testo-intro-dashboard{
    padding: 0 0 2.5em 0;
}

.back_account a{display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 14px; color: #2C2C2C;}
.back_account a{text-decoration: none;}
.back_account span.back_account_ico{ font-weight: 500; margin-right: 5px; display: inline-block; padding: 7px 3px 7px 10px; background-color: var(--gray-200); border-radius: 5px; text-align: center; width: 40px; overflow: hidden;}

.mzone_dash_col_1{width: 100%; }
.mzone_dash_col_2{width: 40%;}

.mzone_academy_list_cnt{
    padding: 1rem;
    display: grid;
    grid-template-columns: 250px 1fr;
}
.mzone_academy_list_items{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;   
}
.mzone_academy_items_elenco{
    display: flex;
    flex-direction: column;
    gap: 1rem;

    padding-left: 1rem;
}
.mzone_academy_items_elenco_item{
    display: block;
}

h6.form-block-title{ font-size: 13px; text-transform: uppercase; font-weight: bold; color: var(--gray-300);}
.mzone_fields{ width: 100%; margin: 10px auto; max-width: 450px;}
.mzone_fields .form_field.form_field_flex{ display: flex; flex-direction: row; align-items: center; gap: 10px; margin-bottom: 20px;}
.mzone_fields .form_field.form_field_flex label{ width: 100px;}
.mzone_fields .save_tools{ width: 100%; display: flex; justify-content: flex-end;}
.form_field_note{ font-size: 12px; color: var(--gray-500); margin-top: 5px;}
    .miei_corsi_cnt{display: flex; flex-direction: column; gap: 20px; padding: 15px 20px; background-color: var(--gray-50); border-radius: 15px;}
    .p_tit{font-size: 18px; font-weight: 500; padding: 0;}

    .miei_contenuti_cnt{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .mzone_big_number{font-size: 55px;}

    .mzone_dash_completed{color: #B1B5BE; display: flex; align-items: center; gap: 10px;}
    .mzone_dash_completed img{width: 25px; margin-top: -3px;}

.tit_sezione{display: flex; justify-content: space-between; align-items: center;}
    .tit_sezione img{width: 50px;}

    .mzone_row{display: flex; gap: 10px; margin: 10px 0;}

    .mzone_box{flex: 1; background-color: var(--gray-50); padding: 15px 20px; border-radius: 15px; position: relative; }
        .box_wishlist, .box_professionale{min-height: 180px;}

        .box_wishlist::after{content: ''; width: 50px; height: 50px; position: absolute; background: url(/assets/img/segnalibro.svg) no-repeat center; background-size: contain; right: 10px; bottom: 10px;}
        .box_professionale::after{content: ''; width: 50px; height: 50px; position: absolute; background: url(/assets/img/valigia.svg) no-repeat center; background-size: contain; right: 10px; bottom: 10px;}


    .mzone_row_vertical{flex-direction: column;}
        .box_row_lungo{display: flex; align-items: center;}
            .box_row_lungo img{width: 25px; margin-right: 15px;}
            .box_row_lungo::after{content: ''; width: 15px; height: 20px; position: absolute; background: url(/assets/img/arrow_right.svg) no-repeat center; background-size: contain; right: 10px; top: 20px;}


        
        .mzone-dati-accesso-sidebar-in{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            padding: 1rem;
            background-color: var(--white);
            border-radius: 1.75em;
            border: 1px solid var(--primary);
        }
        .box_dati_accesso{display: flex; flex-direction: column; align-items: center;}

            .p_tit_dati{background-color: var(--violet-50); border-radius: 50px; padding: 7px 15px 5px 15px; font-size: 14px;}

            .box_dati_accesso h6{margin-top: 30px; font-size: 18px;}
            .span_grigio{color: #B1B5BE;}

            .mod_dati{margin-top: 30px; padding-left: 20px; background: url(/assets/img/modifica.svg) no-repeat left center; cursor: pointer; text-decoration: none; font-weight: 400;}

.mzone_ordini_list{
    background-color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 15px;
    overflow: hidden;
}
.mzone_ordini_item{
    display: grid;
    grid-template-columns: 1fr 3fr 2.5fr 1fr 1fr;
    border-top: 1px solid var(--primary);
}
.mzone_ordini_item_header, .mzone_ordini_item_header *{
    background-color: var(--primary);
    color: var(--white);
    font-weight: bold;
    border-top: none;
}
.mzone_ordini_item_col{
    padding:.6rem .4rem;
    font-size: .75rem;
    border-right: 1px solid var(--primary);
}
.mzone_ordini_item_data{ text-align: center;}
.mzone_ordini_item_totale{
    text-align: right;
}
.mzone_ordini_item_tipo{ font-size: .65em;}
.mzone_ordini_item_tools{
    text-align: center;
    border-right: none;
}
.paga-ora{
    text-transform: uppercase;
   
    color: var(--gray-500);
    margin: 0;
    padding: 0;
    line-height: 1;
}


            
@media screen and (min-width: 769px) {
    /* .half-window-container {
        background-image:url(/assets/img/bg-signup-page.svg);
        background-repeat: no-repeat;
        background-position: 100%;
        background-attachment: fixed;
        background-size: 50%
    } */

    .signup_col {
        max-width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center
    }
}

@media screen and (max-width: 768px ) {
    .mzone-header{
        padding: .3rem 0;
    }
    .mzone-header-in{
        font-size: .8rem;
    }
    .mzone-header .mzone-logo, .mzone-header .mzone-logo img{
        width: 90px;
    }

    .mzone-main.mzone-main-w-sidebar{
        grid-template-columns: 1fr;
    }
    .mzone-content.mzone-content-corso-detail{
        grid-template-columns: 1fr;
    }
    .mzone-sidebar{
        width: 100%;
        /* display: block; */
    }
    .mzone-sidebar-inner{
        padding: 0rem;
        width: 100%;
    }
    .mzone-sidebar-menu, .mzone-sidebar-footer{
        display: none;
    }
    .mzone-content h2{
        display: block;
        text-align: center;
        font-size: 24px;
        line-height: 1.1;
    }
    .mzone-content h4{
        display: block;
        text-align: center;
        font-size: 20px;
        line-height: 1.1;
    }
    .mzone-content p{
        display: block;
        text-align: center;
    }
    .mzone-content-corso-detail h2,
    .mzone-content-corso-detail h4{
        text-align: left;
    }
    .mzone-block-full-white{
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .mzone-content.mzone-content-2col{
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }
    .mzone_academy_list_cnt{
        grid-template-columns: 1fr;
    }
    .mzone_academy_list_items{
        padding-top: 1rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;   
    }

    .mzone-header-scheda{
        display: grid;
        grid-template-columns: 50px 1fr 50px;
        padding: 0;
        text-align: center;
        width: 100%;
    }
    .mzone-header-scheda h4{
        font-size: 20px; 

    }
    .back_account_label{display: none;}
    .back_account_label.mobile_show{display: inline-block;}


    .mzone_dash_col_1, .mzone_dash_col_2{
        width: 100%;
    }

    .mzone_fields .form_field.form_field_flex{
        flex-direction: column;
        align-items: flex-start;
    }
    .mzone_fields .save_tools{ justify-content: center;}

    .mzone-video-cnt, .mzone-video{
        border-radius: .5rem;
    }

    .mzone_ordini_item{
        grid-template-columns: 3fr 2fr;
    }
}