    #squiz-alert-bg{
        z-index: 2;
        width: 100%;
        height:100%;
        position:absolute;
        justify-content:center;
        background: rgba(0,0,0,0.4);
    }
    .squiz-alert-wrapper{
        display:flex;
        justify-content:center;
        align-items: center;
        width:100%;
        height:100%;
    }    
    .squiz-alert-container{
        max-width:500px;
        position:relative;
    }    
    .alert-close-cross{
        position:absolute;
        right:8px;
        top:8px;
        color:#fff;
        border-radius:30px;
        border:2px solid #fff;
        height:26.5px;
        width:26.5px;
        cursor:pointer;
    }
    .alert-close-cross::after{
        content:"\00d7";
        top:-2px;
        position:absolute;
        right:5.8px;
        font-size:24.6px;
        font-weight:bold;
    }
    .alert-close-button{
        width:80px;
        border:2px solid #fff;
        border-radius:30px;
        margin:auto;
        left:0;
        right:0;
        bottom:10px;
        position:absolute;
        cursor:pointer;
        padding:5px;
    }
    .alert-close-button:hover, .alert-close-cross:hover{
        background: rgba(255,255,255,0.2);
    }
    .alert-close-button{
        color:#fff;
        margin-top:0px;
        display:flex;
        justify-content:center;
    }
    /*app-root{*/
    /*    position:relative;*/
    /*    width:100%;*/
    /*    height:100%;*/
    /*    display:inline-block;*/
    /*}*/
    .alert-visible{
        height:calc(100vh - 50px);
        margin-top:50px;
    }
    .in-page-alert__container{
        max-width:none !important;
    }
    .in-page-alert__wrapper{
        /*max-width:1151px;*/
    }
    .in-page-alert__container{
        padding-left:0 !important;
        padding-right:0 !important;
    }
    .in-page-alert__contents{
        min-height:80px;
        padding:40px;
    }
    .in-page-alert__contents-text h3{
        font-size:20px;
    }
    .in-page-alert__contents-text p{
        font-size:13px;
        margin-top:20px;
        margin-bottom:30px;
    }    
    .in-page-alert__contents-text a, .in-page-alert__contents-text a:visited{
        text-decoration:underline;
        color:#fff;
    }
    
/** alert color override **/    
.in-page-alert--palette-yellow { color:#000; background:#f6d25a; }
.in-page-alert--palette-yellow a { color:#2c5697; }
.in-page-alert--palette-yellow+.alert-close-button { border: 2px solid #2c5697;color: #2c5697;}
.squiz-alert-container:has(.in-page-alert--palette-yellow) .alert-close-cross { border:2px solid #2c5697; color:#2c5697;}
.in-page-alert--palette-blue { color:#fff; background:#2c5697; }
.in-page-alert--palette-red { color:#fff; background:#d9312d; }