.toast {
    overflow: hidden;
    font-size: 0.875rem;
    margin-top: auto;
    margin-bottom: 2%;
    background-color: rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    display: none;
    animation: fadeOut 10s linear forwards;
}

.toast__name{
    margin-top: 2%;
    display: flex;
    color: #0C7F8D;
    font-size: calc(0.8vw + 0.2vh + 0.5vmin);
    justify-content: center;
}
.toasts{
    position: fixed;
    top: 3%;
    right: 3%;
    width: 27%;
    z-index: 1500;
}
.avatar{
    display: inline;
    position: relative;
    width: 100%;
    margin-left: 7%;
    bottom: -35%;
    padding-top: 10%;
}
.avatar>img{
    width: 17%;
    border-radius: 50%;
    padding-bottom: 0%;
    border: 1px solid #00000057;
}
.toast__progress {
    width: 0;
    height: 6%;
    background: #038E9F;
    position: absolute;
    bottom: 4%;
    left: 3%;
    border-radius: 12px;
    animation: runProgress 9s linear forwards 0.7s;
}
@-webkit-keyframes fadeOut {
    0% { opacity: 0; max-height: 100px;}
    10% { opacity: 1; max-height: 100px;}
    90% { opacity: 1; -webkit-transform: translateY(0px); max-height: 100px;}
    99% { opacity: 1; -webkit-transform: translateY(0px); max-height: 0px;}
    100% { opacity: 0; max-height: 0px;}

}


@-moz-keyframes fadeOut {
    0% { opacity: 0; max-height: 100px;}
    10% { opacity: 1; max-height: 100px;}
    90% { opacity: 1; -moz-transform: translateY(0px); max-height: 100px;}
    99% { opacity: 1; -moz-transform: translateY(0px); max-height: 0px;}
    100% { opacity: 0;max-height: 0px; }

}


@-o-keyframes fadeOut {
    0% { opacity: 0; max-height: 100px;}
    10% { opacity: 1; max-height: 100px;}
    90% { opacity: 1; -o-transform: translateY(0px); max-height: 100px;}
    99% { opacity: 1; -o-transform: translateY(0px); max-height: 0px;}
    100% { opacity: 0; max-height: 0px;}

}


@-ms-keyframes fadeOut {
    0% { opacity: 0; max-height: 100px;}
    10% { opacity: 1; max-height: 100px;}
    90% { opacity: 1; -ms-transform: translateY(0px); max-height: 100px;}
    99% { opacity: 1; -ms-transform: translateY(0px); max-height: 0px;}
    100% { opacity: 0; max-height: 0px;}

}


@keyframes fadeOut {
    0% { opacity: 0; max-height: 100px;}
    10% { opacity: 1; max-height: 100px;}
    90% { opacity: 1; transform: translateY(0px);  max-height: 100px;}
    99% { opacity: 1; transform: translateY(0px); max-height: 0px;}
    100% { opacity: 0; max-height: 0px;}

}


@-webkit-keyframes runProgress {
    0%{ width: 0%; }
    100%{ width: 94%; }

}


@-moz-keyframes runProgress {
    0%{ width: 0%; }
    100%{ width: 94%; }

}


@-o-keyframes runProgress {
    0%{ width: 0%; }
    100%{ width: 94%; }

}


@-ms-keyframes runProgress {
    0%{ width: 0%; }
    100%{ width: 94%; }

}


@keyframes runProgress {
    0%{ width: 0%; }
    100%{ width: 94%; }

}
.toast:not(:last-child) {
    margin-bottom: 0.75rem;
}

.toast_show {
    display: inline-block;
    width: 100%;
    border-radius: 15px;
    padding-bottom: 2%;
}

.toast__header {
    display: flex;
    align-items: center;
    padding: 0.25rem 2rem 0.25rem 0.75rem;
    color: #212529;
    background-color: rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.toast__close {
    display: none;
    position: absolute;
    top: 0;
    right: 10px;
    padding: 0;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.6;
    appearance: button;
    margin: 0;
    font-family: inherit;
    border-radius: 0;
}

.toast__body {
    margin-bottom: 10px;
    font-size: calc(0.8vw + 0.01vh + 0.5vmin);
    font-weight: bold;
    text-align: center;
    padding-bottom: 1%;
    padding-top: 2%;
}

input:not([type="checkbox"]) {
    display: block;
    font-size: 1rem;
    margin-bottom: .5rem;
}
