@font-face {
    font-family: 'Poppins';
    src: url('~/fonts/Poppins-Medium.eot');
    src: url('~/fonts/Poppins-Medium.eot') format('embedded-opentype'), url('~/fonts/Poppins-Medium.woff2') format('woff2'), url('~/fonts/Poppins-Medium.woff') format('woff'), url('~/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.toast-container {
    z-index: 9999;
    position: absolute;
    display: flex;
    flex-direction: column;
    max-width: 80%;
    margin-left: auto;
    margin-bottom: auto;
    right: 0;
    top: 0;
    padding-right: 1rem;
    font-family: Poppins;
    pointer-events:all !important;
}

.statusembed-toast {
    z-index: 9999;
    display: flex;
    border-style: solid;
    border-radius: 0%;
    border-width: 2px;
    background-color: white;
    flex-direction: row;
    margin-top: 1rem;
    justify-content: space-between;
}

.header {
    color: white;
    padding-top: 0;
    margin-bottom: 0;
}

.informational-header {
    background-color: #0058FF;
}

.success-header {
    background-color: #7bc144;
}

.warning-header {
    background-color: #f99600;
}

.error-header {
    background-color: #dc3545;
}

.informational-border {
    border-color: #0058FF;
}

.success-border {
    border-color: #7bc144;
}

.warning-border {
    border-color: #f99600;
}

.error-border {
    border-color: #dc3545;
}

.toast-body {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
    margin-right: auto;
}

.pageLink {
    color: #171725;
    margin: 1rem;
    text-decoration: underline !important;
    font-size: 1.5rem !important;
}

    .pageLink:hover {
        color: #0036D5;
    }

.btn-close {
    color: #171725;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 1s;
}

.icon {
    margin-top: 1rem;
    width: 20px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.incidentName {
    color: #171725;
    margin: 1rem;
    margin-top: 1.1rem;
}

.close-button-container {
    display: flex;
    flex-direction: column;
    justify-content: right;
    justify-self: right;
}

.close-button {
    all: unset;
    margin-top: 1rem;
    margin-right: 1rem;
    background-image: url("../../close_toast_icon.svg");
    background-repeat: no-repeat;
    background-position: right;
    width: 20px;
    height: 20px;
}

    .close-button:hover {
        transform: scale(1.1);
    }

.close-icon {
    color: #171725;
}

    .close-icon:hover {
        fill: white;
    }

.hide {
    display: none;
}
