@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:wght@100;200;300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-family: 'Lobster', cursive;
    font-family: 'Montserrat', sans-serif;
}

@keyframes fadeIn {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0%);
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }
}


@keyframes alertView {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes alertClose {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(100%);
        display: none;
    }
}

.bqAlerta {
    bottom: 1rem;
    right: -100%;
    width: 26rem;
    height: 5.5rem;
    background: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0px 0px 15px 0px #8080804a;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    padding: 0.5rem;
    position: relative;
    margin-top: 2.5rem;
}

.bx-x-circle:before {
    content: "\ec8e";
    position: relative;
    left: -1px;
}

.statusalert {
    font-size: 2rem;
    margin-right: 10px;
    color: #fd7c7c;
    width: 15%;
    max-width: 3rem;
    text-align: center;
}

.bqAlerta p {
    font-family: 'Montserrat';
    color: #5a5a5a;
    font-size: 14px;
    width: 85%;
    text-align: justify;
}

.btnclose {
    position: absolute;
    left: 0rem;
    top: 0px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: 0.5s;
}

.btnclose:hover {
    color: gray;
}

.viewalerta {
    animation: alertView 0.5s;
    right: 0%;
}

.closealerta{
    animation: alertView 0.5s;
    right: -100%!important;
}

.bx-tada {
    -webkit-animation: tada 1.5s ease infinite!important;
    animation: tada 1.5s ease infinite!important;
}

.systemalerts {
    width: 50%;
    min-width: 300px;
    height: auto;
    max-height: 260px;
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
    z-index: 2020;
}

.contalerta {
    bottom: 0;
    right: 0;
}

.d_none {
    animation: alertClose 0.5s ease-in-out!important;
}

@media(max-width: 768px){
    .systemalerts {
        width: 100%;
    }

    .bqAlerta {
        width: 300px;
    }
}