.bottom-notif-notif-wrapper{
    color: #ffff;
    background-color: #064966 ;
    position: fixed;
    bottom: 0%;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
    width: 100%;
}

.bottom-notif-notif-wrapper img{
    background-color: rgba(255, 255, 255, 1);
    padding: 5px;
    height: 50px;
    width: auto;
    object-fit: contain;
}

.bottom-notif-notif-wrapper .bottom-notif-text{
    margin: auto 0;
    display: flex;
    align-items: center;
    text-align: center;
}

.bottom-notif-notif-wrapper .bottom-notif-closing-btn{
    display: grid;
    align-content:center;
    height: 50%;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    aspect-ratio: 1;
}

.bottom-notif-notif-wrapper.bottom-notif-hide{
    display: none !important;
}

@media screen and (max-width: 920px) {

    .bottom-notif-notif-wrapper{
        font-size: 13px;
        gap: 12px;
    }

    .bottom-notif-notif-wrapper img{
        margin: 3px;
    }
}