.notice{
    --width: 180px;
    --min-height: 72px;
    --window-padding: 5px;
    --color: #d541c1;
    --margin: 32px;
    --ico-size: 2.4rem;
    --icon-wrapper-size: 66px;
    --transition: .4s;
}
.notice{
    display: none; align-items: center; justify-content: center; background-color: rgba(0,0,0,0.2);
    position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100vh; transition: var(--transition) linear;
    backdrop-filter: blur(3px);
}
.notice .window{
    display: none; z-index: 2; border-radius: 5px; width: var(--width); min-height: var(--min-height);
    background: #FFF; padding: var(--window-padding); transition: var(--transition) linear; opacity: 0;
    box-shadow: 0 0 0 1px #b2b2b2, 0 25px 100px 0 rgba(0,0,0,.5);
}
.notice .window.light{
    background: rgba(255,255,255,1); box-shadow: 0 2px 20px rgba(0,0,0,0.1); backdrop-filter: blur(3px);
}
.notice .ico-wrapper{
    text-align: center;
    line-height: 0; background-color: #f8f9fa;
    display: flex; align-items: center; justify-content: center; border-radius: 100%;
    margin-left: auto; margin-right: auto; margin-top: var(--margin); margin-bottom: var(--margin);
}
.notice .window.light .ico-wrapper{ background-color: transparent; }
.notice .ico-wrapper i{ /*text-shadow: 0 1px 2px rgba(0,0,0,0.6);*/ }
.notice .ico-wrapper .loading{
    line-height: 0; display: none;
    justify-content: center; align-items: center; gap: 5px;
}
.notice .ico-wrapper .icon{
    line-height: 0; font-size: var(--ico-size); display: none; margin-top: calc( ((var(--icon-wrapper-size) / 2) + var(--margin) + var(--window-padding)) * (-1) );
    width: var(--icon-wrapper-size); height: var(--icon-wrapper-size); align-items: center; justify-content: center;
    background-color: #333; border-radius: var(--icon-wrapper-size); color: #FFF;
}
.notice .content{
    text-align: center; margin: var(--margin); color: #666; line-height: 1.2; font-size: 18px;
    word-wrap: break-word; display: none;
}
.notice .loading .spinner-grow{ color: var(--color); width: 1rem; height: 1rem; }
.notice .loading .spinner-grow:nth-child(1){ animation-delay: .0s; }
.notice .loading .spinner-grow:nth-child(2){ animation-delay: .06s; margin-left: -10px; }
.notice .loading .spinner-grow:nth-child(3){ animation-delay: .12s; margin-left: -10px; }
.notice .loading .spinner-grow:nth-child(4){ animation-delay: .18s; margin-left: -10px; }

.notice.open{ opacity: 1; }
.notice.close{ opacity: 0; }
.notice .window.open{ opacity: 1; transform: translateY(0px); }
.notice .window.close{ opacity: 0; transform: translateY(-90px); }

.notice .button-wrapper{ margin: var(--margin) 10px; margin-bottom: 10px; text-align: center; display: none; }
.notice .button-wrapper button{
    color: #FFF; border: 2px solid rgba(0,0,0,0.0); border-radius: 5px; padding: 10px 20px 10px 20px; line-height: 1;
    background: rgba(0,0,0,0.7); display: none; margin: 0 2px; font-weight: 600; transition: .2s ease;
    min-width: 90px;
}
.notice .button-wrapper button:hover{ background: rgba(0,0,0,0.8); }
.notice .button-wrapper button:active{ background: rgba(0,0,0,0.9); }

.notice .button-wrapper .success{ border: 2px solid rgba(0,0,0,0.7); color: rgba(0,0,0,0.7); background: transparent; }
.notice .button-wrapper .success:hover{ color: #FFF; border: 2px solid rgba(0,0,0,0.0); background: rgba(0,0,0,0.7); }

.notice .icon.text-primary{ color: #333 !important; }