<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    tools:context=".dialog.CustomeDialogFragment"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <androidx.cardview.widget.CardView
        android:layout_marginTop="@dimen/_50sdp"
        android:layout_marginBottom="@dimen/_15sdp"
        android:layout_marginHorizontal="@dimen/_30sdp"
        app:cardElevation="@dimen/_10sdp"
        app:cardBackgroundColor="@color/cardBackgroundColor"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardCornerRadius="@dimen/_15sdp">
        <LinearLayout
            android:gravity="center"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <RelativeLayout
                android:background="@drawable/wave_png"
                android:id="@+id/title_tv"
                android:gravity="center"
                android:padding="@dimen/_10sdp"
                android:layout_width="match_parent"
                android:layout_height="@dimen/_150sdp">

            </RelativeLayout>

            <TextView
                android:layout_marginTop="-20dp"
                android:layout_marginLeft="@dimen/_10sdp"
                android:layout_marginBottom="@dimen/_30sdp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@string/upgrade"
                android:textStyle="bold"
                android:textColor="@color/textColor"
                android:textColorLink="@color/teal_200"
                android:textSize="@dimen/_16sdp"/>
            <TextView
                android:layout_marginTop="-30dp"
                android:layout_marginLeft="@dimen/_10sdp"
                android:layout_marginBottom="@dimen/_30sdp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@string/it_s_time_to_upgrade"
                android:textColor="@color/textColor"
                android:textColorLink="@color/teal_200"
                android:textSize="@dimen/_13sdp"/>

            <TextView
                android:id="@+id/message_tv"
                android:layout_marginTop="-20dp"
                android:layout_marginLeft="@dimen/_10sdp"
                android:layout_marginBottom="@dimen/_30sdp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@string/upgrade"
                android:textColor="@color/textColor"
                android:textColorLink="@color/teal_200"
                android:textSize="@dimen/_15sdp"/>

            <androidx.cardview.widget.CardView
                android:layout_marginBottom="18dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:cardCornerRadius="@dimen/_15sdp"
                app:cardElevation="@dimen/_15sdp">
                <TextView
                    android:id="@+id/upgrade_btn"
                    android:layout_weight="1"
                    android:layout_width="@dimen/_200sdp"
                    android:layout_height="45dp"
                    android:background="@drawable/rounded_bg"
                    android:backgroundTint="@color/red_color_picker"
                    android:gravity="center"
                    android:paddingVertical="@dimen/_8sdp"
                    android:text="@string/upgrade"
                    android:textColor="@color/white"
                    android:textStyle="bold"
                    android:textSize="@dimen/_15sdp" />

            </androidx.cardview.widget.CardView>

        </LinearLayout>
    </androidx.cardview.widget.CardView>
    <com.airbnb.lottie.LottieAnimationView
        android:elevation="@dimen/_50sdp"
        android:layout_centerHorizontal="true"
        android:id="@+id/animationView"
        android:layout_width="@dimen/_200sdp"
        android:layout_height="@dimen/_120sdp"
        app:lottie_rawRes="@raw/rocket"
        app:lottie_loop="true"
        app:lottie_autoPlay="true"/>

</RelativeLayout>