.index-application-page {
    margin-top: 32px;
}
body h1.title {
    font-size: 24px;
    line-height: 32px;
    color: #17181A;
    font-weight: 600;
}
body h2.title {
    font-size: 20px;
    line-height: 26px;
    color: #17181A;
    font-weight: 700;
}
body h3.title {
    font-size: 18px;
    line-height: 24px;
    color: #17181A;
    font-weight: 700;
}
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    width: 100%;
}
.action-buttons .btn {
    margin: 0;
    width: 100%;
    justify-content: center;
}
.action-buttons .btn:hover {
    background: #F2F7EE;
    color: #2AA466;
    border-color: #F2F7EE;
}
.action-buttons .btn:hover svg path {
    fill: #2AA466;
}
/**/
.content {
  display: none;
}
.content.active {
  display: block;
}
.content-wrapper {
    border: 1px solid #F3F3F3;
    border-radius: 0 0 32px 32px;
    padding: 20px;
}
.content .title {
    margin-bottom: 8px;
}
.content p {
    margin-bottom: 0;
}
/**/
.index-application-inner {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.page-content {
    width: calc(70% - 20px);
}
.button-wrapper {
    background-color: #F3F3F3;
    border-radius: 32px 32px 0 0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.tab-button {
    background-color: #fff;
    border: 1px solid #A8D898;
    border-radius: 40px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: 14px center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s all ease;
}
.tab-button.active {
    background-color: #2AA466;
    color: #fff;
    border: 1px solid #2AA466;
}
/**/
.form-content {
    width: 30%;
    border: 1px solid #F3F3F3;
    border-radius: 24px;
    padding: 20px;
}
.block-content {
    margin-top: 24px;
}
.form-content .row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.form-content .row .col {
    width: 100%;
}
.comment-box .title {
    margin: 10px 0 16px;
}
textarea {
    width: 100%;
    padding: 14px 16px 16px;
    font-size: 16px;
    border: 1px solid #cdcfd4;
    border-radius: 16px;
    outline: none;
    height: 56px;
    color: #17181a;
    box-sizing: border-box;
    font-weight: 500;
    min-height: 100px;
}

@media (max-width: 1023px) {
    .form-content {
        width: 380px;
    }
    .page-content {
        width: calc(100% - 400px);
    }
}
@media (max-width: 767px) {
    .index-application-page {
        margin-top: 24px;
    }
    body h1.title {
        font-size: 20px;
        line-height: 24px;
    }
    .page-content, .form-content {
        width: 100%;
    }
    .button-wrapper {
        border-radius: 24px 24px 0 0;
    }
    .content-wrapper {
        border-radius: 0 0 24px 24px;
    }
    .content .title {
        font-size: 18px;
        line-height: 24px;
    }
    .action-buttons .btn {
        height: 50px;
        line-height: 50px;
    }
    .button-wrapper {
        flex-wrap: nowrap;
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .tab-button {
        white-space: nowrap;
    }
}