.stack-alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.3);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.stack-alert-container {
    background-color: #333;
    border-radius: 0.25em;
    padding: 1.5em 3em;
    box-shadow: rgba(0,0,0,.35) 0 5px 15px;
    text-align: center;
    max-width: 50em;
    border: 0;
    max-height: 80%;
    overflow-y: scroll;
    color: eee;
}

.stack-alert-title {
    text-align: left;
    flex-grow: 1;
    font-size: x-large;
    padding-left: 0.5em;
    font-weight: bold;
}

.stack-alert-text {
    font-size: 16px;
    margin-bottom: 20px
}

.stack-alert-title-container{
	display: flex;
	align-items: center;
}

.stack-alert-icon-container {
    width: 3em;
    height: 3em;
    flex-grow: 0;
    fill: #000;
}

.stack-alert-icon {
    fill: #F39621;
}

.stack-alert-button {
	padding: 6px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    margin: 0 10px;
    cursor: pointer;
    border: 0;
    transition: 0.1s ease-in-out;
    background-color: #F39621;
    color: #000;
}

.stack-alert-button:hover {
    background: #000;
    color: #fff;
}
