.login_article{
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_article form{
    width: 448px;
}
.login_article .rememberme_box{
    margin-bottom: 24px;
}
.login_article .rememberme_box p{
    margin-bottom: 0px;
    color: #808386;
}
.login_article .buttons{
    display: flex;
    align-items: center;
    gap: 8px;
}
.login_article .buttons p{
    margin-bottom: 0px;
}
.login_article .buttons p a{
    color: #A18B68;
    font-weight: 600;
}

.login_article.register form{
    width: 684px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.login_article.register form h2{
    grid-column: span 2;
    margin-bottom: 24px;
}
.login_article.register form p{
    margin-bottom: 0px;
}
.login_article.register form .double_col{
    grid-column: span 2;
}
.login_article.register .noveo_checkbox p{
    margin-bottom: 0px;
    color: #808386;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 150%;
}
.login_article.register .noveo_checkbox p a{
    color: #A18B68;
    transition-duration: 0.4s;
}
.login_article.register .noveo_checkbox p a:hover{
    opacity: 0.7;
}
.login_article.register .different_textarea{
    display: none;
}
.login_article.register form .rodo_info p{
    font-size: 1rem;
    color: #808386;
}

.login_article .no_valid label{
    color: red;
}
.login_article .no_valid input{
    border-color: red;
}
.login_article .no_valid_info{
    color: red;
    font-size: 1rem;
}
.login_article .noveo_checkbox.no_valid::before{
    border-color: red;
}
.account_settings_article .no_valid label{
    color: red;
}
.account_settings_article .no_valid input{
    border-color: red;
}
.account_settings_article .no_valid_info{
    color: red;
    font-size: 1rem;
}
.account_settings_article .noveo_checkbox.no_valid::before{
    border-color: red;
}
.new_employee_article .no_valid label{
    color: red;
}
.new_employee_article .no_valid input{
    border-color: red;
}
.new_employee_article .no_valid_info{
    color: red;
    font-size: 1rem;
    margin-bottom: 0px;
}
.new_employee_article .noveo_checkbox.no_valid::before{
    border-color: red;
}
.noveo_order_view .chat_col .no_valid label{
    color: red;
}
.noveo_order_view .chat_col .no_valid input{
    border-color: red;
}
.noveo_order_view .chat_col .no_valid_info{
    color: red;
    font-size: 1rem;
    margin-bottom: 0px;
}
.noveo_order_view .chat_col .noveo_checkbox.no_valid::before{
    border-color: red;
}
.noveo_chat_popup .no_valid label{
    color: red;
}
.noveo_chat_popup .no_valid input{
    border-color: red;
}
.noveo_chat_popup .no_valid_info{
    color: red;
    font-size: 1rem;
    margin-bottom: 0px;
}
.noveo_chat_popup .noveo_checkbox.no_valid::before{
    border-color: red;
}

.noveo_title_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}
.noveo_title_box>*{
    margin-bottom: 0px;
}
.noveo_title_box .settings{
    display: flex;
    align-items: center;
}
.noveo_title_box .settings .current path{
    stroke: #A18B68;
}
.noveo_title_box .settings .sep_btn{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 24px;
}
.noveo_title_box .settings .sep_btn p{
    margin-bottom: 0px;
    font-weight: 700;
}
.noveo_title_box .settings .sep_btn .status{
    display: block;
    position: relative;
    border: 1px solid #EBEDF4;
    background-color: #FFF;
    border-radius: 64px;
    width: 32px;
    height: 20px;
}
.noveo_title_box .settings .sep_btn .status::after{
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #808386;
    top: 4px;
    left: 4px;
    border-radius: 100%;
}
.noveo_title_box .settings .sep_btn.active .status::after{
    right: 4px;
    left: auto;
    background-color: #A18B68;
}

.noveo_search_box{
    position: relative;
    margin-bottom: 48px;
}
.noveo_search_box .noveo_btn{
    position: absolute;
    right: 7px;
    top: 7px;
}
.noveo_search_box .clear_input{
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.noveo_search_box .clear_input:not(.show){
    display: none;
}

.noveo_tooltip{
    display: inline-block;
    position: relative;
    width: 14px;
    height: 14px;
    margin-left: 4px;
    background-image: url('content/Info.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.noveo_tooltip p{
    display: block;
    position: absolute;
    left: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #EBEDF4;
    background-color: #FFF;
    border-radius: 8px;
    padding: 16px;
    width: calc(240px - 32px);
    pointer-events: none;
    opacity: 0;
    transition-duration: 0.4s;
    z-index: 2;
}
.noveo_tooltip p::before{
    content: '';
    display: block;
    position: absolute;
    left: -6px;
    top: 50%;
    width: 12px;
    height: 12px;
    background-color: #FFF;
    transform: translateY(-50%) rotate(45deg);
    z-index: 3;
    border: 1px solid #EBEDF4;
    border-right: transparent;
    border-top: transparent;
}
.noveo_tooltip:hover p{
    opacity: 1;
}

.noveo_radio label{
    display: flex;
    align-items: center;
    position: relative;
}
.noveo_radio label::before{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #EBEDF4;
    border-radius: 8px;
    background-color: #FFF;
    margin-right: 8px;
}
.noveo_radio label::after{
    content: '';
    display: block;
    position: absolute;
    left: 7px;
    top: 50%;
    width: 12px;
    height: 12px;
    background-color: #A18B68;
    border-radius: 4px;
    transform: translateY(-50%);
    transition-duration: 0.4s;
    opacity: 0;
}
.noveo_radio label.checked::after{
    opacity: 1;
}
.noveo_radio label input{
    width: 1px;
    opacity: 0;
    pointer-events: none;
}
.noveo_radio label p{
    margin-bottom: 0px;
}

.add_new_order_article{
    width: 100%;
}
.add_new_order_article .noveo_title_box .noveo_link::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/ArrowLeft.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.add_new_order_article form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
}
.add_new_order_article form.loading::after{
    content: '';
    display: block;
    position: fixed;
    width: 48px;
    height: 48px;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    border: 8px solid #A18B68;
    border-left: 8px solid transparent;
    animation: spin_loading_loop 1s linear infinite;
}
.add_new_order_article form.loading .left,
.add_new_order_article form.loading .right{
    opacity: 0.7;
    pointer-events: none;
}
.add_new_order_article .left{
    background-color: #FFF;
    padding: 24px;
    border-radius: 8px;
    transition-duration: 0.4s;
}
.add_new_order_article .left .row{
    margin-bottom: 24px;
}
.add_new_order_article .left .row.no_valid input,
.add_new_order_article .left .row.no_valid textarea{
    border-color: red;
}
.add_new_order_article .left .row.no_valid label{
    color: red;
}
.add_new_order_article .left .row .no_valid_info{
    color: red;
    font-size: 1rem;
    margin-bottom: 0px;
}
.add_new_order_article .noveo_radio{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.add_new_order_article .right{
    padding: 24px 0px;
    transition-duration: 0.4s;
}
.add_new_order_article .right .no_valid_info{
    color: red;
    margin-bottom: 4px;
    font-size: 1rem;
}
.add_new_order_article .right.no_valid h3{
    color: red;
}
.add_new_order_article .right .noveo_title_box .noveo_link::before{
    background-image: url('content/Plus.svg');
}
.add_new_order_article .right .noveo_title_box{
    position: relative;
}
.add_new_order_article .right input[type='file']{
    /*display: none;*/
    opacity: 0;
    width: 1px;
    position: absolute;
    right: 64px;
}
.add_new_order_article .right .attachments_preview{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.add_new_order_article .right .preview_item{
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #E7E9F0;
    border-radius: 8px;
}
.add_new_order_article .right .list_mode .preview_item{
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 0px;
    background-color: transparent;
    width: calc(100% - 24px);
    flex-direction: row-reverse;
}
.add_new_order_article .right .preview_item>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.add_new_order_article .right .list_mode .preview_item>img{
    display: none;
}
.add_new_order_article .right .preview_item>img.placeholder{
    width: auto;
    height: auto;
}
.add_new_order_article .right .preview_item>p{
    display: block;
    position: absolute;
    bottom: calc(100% - 48px);
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #EBEDF4;
    background-color: #FFF;
    border-radius: 8px;
    padding: 16px;
    pointer-events: none;
    opacity: 0;
    transition-duration: 0.4s;
    z-index: 2;
    white-space: nowrap;
}
.add_new_order_article .right .list_mode .preview_item>p{
    position: static;
    opacity: 1;
    transform: unset;
    display: inline;
    background-color: transparent;
    margin-bottom: 0px;
    border: 0px;
    padding: 0px;
    z-index: 0;
    white-space: normal;
    word-break: break-all;
    width: 100%;
    height: calc(100% - 20px);
    padding: 10px;
    background-color: #8083861A;
}
.add_new_order_article .right .preview_item>p::before{
    content: '';
    display: block;
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #FFF;
    transform: translateX(-50%) rotate(45deg);
    z-index: 3;
    border: 1px solid #EBEDF4;
    border-left: transparent;
    border-top: transparent;
}
.add_new_order_article .right .list_mode .preview_item>p::before{
    display: none;
}
.add_new_order_article .right .preview_item:hover>p{
    opacity: 1;
}
.add_new_order_article .right .list_mode .preview_item .delete_btn{
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/delete_x.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 16px;
    margin-right: 4px;
    cursor: pointer;
}
.add_new_order_article .right #noveo_remove_attachments{
    margin-top: 48px;
    cursor: pointer;
}
.add_new_order_article .right #noveo_remove_attachments::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/Plus.svg');
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(45deg);
}

.orders_list_article{
    width: 100%;
}
.orders_list_article.loading{
    position: relative;
}
.orders_list_article.loading::after{
    content: '';
    display: block;
    position: fixed;
    width: 48px;
    height: 48px;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    border: 8px solid #A18B68;
    border-left-width: 8px;
    border-left-style: solid;
    border-left-color: rgb(161, 139, 104);
    border-left: 8px solid transparent;
    animation: spin_loading_loop 1s linear infinite;
}
.orders_list_article.loading>*{
    opacity: 0;
    pointer-events: none;
}
.orders_list_article .show_more_box{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 0px;
    background-color: #FFF;
    border-radius: 4px;
    order: 100;
}

.noveo_orders_box .sep_box .title_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    cursor: pointer;
    padding-bottom: 24px;
}
.noveo_orders_box .sep_box .title_row::after{
    content: '';
    display: block;
    width: 18px;
    height: 6px;
    background-image: url('content/arrow-faq.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    transition-duration: 0.4s;
}
.noveo_orders_box .sep_box .title_row.show::after{
    transform: rotate(0deg);
}
.noveo_orders_box .sep_box:not(:first-child) .title_row{
    padding-top: 24px;
}
.noveo_orders_box .sep_box:not(:first-child) .title_row::before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(230, 230, 230, 0) 0%, #E6E6E6 50%, rgba(230, 230, 230, 0) 100%);
    position: absolute;
    left: 0px;
    top: 0px;
}
.noveo_orders_box .sep_box .title_row p{
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
}
.noveo_orders_box .sep_box .title_row p span{
    font-size: 1rem;
    color: #FFF;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #A18B68;
    text-align: center;
}
.noveo_orders_box .sep_box.in-progress .title_row p span{
    background-color: #65B93E;
}
.noveo_orders_box .sep_box.info-needed .title_row p span{
    background-color: #FFA074;
}
.noveo_orders_box .sep_box.on-hold .title_row p span{
    background-color: #7497FF;
}
.noveo_orders_box .sep_box.awaiting-review .title_row p span{
    background-color: #FF74BC;
}
.noveo_orders_box .sep_box.rejected .title_row p span{
    background-color: #FB7779;
}
.noveo_orders_box .sep_box.finalized .title_row p span{
    background-color: #808386;
}
.noveo_orders_box .order_row{
    padding: 24px 0px;
    display: none;
}
.noveo_orders_box .order_grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.noveo_orders_box .order_grid.no_sep a{
    order: 0 !important;
}
.noveo_orders_box.mode_list .order_grid{
    grid-template-columns: repeat(1, 1fr);
}
.noveo_orders_box .single_order{
    background-color: #FFF;
    border-radius: 8px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
}
.noveo_orders_box .single_order.new{
    order: -1;
}
.noveo_orders_box .single_order .new_alert{
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #FB7779;
    border: 4px solid #F8F8F8;
    position: absolute;
    top: -4px;
    right: -4px;
}
.noveo_orders_box .single_order.continuation{
    order: -2;
}
.noveo_orders_box .single_order.preview_rejected{
    order: -3;
}
.noveo_orders_box.mode_list .single_order{
    grid-template-columns: repeat(6, 1fr);
}
.noveo_orders_box .single_order p{
    display: block;
    margin-bottom: 0px;
    color: #202224;
    font-size: 1.2rem;
    line-height: 100%;
    font-weight: 400;
    overflow: hidden;
}
.noveo_orders_box .single_order p.status_field{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.noveo_orders_box .single_order p span{
    display: block;
}
.noveo_orders_box .single_order .title{
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    word-break: keep-all;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.noveo_orders_box .single_order .id{
    font-weight: 600;
    color: #808386;
}
.noveo_orders_box .single_order .label{
    font-weight: 600;
    color: #808386;
    font-size: 1rem;
    margin-bottom: 4px;
}
.noveo_orders_box .single_order .status_info{
    font-weight: 600;
    font-size: 1rem;
    color: #A18B68;
    background-color: #A18B681A;
    padding: 8px 12px;
    border-radius: 2px;
    text-align: center;
    display: inline-block;
}
.noveo_orders_box .single_order.status_on-hold .status_info{
    background-color: #7497FF1A;
    color: #7497FF;
}
.noveo_orders_box .single_order.status_in-progress .status_info{
    background-color: #65B93E1A;
    color: #65B93E;
}
.noveo_orders_box .single_order .status_info.continue{
    background-color: #8083861A !important;
    color: #808386 !important;
}
.noveo_orders_box .single_order .status_info.preview_rejected{
    background-color: #FB77791A !important;
    color: #FB7779 !important;
}
.noveo_orders_box .single_order.status_rejected .status_info{
    background-color: #FB77791A;
    color: #FB7779;
}
.noveo_orders_box .single_order.status_info-needed .status_info,
.noveo_orders_box .single_order.status_info-sent .status_info{
    background-color: #FFA0741A;
    color: #FFA074;
}
.noveo_orders_box .single_order.status_awaiting-review .status_info{
    background-color: #FF74BC1A;
    color: #FF74BC;
}
.noveo_orders_box .single_order.status_finalized .status_info{
    background-color: #8083861A;
    color: #808386;
}

.single_order_article{
    width: 100%;
}
.single_order_article.loading::after{
    content: '';
    display: block;
    position: fixed;
    width: 48px;
    height: 48px;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    border: 8px solid #A18B68;
    border-left-width: 8px;
    border-left-style: solid;
    border-left-color: rgb(161, 139, 104);
    border-left: 8px solid transparent;
    animation: spin_loading_loop 1s linear infinite;
}
.single_order_article .noveo_title_box .noveo_link::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/ArrowLeft.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.noveo_order_view{
    /*display: grid;
    grid-template-columns: repeat(3, 1fr);*/
    display: flex;
    justify-content: space-between;
    gap: 24px;
    transition-duration: 0.4s;
}
.single_order_article.loading .noveo_order_view{
    opacity: 0.7;
    pointer-events: none;
}
.noveo_order_view .noveo_title_box{
    margin-bottom: 24px;
}

.noveo_order_view .info_col{
    max-width: 400px;
    width: 100%;
}
.noveo_order_view .info_col p{
    word-break: keep-all;
    overflow-wrap: break-word;
}
.noveo_order_view .info_col .order_data{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background-color: #FFF;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}
.noveo_order_view .info_col .order_data span{
    display: block;
}
.noveo_order_view .info_col .order_data span a{
    color: #A18B68;
    font-weight: 600;
    transition-duration: 0.4s;
}
.noveo_order_view .info_col .order_data span a:hover{
    opacity: 0.7;
}
.noveo_order_view .info_col .order_data h3{
    margin-bottom: 0px;
    overflow: hidden;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.noveo_order_view .info_col .order_data p{
    margin-bottom: 0px;
    font-size: 1.2rem;
    line-height: 100%;
}
.noveo_order_view .info_col .order_data p.status_field{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.noveo_order_view .info_col .order_data .id{
    color: #808386;
    font-size: 1.4rem;
    margin-top: 8px;
}
.noveo_order_view .info_col .order_data .label{
    color: #808386;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.noveo_order_view .info_col .order_data .status_info{
    background-color: #A18B681A;
    display: inline-block;
    padding: 12px 16px;
    border-radius: 2px;
    color: #A18B68;
    font-size: 1.2rem;
    font-weight: 600;
}
.noveo_order_view .info_col .order_data .status_info.on-hold{
    background-color: #7497FF1A;
    color: #7497FF;
}
.noveo_order_view .info_col .order_data .status_info.in-progress{
    background-color: #65B93E1A;
    color: #65B93E;
}
.noveo_order_view .info_col .order_data .status_info.rejected{
    background-color: #FB77791A;
    color: #FB7779;
}
.noveo_order_view .info_col .order_data .status_info.awaiting-review{
    background-color: #FF74BC1A;
    color: #FF74BC;
}
.noveo_order_view .info_col .order_data .status_info.info-needed,
.noveo_order_view .info_col .order_data .status_info.info-sent{
    background-color: #FFA0741A;
    color: #FFA074;
}
.noveo_order_view .info_col .order_data .status_info.finalized{
    background-color: #8083861A;
    color: #808386;
}
.noveo_order_view .info_col .order_data .status_info.continue{
    background-color: #8083861A;
    color: #808386;
}
.noveo_order_view .info_col .order_data .change_status{
    grid-column: span 2;
}
.noveo_order_view .info_col .order_data .change_status .noveo_btn{
    width: 100%;
}
.noveo_order_view .info_col .order_data .change_status .on_hold{
    background-color: #7497FF;
    color: #FFF;
}
.noveo_order_view .info_col .order_data .change_status .pending{
    background-color: #65B93E;
    color: #FFF;
}
.noveo_order_view .info_col .order_data .change_status .in_progress{
    background-color: #65B93E;
    margin-bottom: 8px;
}
.noveo_order_view .info_col .order_data .change_status .in_progress.work_continue{
    width: auto;
}
.noveo_order_view .info_col .order_data .change_status .rejected{
    background-color: #FB7779;
}
.noveo_order_view .info_col .order_data .status_select_box{
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    border: 1px solid #EBEDF4;
    position: relative;
}
.noveo_order_view .info_col .order_data .status_select_box::after{
    content: '';
    display: block;
    width: 18px;
    height: 6px;
    background-image: url('content/arrow-faq.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    transition-duration: 0.4s;
}
.noveo_order_view .info_col .order_data .status_select_box>.noveo_btn{
    text-align: center;
}
.noveo_order_view .info_col .order_data .status_select_box>.noveo_btn.in-progress{
    background-color: #65B93E;
}
.noveo_order_view .info_col .order_data .status_select_box>.noveo_btn.on-hold{
    background-color: #7497FF;
}
.noveo_order_view .info_col .order_data .status_select_box>.noveo_btn.info-needed,
.noveo_order_view .info_col .order_data .status_select_box>.noveo_btn.info-sent{
    background-color: #FFA074;
}
.noveo_order_view .info_col .order_data .status_select_box>.noveo_btn.awaiting-review{
    background-color: #FF74BC;
}
.noveo_order_view .info_col .order_data .status_select_box>.noveo_btn.finalized{
    background-color: #808386;
}
.noveo_order_view .info_col .order_data .status_select_box .options{
    position: absolute;
    width: calc(100% - 8px);
    left: 0px;
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
    z-index: 5;
    transition-duration: 0.4s;
}
.noveo_order_view .info_col .order_data .status_select_box:not(.show) .options{
    opacity: 0;
    pointer-events: none;
}
.noveo_order_view .info_col .order_data .status_select_box .options .in-progress{
    background-color: #65B93E;
}
.noveo_order_view .info_col .order_data .status_select_box .options .on-hold{
    background-color: #7497FF;
}
.noveo_order_view .info_col .order_data .status_select_box .options .info-needed{
    background-color: #FFA074;
}
.noveo_order_view .info_col .order_data .status_select_box .options .awaiting-review{
    background-color: #FF74BC;
}
.noveo_order_view .info_col .order_data .status_select_box .options .finalized{
    background-color: #808386;
}
.noveo_order_view .order_description{
    background-color: #FFF;
    border-radius: 8px;
    padding: 24px;
}
.noveo_order_view .order_description label{
    cursor: auto;
}
.noveo_order_view .order_description .buttons{
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}
.noveo_order_view .order_description .buttons .noveo_link::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/DownloadSimple.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.noveo_order_view .order_description .buttons .noveo_link.print::before{
    background-image: url('content/Printer.svg');
}
.noveo_order_view .order_description form{
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 24px;
}
.noveo_order_view .order_description form::after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(230, 230, 230, 0) 0%, #E6E6E6 50%, rgba(230, 230, 230, 0) 100%);
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.noveo_order_view .order_description form input,
.noveo_order_view .order_description form textarea,
.noveo_order_view .order_description form select{
    margin-bottom: 12px;
}
.noveo_order_view .order_description form label{
    margin-bottom: 4px;
}
.noveo_order_view .order_description form .no_valid label{
    color: red;
}
.noveo_order_view .order_description form select{
    width: 100%;
}
.noveo_order_view .order_description form .no_valid input,
.noveo_order_view .order_description form .no_valid select{
    border-color: red;
}
.noveo_order_view .order_description form .no_valid_info{
    color: red;
    font-size: 1rem;
    margin-bottom: 12px;
    margin-top: -12px;
}
.noveo_order_view .order_description .additional_comments_area{
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 24px;
}
.noveo_order_view .order_description .additional_comments_area::after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(230, 230, 230, 0) 0%, #E6E6E6 50%, rgba(230, 230, 230, 0) 100%);
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.noveo_order_view .order_description .additional_comments_area label{
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.noveo_order_view .order_description .additional_comments_area label span{
    font-weight: 400;
    color: #808386;
}
.noveo_order_view .order_description .additional_comments_area p{
    margin-bottom: 0px;
}
.noveo_order_view .attachments_col{
    padding-top: 24px;
    width: 100%;
    max-width: 500px;
}
.noveo_order_view .attachments_col .noveo_title_box{
    margin-bottom: 48px;
    position: relative;
}
.noveo_order_view .attachments_col .noveo_title_box .noveo_link::before{
    background-image: url('content/Plus.svg');
}
.noveo_order_view .attachments_col .noveo_title_box .final_buttons{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.noveo_order_view .attachments_col .noveo_title_box .no_valid_info{
    position: absolute;
    right: 0px;
    top: calc(100% + 12px);
}
.noveo_order_view .attachments_col input[type='file']{
    display: none;
}
.noveo_order_view .attachments_col .settings{
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}
.noveo_order_view .attachments_col .settings .current path{
    stroke: #A18B68;
}
.noveo_order_view .attachments_col .attachments_preview .date_tab:not(:first-child) .attachments_row{
    display: none;
}
.noveo_order_view .attachments_col .attachments_preview .attachments_row .inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 24px;
    position: relative;
}
.noveo_order_view .attachments_col .preview_item{
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #E7E9F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.noveo_order_view .attachments_col .preview_item.final_work{
    background-color: #A18B68;
}
.noveo_order_view .attachments_col .preview_item .buttons{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #00000080;
    opacity: 0;
    transition-duration: 0.4s;
}
.noveo_order_view .attachments_col .preview_item:hover .buttons{
    opacity: 1;
}
.noveo_order_view .attachments_col .preview_item>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.noveo_order_view .attachments_col .preview_item.final_work>img{
    display: none;
}
.noveo_order_view .attachments_col .preview_item.final_work .buttons{
    opacity: 1;
}
.noveo_order_view .attachments_col .preview_item.final_work .buttons>a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.noveo_order_view .attachments_col .preview_item.final_work .buttons>a p{
    margin-bottom: 0px;
    color: #FFF;
    font-weight: 600;
    font-size: 1.4rem;
}
.noveo_order_view .attachments_col .preview_item>img.placeholder{
    width: auto;
    height: auto;
}
.noveo_order_view .attachments_col .preview_item>p{
    display: block;
    position: absolute;
    bottom: calc(100% - 24px);
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #EBEDF4;
    background-color: #FFF;
    border-radius: 8px;
    padding: 16px;
    pointer-events: none;
    opacity: 0;
    transition-duration: 0.4s;
    z-index: 2;
    white-space: nowrap;
}
.noveo_order_view .attachments_col .preview_item:hover>p{
    opacity: 1;
}
.noveo_order_view .attachments_col .preview_item>p::before{
    content: '';
    display: block;
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #FFF;
    transform: translateX(-50%) rotate(45deg);
    z-index: 3;
    border: 1px solid #EBEDF4;
    border-left: transparent;
    border-top: transparent;
}
.noveo_order_view .attachments_col .preview_item .delete_btn{
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 8px;
    top: 8px;
    background-image: url('content/delete_x.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.noveo_order_view .attachments_col .date_tab{
    margin-bottom: 24px;
    padding-bottom: 24px;
    position: relative;
}
.noveo_order_view .attachments_col .date_tab::before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(230, 230, 230, 0) 0%, #E6E6E6 50%, rgba(230, 230, 230, 0) 100%);
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.noveo_order_view .attachments_col .date_tab .title_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    cursor: pointer; 
}
.noveo_order_view .attachments_col .date_tab .title_row::after{
    content: '';
    display: block;
    width: 18px;
    height: 6px;
    background-image: url('content/arrow-faq.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    transition-duration: 0.4s;
}
.noveo_order_view .attachments_col .date_tab .title_row.show::after{
    transform: rotate(0deg);
}
.noveo_order_view .attachments_col .date_tab .title_row p{
    font-size: 1.8rem;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 0px;
}
.noveo_order_view .attachments_col .date_tab .download_all{
    order: -1;
    padding-bottom: 4px;
    grid-column: span 3;
}
.noveo_order_view .attachments_col .date_tab .download_all .noveo_link::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/DownloadSimpleGold.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.noveo_order_view .attachments_col .list_mode .preview_item{
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 0px;
    background-color: transparent;
    flex-direction: row-reverse;
}
.noveo_order_view .attachments_col .list_mode .preview_item>img{
    /*position: static;
    width: 48px;
    height: 48px;
    transform: unset;*/
    display: none
}
.noveo_order_view .attachments_col .list_mode .preview_item .buttons{
    position: static;
    flex-direction: row;
    opacity: 1;
    width: auto;
    background-color: transparent;
    padding: 0px;
    height: auto;
}
.noveo_order_view .attachments_col .list_mode .preview_item .buttons a{
    background-color: #A18B68;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.noveo_order_view .attachments_col .list_mode .preview_item .buttons.large_btn{
    width: 115px;
}
.noveo_order_view .attachments_col .list_mode .preview_item .buttons.large_btn a{
    flex-direction: column;
    gap: 6px;
    margin-right: 12px;
}
.noveo_order_view .attachments_col .list_mode .preview_item .buttons.large_btn a p{
    margin-bottom: 0px;
    color: #FFF;
    font-weight: 600;
    font-size: 1.4rem;
}
.noveo_order_view .attachments_col .list_mode .preview_item .buttons.large_btn a img{
    width: 32px;
    min-width: 32px;
}
.noveo_order_view .attachments_col .list_mode .preview_item .buttons img{
    max-width: 16px;
}
.noveo_order_view .attachments_col .list_mode .preview_item>p{
    position: static;
    opacity: 1;
    transform: unset;
    background-color: transparent;
    margin-bottom: 0px;
    border: 0px;
    padding: 0px;
    z-index: 0;
    white-space: normal;
    word-break: break-all;
    padding: 10px;
    background-color: #8083861A;
    width: 100%;
    height: calc(100% - 20px);
    display: flex;
    align-items: center;
}
.noveo_order_view .attachments_col .list_mode .preview_item>p::before{
    display: none;
}
.noveo_order_view .attachments_col .list_mode .preview_item .delete_btn{
    position: static;
    min-width: 16px;
    margin-right: 4px;
}

.noveo_order_view .chat_col{
    max-width: 400px;
    width: 100%;
}
.noveo_order_view .chat_col .inner{
    background-color: #FFF;
    border-radius: 8px;
    padding: 24px;
}
.noveo_order_view .chat_col textarea{
    height: calc(79px - 40px);
}
.noveo_order_view .chat_col .buttons{
    display: flex;
    gap: 8px;
    margin-top: 8px
}
.noveo_order_view .chat_col .buttons input[type='file']{
    display: none;
}
.noveo_order_view .chat_col .buttons .attachment_link{
    background-color: #A18B6840;
    margin-bottom: 0px;
}
.noveo_order_view .chat_col .buttons .noveo_btn:last-child{
    width: 100%;
}
.noveo_order_view .chat_col .messages{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}
.noveo_order_view .chat_col .messages_scroll{
    max-height: 600px;
    overflow: auto;
}
.noveo_order_view .chat_col .chat_item{
    padding-right: 24px;
}
.noveo_order_view .chat_col .chat_item.my_message{
    padding-right: 0px;
    padding-left: 24px;
}
.noveo_order_view .chat_col .chat_item .data{
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1.2rem;
    line-height: 100%;
    color: #808386;
}
.noveo_order_view .chat_col .chat_item.my_message .data{
    flex-direction: row-reverse;
}
.noveo_order_view .chat_col .chat_item .data .user{
    font-weight: 600;
    color: #202224;
}
.noveo_order_view .chat_col .chat_item .message{
    margin-bottom: 0px;
    display: block;
    padding: 8px 12px;
    background-color: #8083861A;
    border-radius: 4px;
    color: #808386;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.noveo_order_view .chat_col .chat_item .message img{
    max-width: 100%;
}
.noveo_order_view .chat_col .chat_item .message .placeholder_box{
    padding: 6px;
    background-color: #A18B68;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #FFF;
    text-align: center;
}
.noveo_order_view .chat_col .chat_item.my_message .message{
    background-color: #808386;
    color: #FFF;
}
.noveo_order_view .chat_col  #chat_attachments_preview img{
    max-width: 100%;
}
.noveo_order_view .chat_col  #chat_attachments_preview p{
    margin-bottom: 4px;
}
.noveo_order_view .chat_col  #chat_attachments_preview .preview_item{
    position: relative;
}
.noveo_order_view .chat_col  #chat_attachments_preview .preview_item .delete{
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/Plus.svg');
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(45deg);
    position: absolute;
    right: 4px;
    top: 4px;
    cursor: pointer;
}

.noveo_delete_popup,
.noveo_rejected_popup,
.noveo_continue_popup{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}
.noveo_delete_popup:not(.show),
.noveo_rejected_popup:not(.show),
.noveo_continue_popup:not(.show){
    display: none;
}
.noveo_delete_popup .overlay,
.noveo_rejected_popup .overlay,
.noveo_continue_popup .overlay{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.noveo_delete_popup .popup,
.noveo_rejected_popup .popup,
.noveo_continue_popup .popup{
    position: absolute;
    background-color: #FFF;
    width: 400px;
    max-width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border-radius: 8px;
}
.noveo_delete_popup .popup form,
.noveo_rejected_popup .popup form,
.noveo_continue_popup .popup form{
    padding: 24px;
    text-align: center;
}
.noveo_delete_popup .popup form .buttons,
.noveo_rejected_popup .popup form .buttons,
.noveo_continue_popup .popup form .buttons{
    display: flex;
    justify-content: center;
    gap: 24px;
}
.noveo_delete_popup .popup form .buttons .cancel,
.noveo_rejected_popup .popup form .buttons .cancel,
.noveo_continue_popup .popup form .buttons .cancel{
    background-color: #A18B6840;
    color: #A18B68;
}
.noveo_rejected_popup .popup form textarea,
.noveo_continue_popup .popup form textarea{
    height: 72px;
    margin-bottom: 24px;
}

.noveo_checkbox{
    display: flex;
    align-items: center;
    color: #808386;
    font-size: 1.4rem;
    line-height: 150%;
    font-weight: 400;
    position: relative;
}
.noveo_checkbox::before{
    content: '';
    display: block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border: 1px solid #EBEDF4;
    border-radius: 8px;
    background-color: #FFF;
    margin-right: 8px;
}
.noveo_checkbox::after{
    content: '';
    display: block;
    position: absolute;
    left: 7px;
    top: 50%;
    width: 12px;
    height: 12px;
    background-color: #A18B68;
    border-radius: 4px;
    transform: translateY(-50%);
    transition-duration: 0.4s;
    opacity: 0;
}
.noveo_checkbox.checked::after{
    opacity: 1;
}
.noveo_checkbox input{
    opacity: 0;
    width: 1px;
    height: 1px;
}

.new_employee_article{
    width: 100%;
}
.new_employee_article .noveo_title_box .noveo_link::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('content/ArrowLeft.svg');
  background-position: center;
  background-repeat: no-repeat;
}
.new_employee_article .new_employee_box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.new_employee_article .new_employee_box form{
    padding: 48px;
    max-width: calc(684px - 96px);
    border-radius: 8px;
    background-color: #FFF;
}
.new_employee_article .grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.new_employee_article .checkboxes{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    row-gap: 8px;
    margin-bottom: 24px;
}
.new_employee_article .checkboxes>label:first-child{
    grid-column: span 3;
}
.new_employee_article .dropzone{
    border: 1px dashed #EBEDF4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    margin-bottom: 24px;
    transition-duration: 0.4s;
}
.new_employee_article .dropzone.dragover{
    background-color: #A18B6840;
}
.new_employee_article .dropzone h3{
    margin-bottom: 16px;
}
.new_employee_article .dropzone p{
    color: #808386;
    margin-bottom: 16px;
    text-align: center;
}
.new_employee_article .dropzone .noveo_link::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/Plus.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.new_employee_article .dropzone input{
    display: none;
}

.employees_article{
    width: 100%;
}
.employees_article .noveo_title_box .noveo_link::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('content/UserCirclePlus.svg');
  background-position: center;
  background-repeat: no-repeat;
}
.employees_article .noveo_users_box{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.employees_article .noveo_users_box .single_user{
    padding: 24px;
    border-radius: 8px;
    background-color: #FFF;
}
.employees_article .noveo_users_box .user_data{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.employees_article .noveo_users_box .user_data img{
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 100%;
}
.employees_article .noveo_users_box .user_data p{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0px;
}
.employees_article .noveo_users_box .user_data .name{
    display: block;
    font-size: 1.4rem;
    line-height: 100%;
    font-weight: 600;
    color: #202224;
}
.employees_article .noveo_users_box .user_data .nick{
    display: block;
    font-size: 1.2rem;
    line-height: 100%;
    font-weight: 600;
    color: #808386;
}
.employees_article .noveo_users_box .email_row{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.employees_article .noveo_users_box .email_row .title{
    display: block;
    font-size: 1rem;
    line-height: 100%;
    font-weight: 600;
    color: #808386;
}
.employees_article .noveo_users_box .email_row .email{
    display: block;
    font-size: 1.2rem;
    line-height: 100%;
    font-weight: 400;
    color: #202224;
}
.employees_article .noveo_users_box .user_remove{
    color: #FB7779;
}
.employees_article .noveo_users_box .user_remove::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/user_remove.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.employees_article .noveo_users_box .waiting_info{
    display: block;
    padding: 8px;
    text-align: center;
    background-color: #A18B681A;
    border-radius: 2px;
    color: #A18B68;
    font-size: 1rem;
    line-height: 100%;
    font-weight: 600;
}

.employee_edit_article{
    width: 100%;
}
.employee_edit_article .noveo_title_box .noveo_link::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/ArrowLeft.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.employee_edit_article .employee_details{
    padding: 48px;
    background-color: #FFF;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}
.employee_edit_article .employee_details .user_data{
    display: flex;
    align-items: center;
    gap: 8px;
}
.employee_edit_article .employee_details .user_data img{
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 100%;
}
.employee_edit_article .employee_details .user_data p{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0px;
}
.employee_edit_article .employee_details .user_data .name{
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 100%;
    color: #202224;
}
.employee_edit_article .employee_details .user_data .nick{
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 100%;
    color: #808386;
}
.employee_edit_article .employee_details .user_remove{
    color: #FB7779;
}
.employee_edit_article .employee_details .user_remove::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/user_remove.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.employee_edit_article .employee_details .checboxes{
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    row-gap: 24px;
    row-gap: 8px;
}
.employee_edit_article .employee_details .checboxes>label:first-child{
    grid-column: span 5;
}
.employee_edit_article .employee_details .buttons_right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.employee_edit_article .noveo_orders_box.mode_list .order_grid{
    margin-bottom: 8px;
}

.organization_edit_content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.organization_edit_content .employee_details{
    grid-template-columns: repeat(1, 1fr);
    padding: 24px;
    gap: 24px;
}
.organization_edit_content .employee_details:first-child{
    margin-bottom: 24px;
}
.organization_edit_content .employee_details .text .title{
    margin-bottom: 4px;
    color: #808386;
    font-size: 1rem;
    font-weight: 600;
    line-height: 100%;
}
.organization_edit_content .employee_details .text .email{
    margin-bottom: 0px;
    color: #202224;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 100%;
}
.organization_edit_content .employee_details .buttons{
    justify-content: flex-start;
}
.organization_edit_content .employees_list{
    grid-column: span 2;
    padding: 24px 0px;
}
.organization_edit_content .employees_list .single_user{
    background-color: #FFF;
    border-radius: 8px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 8px;
}
.organization_edit_content .employees_list .user_data{
    display: flex;
    align-items: center;
    gap: 8px;
}
.organization_edit_content .employees_list .user_data img{
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 100%;
}
.organization_edit_content .employees_list .user_data p{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0px;
}
.organization_edit_content .employees_list .user_data .name{
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 100%;
    color: #202224;
}
.organization_edit_content .employees_list .user_data .nick{
    display: block;
    font-size: 1.2rem;
    line-height: 100%;
    font-weight: 600;
    color: #808386;
}
.organization_edit_content .employees_list .email_row{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0px;
}
.organization_edit_content .employees_list .email_row .title{
    display: block;
    font-size: 1rem;
    line-height: 100%;
    font-weight: 600;
    color: #808386;
}
.organization_edit_content .employees_list .email_row .email{
    display: block;
    font-size: 1.2rem;
    line-height: 100%;
    font-weight: 400;
    color: #202224;
}
.organization_edit_content .employees_list .user_remove{
    color: #FB7779;
}
.organization_edit_content .employees_list .user_remove::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('content/user_remove.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.organization_edit_content .employee_details .buttons_form{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.organization_edit_content .employee_details .buttons_form button{
    text-align: center;
    padding: 16px;
    border-radius: 4px;
    width: 100%;
    background-color: #65B93E;
    border: 0px;
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 100%;
    cursor: pointer;
}
.organization_edit_content .employee_details .buttons_form button.reject{
    background-color: #FB7779;
}

.noveo_chat_btn{
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 4px;
    background-color: #A18B68;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}
.noveo_chat_btn .new_alert{
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #FB7779;
    border: 4px solid #F8F8F8;
    top: -8px;
    right: -8px;
}
.noveo_chat_popup{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 2;
}
.noveo_chat_popup:not(.show){
    display: none;
}
.noveo_chat_popup .overlay{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.noveo_chat_popup .popup{
    position: absolute;
    width: 355px;
    max-width: 90%;
    right: 78px;
    bottom: 24px;
    z-index: 2;
}
.noveo_chat_popup .popup form{
    background-color: #FFF;
    border-radius: 8px;
    padding: 24px;
    overflow: auto;
    max-height: calc(100vh - 150px);
}
.noveo_chat_popup .popup form textarea{
    height: calc(79px - 16px);
    width: calc(100% - 16px);
    padding: 8px;
    margin-bottom: 8px;
}
.noveo_chat_popup .popup form .noveo_btn{
    width: 100%;
}
.noveo_chat_popup .popup .single_comment{
    margin-bottom: 24px;
}
.noveo_chat_popup .popup .comment_data{
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.noveo_chat_popup .popup .comment_data .user{
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 100%;
    color: #202224;
}
.noveo_chat_popup .popup .comment_data .date{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 100%;
    color: #808386;
}
.noveo_chat_popup .popup .text{
    display: block;
    margin-bottom: 0px;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #8083861A;
    color: #808386;
}

.account_settings_article{
    width: 100%;
}
.account_settings_article .noveo_title_box{
    width: 100%;
}
.account_settings_article .account_box{
    background-color: #FFF;
    border-radius: 8px;
    padding: 48px;
    max-width: calc(100% - 96px);
    width: calc(684px - 96px);
}
.account_settings_article .profile{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
}
.account_settings_article .profile img{
    width: 48px;
    height: 48px;
    border-radius: 100%;
    object-fit: cover;
}
.account_settings_article .profile p{
    color: #202224;
    font-weight: 600;
    margin-bottom: 0px;
}
.account_settings_article .single_tab{
    position: relative;
}
.account_settings_article .single_tab:not(:last-child)::before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(230, 230, 230, 0) 0%, #E6E6E6 50%, rgba(230, 230, 230, 0) 100%);
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.account_settings_article .single_tab:not(:last-child){
    margin-bottom: 24px;
}
.account_settings_article .header_row{
    position: relative;
    padding-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition-duration: 0.4s;
}
.account_settings_article .header_row:not(.show){
    opacity: 0.7;
}
.account_settings_article .header_row::after{
    content: '';
    display: block;
    width: 18px;
    height: 6px;
    background-image: url('content/arrow-faq.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    transition-duration: 0.4s;
}
.account_settings_article .header_row.show::after{
    transform: rotate(0deg);
}
.account_settings_article .header_row h3{
    margin-bottom: 0px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 100%;
}
.account_settings_article .content_row{
    padding-bottom: 24px;
    display: none;
}
.account_settings_article .dropzone{
    border: 1px dashed #EBEDF4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    margin-bottom: 24px;
    transition-duration: 0.4s;
}
.account_settings_article .dropzone.dragover {
    background-color: #A18B6840;
}
.account_settings_article .dropzone input{
    display: none;
}
.account_settings_article .dropzone h3{
    margin-bottom: 16px;
}
.account_settings_article .dropzone p{
    color: #808386;
    margin-bottom: 16px;
    text-align: center;
}
.account_settings_article .grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.account_settings_article .grid .buttons{
    grid-column: span 2;
}
.account_settings_article .grid p{
    margin-bottom: 0px;
}
.account_settings_article .grid .double_col{
    grid-column: span 2;
}

.noveo_order_view .noveo_admin_description_form .teeth_item{
    padding-bottom: 24px;
    padding-right: 32px;
    position: relative;
}
.noveo_order_view .noveo_admin_description_form .teeth_item::after{
    content: '';
    display: block;
    width: calc(100% - 96px);
    height: 1px;
    background: linear-gradient(90deg, rgba(230, 230, 230, 0) 0%, #E6E6E6 50%, rgba(230, 230, 230, 0) 100%);
    position: absolute;
    left: 48px;
    bottom: 12px;
}
.noveo_order_view .noveo_admin_description_form .teeth_item label{
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 24px;
    cursor: pointer;
    font-weight: 400;
}
.noveo_order_view .noveo_admin_description_form .teeth_item label::before{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #EBEDF4;
    border-radius: 8px;
    background-color: #FFF;
    margin-right: 8px;
}
.noveo_order_view .noveo_admin_description_form .teeth_item label::after{
    content: '';
    display: block;
    position: absolute;
    left: 7px;
    top: 50%;
    width: 12px;
    height: 12px;
    background-color: #A18B68;
    border-radius: 4px;
    transform: translateY(-50%);
    transition-duration: 0.4s;
    opacity: 0;
}
.noveo_order_view .noveo_admin_description_form .teeth_item label.checked::after{
    opacity: 1;
}
.noveo_order_view .noveo_admin_description_form .teeth_item label input{
    width: 1px;
    opacity: 0;
    pointer-events: none;
}
.noveo_order_view .noveo_admin_description_form .teeth_item .dropdown_item{
    border: 1px solid #EBEDF4;
    border-radius: 8px;
    padding: 20px 24px;
}
.noveo_order_view .noveo_admin_description_form .teeth_item .dropdown_item .title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}
.noveo_order_view .noveo_admin_description_form .teeth_item .dropdown_item .title p{
    margin-bottom: 0px
}
.noveo_order_view .noveo_admin_description_form .teeth_item .dropdown_item .title p span{
    display: block;
    font-size: 1rem;
    color: #808386;
}
.noveo_order_view .noveo_admin_description_form .teeth_item .dropdown_item .title::after{
    content: '';
    display: block;
    width: 18px;
    height: 6px;
    background-image: url('content/arrow-faq.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    transition-duration: 0.4s;
}
.noveo_order_view .noveo_admin_description_form .teeth_item .dropdown_item .title.show::after{
    transform: rotate(0deg);
}
.noveo_order_view .noveo_admin_description_form .teeth_item .dropdown_item .content{
    display: none;
    padding-top: 20px;
}
.noveo_order_view .noveo_admin_description_form .teeth_item .button_row{
    position: absolute;
    right: 0px;
    bottom: 42px;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #EBEDF4;
    border-radius: 32px;
    background-image: url('content/plus.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
}
.noveo_order_view .noveo_admin_description_form .teeth_item .button_row.remove_row{
    background-image: url('content/minus.svg');
}
.noveo_order_view .noveo_admin_description_form .teeth_item:last-child .button_row.remove_row{
    display: none;
}
.noveo_order_view .noveo_admin_description_form .teeth_item:not(:last-child) .button_row.add_row{
    display: none;
}
.noveo_order_view .noveo_admin_description_form .teeth_item.no_valid>label{
    color: #202224;
}
.noveo_order_view .noveo_admin_description_form .teeth_item .no_valid_info{
    margin-top: 0px;
}
.noveo_order_view .noveo_admin_description_form .teeth_item input.other{
    margin-top: 12px;
    margin-bottom: 0px;
}

.noveo_mobile_toggle_chat{
    position: absolute;
    width: 96px;
    height: 32px;
    background-color: #879A7E;
    color: #FFF;
    font-size: 1.6rem;
    line-height: 100%;
    left: -96px;
    top: 50%;
    transform: translateY(-96px) rotate(-90deg);
    transform-origin: right bottom;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 4px 4px 0px 0px;
}
.noveo_mobile_toggle_chat img{
    transform: rotate(-90deg);
    transition-duration: 0.4s;
}
.show .noveo_mobile_toggle_chat img{
    transform: rotate(90deg);
}
.noveo_mobile_toggle_chat .new_alert{
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #FB7779;
    border: 4px solid #F8F8F8;
    top: -8px;
    right: -8px;
}

.noveo_upload_progress{
    position: fixed;
    transform: translate(-50%, -50%);
    z-index: 100;
    left: 50%;
    top: 50%;
}
.noveo_upload_progress .upload_progress__line{
    height: 2rem;
    border-radius: 10px;
    background: #999183;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    width: 420px;
    max-width: 90%;
    overflow: hidden;
    margin: auto;
}
.noveo_upload_progress_overlay{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 90;
    background-color: rgba(0, 0, 0, 0.4);
}
.noveo_upload_progress .upload_progress__bar{
    height: 100%;
    width: 0%;
    border-radius: 10px;
    background: #A18B68;
    transition: width .1s linear;
}
.noveo_upload_progress .upload_progress__text{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
    color: #FFF;
}
#cancel_upload_btn{
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.noveo_form_procesing{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 90;
    background-color: rgba(0, 0, 0, 0.4);
}
.noveo_form_procesing .upload_progress__line{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: auto;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.noveo_form_procesing .upload_progress__text{
    font-size: 1.4rem;
    font-weight: 400;
    color: #FFF;
    text-align: center;
}
.noveo_form_procesing .upload_progress__line::after{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    border: 5px solid #FFF;
    border-left: 5px solid transparent;
    animation: spin_loading_loop 1s linear infinite;
}