/* 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;
    z-index: 5;
}
.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 svg {
    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;
}
.footer-info {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px 20px;
    background-color: #fff;
    border-top: 1px solid var(--gray-100);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    z-index: 2;
}
.footer-info .footer-info-title {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    position: relative;
    top: -5px;
}
.footer-info .footer-info-logo-wrp {
    position: relative;
    top: -15px;
}
.footer-info .footer-info-close {
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: absolute;
    top: 22px;
    right: 20px;
    z-index: 1;
}
.footer-info .footer-info-cost {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}
.footer-info .footer-info-cost .footer-info-cost-title {
    font-size: 15px;
    font-weight: 600;
}
.footer-info .footer-info-cost .footer-info-cost-sum {
    font-size: 32px;
    font-weight: 700;
}
.footer-info .footer-info-cost .footer-info-cost-sum .footer-info-cost-sum-currency-symbol {
    font-size: 18px;
    color: var(--gray-950);
}
.footer-info-calendar {
    height: 452px;
    bottom: -452px;
}
.footer-info-add {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.7s;
    will-change: transform;
    -webkit-overflow-scrolling: touch;
    z-index: 3;
}
.footer-info-add.active {
    transform: translateY(0);
}
.footer-info-add .icon_svg svg {
    vertical-align: text-top;
    margin-right: 5px;
}
#footer-calendar {
    width: 100%;
    height: 1px;
    border: none;
    border-top: 1px solid var(--gray-100);
    color: #fff;
}
.footer-info-calendar .flatpickr-calendar {
    margin: 10px auto 0;
    box-shadow: none;
}
.hidden {
    display: none !important;
}
.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 10px;
    position: relative;
    background-color: var(--green-200);
    border-radius: 4px;
    margin-bottom: 12px;
}
.tag .text-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 600;
    color: var(--gray-950);
    font-size: 12px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: normal;
    word-break: break-word;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
table thead {
    background-color: var(--gray-100);
}
table thead th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-950);
    border-bottom: 2px solid var(--gray-200);
}
table tr:nth-child(even) {
    background-color: #fafafa;
}
table td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
}
table tr:last-child td {
    border-bottom: none;
}
.wf-info-wrp {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 4;
    width: calc(100% - 40px);
}
.wf-info {
    background-color: #fff;
    border-radius: 16px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    min-height: 74px;
    box-shadow: 0 10px 15px var(--gray-200);
    margin: 0 auto 30px;
    width: 100%;
    max-width: 960px;
    position: relative;
}
.wf-info .wf-info-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
.wf-info .wf-info-close svg {
    display: block;
}
.wf-info .wf-info-image {
    margin-right: 20px;
}
.wf-info .wf-info-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wf-info .wf-info-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.wf-info .wf-info-description {
    font-size: 12px;
    font-weight: 500;
}
.wf-info .wf-info-description a {
    text-decoration: none;
    font-weight: 600;
    color: var(--green-600);
}
.content.content_flex.content_flex_columns.content_item.content_item_text .item-info {
    padding-bottom: calc(140px + env(safe-area-inset-bottom));
    box-sizing: border-box;
}
.all_pages_main_subtitle {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: var(--gray-700);
    margin: 24px 0 0;
}
.all_pages_main_currency {
    font-weight: 700;
    font-size: 24px;
    line-height: 56px;
    color: var(--gray-950);
    margin: 0 0 16px;
}
.all_pages_main_currency .currency_big {
    font-size: 40px;
    line-height: 56px;
}
.all_pages_main_currency .currency_symbol {
    margin: 0 0 0 4px;
}
.all_pages_main_child {
    height: 36px !important;
    padding: 0 40px 0 16px !important;
    line-height: 36px !important;
}
.all_pages_rules {
    display: flex;
    gap: 15px;
    margin: 32px 0 0;
}
.all_pages_rule {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    color: var(--gray-950);
    text-decoration: none;
    width: 50%;
    min-height: 76px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
body:not(.mobile_device) .all_pages_rule:hover {
    background: rgba(255, 255, 255, 0.75);
}
.all_pages_rule span {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}
.all_pages_need_view_rules,
.all_pages_main_is_empty,
.all_pages_main_child_not_selected {
    border: 1px solid var(--blue-500);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    background: var(--blue-50);
    margin: 24px 0 30px 0;
}
.all_pages_main_child_not_selected {
    border: 1px solid var(--red-500);
    background: var(--red-50);
}
.all_pages_need_view_rules_top {
    display: flex;
    gap: 12px;
}
.all_pages_need_view_rules_title {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: var(--gray-950);
}
.all_pages_need_view_rules_text {
    font-size: 12px;
    line-height: 16px;
}
.all_pages_need_view_rules_btn {
    height: 36px;
    margin: 12px 0 0;
    text-transform: none;
}
.oferta_text {
    margin: 40px 0 0;
    width: 100%;
    background: transparent;
    border-radius: unset;
    padding: 0;
}
/* ADDITIONAL MENU */
.additional_menu {
    position: fixed;
    z-index: 3;
    bottom: 32px;
    left: 20px;
    width: calc(100% - 40px);
    flex-direction: column;
    align-items: center;
    display: none;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.additional_menu.visible {
    display: flex;
}
.additional_menu_items {
    width: 100%;
    max-width: 1000px;
    margin: 0 0 24px;
}
.additional_menu_item {
    height: 56px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.additional_menu_item:first-child {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
.additional_menu_item:last-child {
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
}
.additional_menu_item + .additional_menu_item {
    border-top: 1px solid var(--gray-950);
}
.additional_menu_close {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.additional_menu_item_support_service {
    color: var(--gray-950);
    text-decoration: none;
}