/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.21

*/

/* Transaction */
body {
    background-image: url('../img/home-bg.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.transaction{
    padding: 270px 10%;
}

.transaction__info{
    margin-bottom: 30px;
}

.transaction__info h2{
    color: #00a618;
    font-size: 27px;
    font-weight: 700;
}

.transaction__info p{
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.header__text h4{
    font-size: 25px!important;
    font-weight: 600;
}

.warning{
    color: #00a618 !important;
}

.success{
    color: #00a618 !important;
}

.danger{
    color: #00a618 !important;
}

.transaction__render{
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 991px) {
    .transaction__render{
        justify-content: flex-start;
    }

    img{
        margin-bottom: 40px;
        width: 200px;
    }

    .transaction{
        padding: 140px 10% 80px;
    }

    .transaction__info h2{
        font-size: 24px;
    }

    .transaction__info p{
        font-size: 16px;
    }

}