/*==================================
    popups
==================================*/

.popups {
    position: fixed;
    z-index: 16;
    right: 30px;
    top: 30px;
    width: 250px;
    opacity: 1;
    transition: all 0.2s ease-in;
}

    .popups .card {
        text-align: center;
    }

        .popups .card-img-top {
            max-height: 140px;
            max-width: 140px;
            padding: 15px;
        }

        .popups .card-body {
            text-align: center;
        }

            .popups .card-title {

            }

            .popups .card-text {

            }

            .popups .card-button {

            }


/*==== End of popups ====*/


/*==================================
    Responsive
==================================*/

@media screen and (max-width:768px) {

    .popups {
        right: 0;
        left: 0;
        margin: 0 auto;
    }

}

/*==== End of Responsive ====*/
