.alert-custom-modal-container {
    /* u-flex */
    display: -ms-flexbox!important;
    display: flex!important;
    /* u-justifyContentCenter */
    justify-content: center!important;
    /* u-alignItemsCenter */
    -webkit-box-align:center!important;
    -webkit-align-items:center!important;
    -ms-flex-align:center!important;
    align-items:center!important;
}

.alert-custom-modal {
    z-index: 99999;
    background-color: #fff;
    width: auto;
    height: fit-content;
    overflow: hidden;
    overflow-y: scroll;
    padding: 60px;
    -webkit-box-shadow: 0 3px 50px 0 rgba(0,0,0,.1);
    box-shadow: 0 3px 50px 0 rgba(0,0,0,.1);
    text-align: center;
    border-radius: 5px;
    margin-bottom: 0 !important;
}

.alert-custom-modal--ssoAuth {
    background-color: #fff;
    padding: 60px;
    -webkit-box-shadow: 0 3px 50px 0 rgba(0,0,0,.1);
    box-shadow: 0 3px 50px 0 rgba(0,0,0,.1);
    text-align: center;
    border-radius: 5px;
    margin-bottom: 0 !important;
}

.alert-custom-modal .panel {
    border: 0px !important;
    box-shadow: none !important;
}

.alert-custom-modal .btn {
    border-radius: 3px !important;
    line-height: 44px;
    padding: 0 30px;
}

@media screen and (max-width:767px){
    .alert-custom-modal  {
        max-height: 80%;
        overflow-y: scroll;
    }
}