.close {
	opacity: 0.9;
}
.notification-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}
.notification-modal {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 9999999999;
    display: none;
    max-width: 600px;
    width: 90%;
}
.notification-modal.show {
    display: block;
}
.notification-modal-backdrop.show {
    display: block;
}
.notification-buttons{
	display: flex;
	flex-direction: column;
}
.notification-close-btn {
    background: none;
    border: none;
    padding: 10px 0 0 0;
    margin: 0 !important;
    color: #5f59ac;
    text-decoration: underline;
    cursor: pointer;
    font-size: 16px;
}

.notification-close-btn:hover,
.notification-close-btn:focus {
    color: #0a58ca;
    text-decoration: underline;
    outline: none;
}

.notification-close-btn:active {
    color: #0a58ca;
}
.modal-content {
	background-color: #2b2e3b;
}
.modal-dialog {
	min-height: 0px!important;
}
.modal-header {
	justify-content: center;
	border-bottom: none;
	font-size: 28px;
    color: #f49c09;
	padding-top: 30px;
}
.modal-body {
    padding: 20px;
	font-size: 26px;
    color: white;
    line-height: normal;
	text-align: center;
}
.modal-footer {
	justify-content: center;
	border-top: none;
}
@media (max-width: 767px) and (orientation: portrait) {
    .notification-modal {
        top: 15%;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .notification-modal {
        top: 0;
    }
}