@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
.alert-container-for-plugin{
    overflow: hidden;
    position: fixed;
    /*We want the element to transition from under the screen, so bottom should be the height of the element plus the margin*/
    bottom: 0;
    right: 13px;
    display: flex;
    padding: 15px;
    border-color: #313538;
    z-index: 99999999999999999999999999999999999999999999999;
    box-sizing: border-box;
    height: 70.2px;
}
@keyframes make-visible {
    from {
        padding: 0 15px;
        height: 0;
        opacity: 0;
    }
    to {
        padding: 15px 15px;
        height: 70.2px;
        opacity: 1;
    }
}
@keyframes make-invisible {
    from {
        padding: 15px 15px;
        height: 70.2px;
        opacity: 1;
    }
    to {
        padding: 0 15px;
        height: 0;
        opacity: 0;
    } 
}
.visible-for-plugin {
    font-family: inherit;
    animation: make-visible 0.6s ease-in-out;
}
.invisible-for-plugin{
    font-family: inherit;
    animation: make-invisible 0.6s ease-in-out;
}
.alert-container-for-plugin a{
    font-family: inherit;
    cursor: pointer;
}
.alert-container-for-plugin article{
    font-family: inherit;
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}
.alert-container-for-plugin object{
    width: 0px;
    height: 0px;
}
.alert-container-for-plugin .close_icon{
    font-family: inherit;
    position: absolute;
    right: 8.5px;
    top: 13px;
    width: 14px;
    height:14px;
    cursor: pointer;
    transition: all 0.25s;
}
.alert-container-for-plugin h3{
    font-family: inherit;
    margin-bottom: 5px;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
    white-space: nowrap;
    width: 100%;
}
.alert-container-for-plugin summary{
    font-family: inherit;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
    white-space: nowrap;
    width: 100%;
}
.alert-container-for-plugin h3, .alert-container-for-plugin summary{
    font-family: inherit;
    line-height: 1.2;
}
.alert-container-for-plugin summary, .alert-container-for-plugin a{
    font-family: inherit;
}
.alert-container-for-plugin button {
    font-family: inherit;
    height: 25px;
    padding: 0 10px;
    font-size: 12px;
    margin: 0;
    cursor: pointer;
}
