﻿.spottoBanner{
    animation: fadeIn 1s ease-in-out;
    display: none;
    margin-bottom: 20px;
}

.spottoBanner__post{
    margin: 0 !important;
}

.spottoBanner__post__body{
    padding: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spottoBanner__post__body__text{
    padding: 10px;
}

.spottoBanner__post__body__img{
    padding: 10px;
    margin: 0 !important;
    height: 70px;
}

@media only screen and (max-width: 991px) {
    .spottoBanner__post__body {
        flex-direction: column;
    }
}

@media only screen and (max-width: 575px) {
    .spottoBanner__post__body__img{
        height: 60px;
    }
}

@keyframes fadeIn {
    0% {
        max-height: 0;
        opacity: 0;
    }
    
    75%{
        opacity: 1;
    }

    100% {
        max-height: 500px;
    }
}