/*

To customize the colors, include the following snippet in the theme customizer:

:root {
  --chaos_notify_background: #ffffff;
  --chaos_notify_border: #ffffff;
  --chaos_notify_content_background: #ffffff
}

*/

.chaos_notify_popup {
    z-index:99999;
    height: 100%;
    position: fixed;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.chaos_notify_main-popup {
    height: auto;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
    background: var(--chaos_notify_background, white);
    border: solid 1px var(--chaos_notify_border, black);
    box-shadow: 15px 15px 5px #aaa;
    padding: 15px 10px;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
}

@media (min-width: 768px) {
    .chaos_notify_main-popup {
        width: 30%;
    }
}

.chaos_notify_popup-content {
    width: 100%;
    margin-right: 4rem;
    padding: 15px 10px;
    background-color: var(--chaos_notify_content_background, inherit);
}

.chaos_notify_close-btn {
    border: 1px solid black;
    padding: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: .5s ease all;
}
.chaos_notify_close-btn:hover {
    background: white;
}

@keyframes chaos_notify_slide-in {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes chaos_notify_slide-out {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
