.Alert-popup{
    position: absolute;
    background-color:#fff;	/* red */
    border: 3px solid red;	/* black */
    width: 380px;
    min-height: 200px;
    padding: 5px;
}
.Alert-popup-head{
    display: flex;
}
.Alert-popup-close{
    margin-left: auto;
    padding: 0 5px;
    background-color: rgb(200, 200, 200);
    border-radius: 0 0 5px 5px;
    cursor: pointer;
}
.Alert-popup-title{
    font-weight: bold;
    margin: 20px 0;
    font-size:16pt;
}
.Alert-popup-text{
    margin-bottom: 10px;
	padding:10px;
    font-size:12pt;
    text-align:left;
    background-color:#fff;	/* yellow */

}
.Alert-popup-color-2{
    border: 3px solid blue;
}
.Alert-popup-color-1{
    border: 3px solid red;
}
.Alert-popup-remind.Alert-popup-color-2{
    background-color: blue;
    color: white;
}
.Alert-popup-remind.Alert-popup-color-2 .Alert-popup-link a,
.Alert-popup-remind.Alert-popup-color-2 .Alert-popup-link > div
{
    color: white;
}
.Alert-popup-remind.Alert-popup-color-1{
    background-color: red;
    color: white;
}
.Alert-popup-remind.Alert-popup-color-1 .Alert-popup-link a,
.Alert-popup-remind.Alert-popup-color-1 .Alert-popup-link > div
{
    color: white;
}
.Alert-popup-link{
    display: none;
    text-align: center;
}
.Alert-popup-link-on{
    display: block;
}
.Alert-popup-link > a
,.Alert-popup-link > div{
    display: inline-block;
    border-style: outset;
    color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 5px;
    cursor: pointer;
}

.Alert-popup-link + .Alert-popup-link{
    margin-top: 5px;
}
.Alert-popup-audio{
    display: none;
}