.page-wrapper {
    .hint-body {
        position: relative;
        max-width: 1330px;
        display: flex;
        padding: 0 15px;
        margin: 0 auto;
        margin-bottom: 24px;

        .container {
            display: flex;
            background-color: #fff;
            width: 100%;
            margin: 0 auto;
            margin-right: 0;
            box-shadow: 0px 2px 10px rgba(58, 58, 58, 0.1);
            border-radius: 4px;
            width: calc(~"100% - 158px");
            padding: 0;
            overflow-x: auto;
            position: relative;

            @media screen and (max-width: 1060px) {
                width: 100% !important;
            }

            &::-webkit-scrollbar {
                border-radius: 2px;
                width: 4px;
            }

            &::-webkit-scrollbar-thumb {
                border-radius: 10px;
                background: #fff;
                transition: .2s;
            }

            &:hover {
                &::-webkit-scrollbar-thumb {
                    border-radius: 10px;
                    background: var(--Stroke);
                }
            }
        }

        h6 {
            font-size: 16px;
            margin-bottom: 10px;
            font-weight: bold;
            line-height: 1.2;
        }

        .w-40 {
            padding-right: 10px;

            &:last-child {
                padding: 0;
            }
        }

        &_curator {
            display: flex;
            border-right: 1px solid var(--Stroke);
            padding: 10px;
            min-width: 240px;
            min-height: 132px;

            &--logo {
                display: flex;
                align-items: center;
                margin-right: 10px;

                .avatar {
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                    overflow: hidden;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    img {
                        height: 100%;
                        width: 100%;
                        object-fit: cover;
                    }
                }
            }

            &__info {

                &--name {
                    font-size: 13px;
                    font-weight: bold;
                    color: var(--Main2);
                }

                &--phone {
                    font-size: 13px;
                    color: var(--Secondary);
                    font-weight: normal;
                }

                &--mail {
                    color: var(--Secondary);
                    font-size: 13px;
                    font-weight: normal;
                }

                span,
                a {
                    margin-bottom: 5px;
                    display: block;
                    text-decoration: none;
                }
            }
        }

        &_bank-contact {
            display: flex;
            padding: 10px;
            width: 100%;
            max-width: 400px;
            min-width: 400px;
            min-height: 132px;

            &--logo {
                display: flex;
                align-items: center;
                margin-right: 10px;

                .avatar {
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                    overflow: hidden;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    img {
                        height: 100%;
                        width: 100%;
                        object-fit: cover;
                    }
                }
            }

            &__info {
                width: 100%;
                font-size: 14px;

                &--name {
                    font-size: 14px;
                    color: var(--Secondary);
                }

                &--phone {
                    font-size: 14px;
                    color: var(--Main2);
                    font-weight: normal;
                }

                &--mail {
                    color: var(--Secondary);
                    font-size: 14px;
                    font-weight: normal;
                }

                span {
                    display: block;
                }
            }
        }

        &-select {
            position: relative;
            max-width: 1330px;
            display: flex;
            padding: 0 15px;
            margin: 0 auto;
            margin-bottom: 24px;

            .container {
                display: flex;
                background-color: #fff;
                margin: 0 auto;
                margin-right: 0;
                box-shadow: 0px 2px 10px rgba(58, 58, 58, 0.1);
                border-radius: 4px;
                width: calc(100% - 158px);
                padding: 15px;
                position: relative;

                @media screen and (max-width: 1060px) {
                    width: 100% !important;
                }
            }
        }

        &-reset {
            position: absolute;
            top: -8px;
            right: -8px;

            .btn {
                min-width: 10px !important;
            }

            .reset {
                background: var(--Green);
                width: 20px;
                height: 20px;
                border-radius: 100%;
                color: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                border: none;
                padding: 0;
            }
        }

        &-version {
            display: flex;
            align-items: center;
            width: 100%;
            margin: -4px 0;

            .version-title {
                margin-right: 10px;
                white-space: nowrap;
                min-height: auto !important;
                font-weight: normal !important;
                margin-bottom: 0 !important;
            }

            .ajax-form {
                width: 100%;
            }

            .custom-input-group {
                min-height: 32px;

                .select {
                    min-height: 32px;

                    .styledSelect {
                        min-height: 30px;
                    }
                }
            }

            @media screen and (max-width: 600px) {
                flex-wrap: wrap;

                .version-title {
                    margin-bottom: 10px;
                }
            }
        }
    }
}