/* GLOBAL */
.text_gray_200 {
    color: var(--gray-200);
}
ul.default_ul {
    list-style-type: none;
    padding: 0 0 0 30px;
}
ul.default_ul li {
    position: relative;
}
ul.default_ul li + li {
    margin: 8px 0 0;
}
ul.default_ul li:before {
    content: '';
    position: absolute;
    top: 6px;
    left: -18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-950);
}
.back_main {
    height: 40px;
    padding: 4px;
    cursor: pointer;
    position: absolute;
    top: 14px;
    left: 12px;
}
.additional_menu_icon {
    height: 40px;
    padding: 4px;
    cursor: pointer;
    position: absolute;
    top: 14px;
    right: 12px;
}
.h1_wrapper_mb {
    margin-bottom: 15px;
}
.h2_wrapper_mb {
    margin-bottom: 8px;
}
.footer_btns {
    position: relative;
    z-index: 2;
    width: 100%;
}
.error_text_block {
    width: calc(100% + 40px);
    background: var(--red-500);
    margin: 0 0 28px -20px;
    text-align: center;
    font-size: 13px;
    line-height: 28px;
    color: var(--white);
    /* display: none; */
    display: block;
}
.success_text_block {
    width: calc(100% + 40px);
    background: var(--green-500);
    margin: 0 0 28px -20px;
    text-align: center;
    font-size: 13px;
    line-height: 28px;
    color: var(--green-950);
    /* display: none; */
    display: block;
}






.upload_files_wrapper,
.uploaded_files,
.children_list_wrapper,
.children_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.uploaded_file {
    display: flex;
    gap: 16px;
    width: 100%;
    padding: 0 56px 0 16px;
    border: 2px solid var(--blue-500);
    position: relative;
    align-items: center;
    height: 72px;
    border-radius: 16px;
}
.uploaded_file_center {
    overflow: hidden;
}
.uploaded_file_filename {
    font-size: 14px;
}
.uploaded_file_size {
    font-size: 12px;
    line-height: 16px;
    margin: 4px 0 0;
    font-weight: 500;
    color: var(--gray-400);
}
.uploaded_file_remove {
    width: 24px;
    height: 24px;
    background: var(--gray-950);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 18px;
    margin-top: -12px;
}
.upload_new_file_wrapper,
.add_new_child_btn {
    border: 1px dashed var(--gray-400);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
}
.upload_new_file_icon{
    width: 16px;
    height: 16px;
}
.upload_new_file_icon img {
    margin: -4px 0 0;
}
.upload_new_file_wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}