.alert-container {
    position: fixed;
    bottom: 10vh;
    left: calc(50vw - 200px);

    width: 400px;
    height: 100px;

    background: white;
    box-shadow: 0 2px 2px rgba(50, 50, 50, 0.1);
    border-radius: 0.5rem;

    z-index: 9999;
}

.alert-container > .color-bar,
.notice-container > .color-bar {
    width: 100%;
    height: 8px;

    border-radius: 0.5rem 0.5rem 0 0;
}

.color-bar.error {
    background: var(--warning-red);
    box-shadow: none !important;
}

.color-bar.success {
    background: var(--sushi);
    box-shadow: none !important;
}

.color-bar.info {
    background: var(--hms-orange);
}

.alert-container > .close-button {
    position: relative;
    margin-left: calc(100% - 18px);
    margin-top: -20px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: white;
    box-shadow: 0 2px 2px rgba(50, 50, 50, 0.22);

    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.alert-container > .close-button:hover {
    cursor: pointer;
}

.close-button > .close-icon {
    width: 20px;
    height: 20px;
}

.alert-container > .content-wrapper {
    display: flex;
    flex-direction: row;

    margin-top: -10px;
    padding-right: 8px;
    padding-bottom: 4px;
}

.alert-container .content-wrapper .alert-icon-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 82px;
    width: 20%;
}

.alert-container .alert-icon-container .alert-icon {
    width: 40px;
    height: 40px;
}

.alert-container .alert-message-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 80%;
    height: 92px;
}

.alert-container .alert-message-container .alert-header {
    font-size: 0.75rem;
    text-transform: uppercase;

    margin-top: 8px;
}

.alert-header.error {
    color: var(--warning-red);
    background-color: inherit !important;
    box-shadow: none !important;
}
.alert-header.success {
    color: var(--sushi);
    box-shadow: none !important;
    background-color: inherit !important;
}
.alert-header.info {
    color: var(--hms-orange);
}

.alert-container .alert-message-container .alert-message {
    font-size: 0.75rem;
    overflow-y: scroll;
}

.notice-container {
    position: fixed;
    bottom: 20vh;
    left: calc(50vw - 300px);
    width: 600px;

    box-shadow: 0 2px 2px rgba(50, 50, 50, 0.1);
    border-radius: 0.5rem;
}

.notice-container > .content {
    width: 100%;
    min-height: 200px;

    padding: 15px;
    background: var(--sub-white);
}