.toasterCards {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

body {
    background-color: rgb(34, 1, 34);
    font-family: 'Segoe UI Light', Tahoma, Geneva, Verdana, sans-serif;
}

img {
    width: 100%;
    border-radius: 15px;
    height: auto;
}


.bottom{
    display: flex;
    position: fixed;
    bottom: 0;
    color: white;
    width: 96%;
    justify-content: space-evenly;
    margin-bottom: 25px;
    animation: icons 1s forwards ease-in-out;
}


.bottom > div > i{
    font-size: 35px;
}

.pulse{
    animation: pulse .5s forwards;
}

@keyframes pulse {
 0%{
    color: white
 }   
 50%{
    color: red;
 }
 100%{
    color: white
 }
}

[na]{
    animation: none;
}

.pulse-green{
    animation: pulse-green .5s forwards;
}

@keyframes pulse-green {
 0%{
    color: white
 }   
 50%{
    color: rgba(0, 255, 64, 0.363);
 }
 100%{
    color: white
 }
}

@keyframes icons {
    0%{
        transform: scale(0) rotate(180deg);
    }
    100%{
        transform: scale(1) rotate(0deg);
    }
}

.toaster {
    text-align: center;
    color: white;
    height: 72vh;
    overflow: scroll;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    width: 85%;
    padding: 4%;
    animation: in 1s forwards;
}

body{
    margin: 0px;
}

.sheet-open{
    background-color: purple;
    position: fixed;
    width: 100vw;
    bottom: 0;
    height: 85vh;
    border-radius: 15px 15px 0px 0px;
    color: white;
    animation: open .5s ease-in-out forwards;
}

.sheet-close{
    background-color: purple;
    position: fixed;
    width: 100vw;
    bottom: 0;
    height: 85vh;
    border-radius: 15px 15px 0px 0px;
    color: white;
    animation: close .5s ease-in-out forwards;
}


@media only screen and (min-width: 600px) {
    .toaster{
        width: 40%;
        height: 50%;
    }
  }

.sheet-nostate{
    display: none;
}

.t-item{
    justify-content: space-around;
    display: flex;
    width: 100%;
    background-color: rgb(176, 61, 180);
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 25px;
}

.t-item > .links{
    display: flex;
    align-items: center;
}

.t-item > .links > i{
    margin-left: 5px;
    margin-right: 15px;
}

.bar{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0; 
    width: 100%;
    margin-bottom: 25px;
}

.bar > input{
    margin-right: 15px;
    font-size: 25px;
    border-radius: 150px;
    border: none;
    outline: none;
}
.bar > i{
    font-size: 25px;
}

.messages{
    overflow-y: scroll;
    height: 70%;
}

.fai{
    background-color: rgb(197, 59, 197);
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
}

.red{
    background-color: rgb(116, 9, 116);
}

.fai > div > i {
    margin-left: 15px;
    margin-right: 15px;
}

.t-item > .links > img{
    height: 30px;
    width: auto;
}

@keyframes close {
    100%{
        opacity: 0;
        display: none;
        transform: translateY(300px);
    }
    1%{
        display: block;
    }
    0%{
        opacity: 1;
        transform: translate(0px);
    }
}

@keyframes open {
    0%{
        opacity: 0;
        display: none;
        transform: translateY(300px);
    }
    1%{
        display: block;
    }
    100%{
        opacity: 1;
        transform: translate(0px);
    }
}

.toaster > h1{
    background-color: rgb(80, 21, 80);
    padding: 4%;
    border-radius: 15px;
}

.toaster > img{
    width: 100%;
    height: auto;
}

.t2 {
    text-align: center;
    color: white;
    height: 80vh;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    width: 95%;
    animation: in 1s forwards;
}

@keyframes in {
    0%{
        transform: scale(0);
    }
    40%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}


.toaster-off{
    display: none;
}

.toaster-left{
    animation: left 1.5s ease-in-out forwards;
}

.toaster-right{
    animation: right 1.5s ease-in-out forwards;
}


@keyframes left {
    0%{
        opacity: 1;
        transform: none;
    }
    100%{
        transform:  rotateZ(-.035turn) translateX(-1000px);
        opacity: 0;
    }
}


@keyframes right {
    0%{
        opacity: 1;
        transform: none;
    }
    100%{
        transform:  rotateZ(.035turn) translateX(1000px);
        opacity: 0;
    }
}