#custom-alert-wrapper {
    display: none;
    z-index: 999999999999 !important;
    /* background-color: brown; */
    position: fixed;
    opacity: 0.9;
    transition: transform 0.3s ease-out;

    .custom-alert-color {
        background-color: #dc3545;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .custom-alert-heading {
        font-size: 18px;
        display: flex !important;
        align-items: center;

        .custom-alert-close {
            text-decoration: none;
            color: inherit;
        }
    }

    /* .custom-alert-body{
        background-color: #dc3545;
    } */

    @media (max-width: 1080px) {
        bottom: 0px;
        height: 0px;
        width: 100%;
        font-size: 18px!important;
        background-color: #dc3545;

        .custom-alert-heading,
        .custom-alert-linebreaker {
            display: none !important;
        }

        

    }

    @media (min-width: 1081px) {
        left: 16px;
        width: 350px;
        box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

        .custom-alert-body {
            font-size: 16px;
        }


    }
}