<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:importantForAccessibility="no"
                android:filterTouchesWhenObscured="true"
                >
    <View
        android:id="@+id/help_background"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:importantForAccessibility="no"
        android:background="?attr/netverify_helpBackground" />

        <LinearLayout
            android:id="@+id/overall_container"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal"
            android:importantForAccessibility="no"
            android:paddingLeft="70dp"
            android:paddingRight="70dp">

            <LinearLayout
                android:id="@+id/doctype_container"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.5"
                android:paddingRight="25dp"
                android:orientation="vertical"
                android:gravity="center"
                />


            <RelativeLayout
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.5"
                android:gravity="center_vertical"
                android:orientation="vertical">
                <TextView
                    android:id="@+id/helpview_progress_info"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:fontFamily="sans-serif-light"
                    android:textColor="?attr/netverify_helpProgressString"
                    android:textSize="@dimen/nv_helpview_progress_info_text"
                    android:layout_marginBottom="5dp"
                    />

                <TextView
                    android:id="@+id/helpview_doctype_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/helpview_progress_info"
                    android:textColor="?attr/netverify_helpTitle"
                    android:textSize="@dimen/nv_helpview_doctype_title_text"
                    />

                <View
                    android:id="@+id/separator"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/nv_separator_height"
                    android:layout_below="@+id/helpview_doctype_title"
                    android:layout_marginTop="@dimen/nv_separator_margin_top"
                    android:layout_marginBottom="@dimen/nv_separator_margin_bottom"
                    android:background="?attr/netverify_helpSeperator"/>

                <TextView
                    android:id="@+id/helpview_scan_instructions"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/separator"
                    android:textColor="?attr/netverify_helpInstructions"
                    android:textSize="@dimen/nv_helpview_scan_instructions_text"
                    />

                <Button
                    android:id="@+id/helpview_fallback_button"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/helpview_scan_instructions"
                    android:layout_gravity="center_horizontal"
                    android:layout_marginTop="10dp"
                    android:elevation="4dp"
                    android:theme="@style/Netverify.Helpview.Button"
                    android:textAllCaps="false"
                    android:textSize="@dimen/nv_helpview_fallback_button_text"/>
            </RelativeLayout>

        </LinearLayout>

</RelativeLayout>