@import "https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Dosis:wght@800&display=swap";
.alert-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 auto;
    left: 0;
    top: 0;
    overflow: hidden;
    position: fixed;
    background: rgb(0, 0, 0, .3)
}


@keyframes open-frame {
    0% {
        transform: scale(1)
    }
    25% {
        transform: scale(.95)
    }
    50% {
        transform: scale(.97)
    }
    75% {
        transform: scale(.93)
    }
    100% {
        transform: scale(1)
    }
}
.alert-frame {
    background: #fff;
    width:90%; min-width: 300px; max-width: 600px;  font-family : droid1;
    box-shadow: 5px 5px 10px rgb(0, 0, 0, .2);
    border-radius: 10px;
}
.alert-header {
    display: flex;
    flex-direction: row;
    height: 175px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.read-info-header {
    display: block;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 15px;
    color: white;
    text-shadow: 5px 5px 10px rgb(0, 0, 0, .2);

}

.alert-img {
    height: 80px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    align-self: center
}
.alert-close {
    width: 30px;
    height: 30px;
    color: rgb(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: dosis, sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    line-height: 30px;
    transition: color .5s;
    margin-left: auto;
    margin-right: 5px;
    margin-top: 5px
}
.alert-close-circle {
    width: 30px;
    height: 30px;
    background: #e4eae7;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17.5px;
    margin-top: -15px;
    margin-right: -15px;
    font-family: dosis, sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    line-height: 30px;
    transition: background .5s;
    margin-left: auto
}
.alert-close-circle:hover {
    background: #fff
}
.alert-close:hover {
    color: rgb(0, 0, 0, .5)
}
.alert-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: center
}
.alert-title {
    font-size: 18px !important;
    font-family: bahig;
    font-weight: 700;
    font-size: 15px;
    color: #222;
    align-self: center;
    margin-bottom: 10px;
}
.alert-message {
    font-size: 18px !important;
    color: #666;
    font-family: bahig;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    align-self: center;
    margin-bottom: 10px;

}
.alert-button {
    min-width: 140px;
    height: 35px;
    border-radius: 20px;
    font-family: open sans, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .5s;
    padding: 0 15px;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center
}
.alert-button:focus {
    outline: 0
}
.question-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.confirm-button {
    min-width: 100px;
    height: 35px;
    border-radius: 20px;
    font-family: open sans, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .5s;
    padding: 0 15px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}
.confirm-button:focus {
    outline: 0
}
.cancel-button {
    min-width: 100px;
    height: 35px;
    border-radius: 20px;
    font-family: open sans, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1.6;
    transition: background .5s;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}
.cancel-button:focus {
    outline: 0
}
@keyframes open-toast {
    0% {
        transform: opacity(0)
    }
   
    100% {
        transform: opacity(1)
    }
}
.toast-container {
    top: 0px; margin:20px;
    width : calc(100% - 40px);
    overflow: hidden;
    position: fixed;
    border-radius: 5px;
    box-shadow: 0 0 20px rgb(0, 0, 0, .2);
    animation: open-toast .3s linear;
    z-index: 999999;
    
}
.toast-frame {
    padding: 5px 15px;
    display: flex;
    min-width: 100px;
    height: 60px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    align-items: center;
    flex-wrap: wrap
}
.toast-img {
    height: 40px ; margin-right:5px; margin-left: 20px;
}
.toast-message {
    font-size: 14px !important;
    font-family: droid1;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin-left: 15px
}
.toast-close {
    color: rgb(0, 0, 0, .2);
    font-family: dosis, sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: color .5s;
    margin-right: 25px; position: fixed; top:35px; right:20px;
}
@keyframes timer {
    0% {
        width: 100%
    }
   
    100% {
        width: 1%
    }
}
.toast-timer {
    float: left;
    width: 100%;
    height: 5px;
}
.toast-close:hover {
    color: rgb(0, 0, 0, .5)
}
.error-bg {
    background: #d85261
}
.success-bg {
    background: #2dd284
}
.warning-bg {
    background: #fada5e
}
.question-bg {
    background: #779ecb
}
.error-btn:hover {
    background: #e5a4b4
}
.success-btn:hover {
    background: #6edaa4
}
.warning-btn:hover {
    background: #fcecae
}
.info-btn:hover {
    background: #c3e6fb
}
.question-btn:hover {
    background: #bacee4
}
.error-timer {
    background: #e5a4b4
}
.success-timer {
    background: #6edaa4
}
.warning-timer {
    background: #fcecae
}
.info-timer {
    background: #c3e6fb
}
.info-bg {
    background: #88cef7
}