* {
    box-sizing: border-box;
    outline: none;
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    background-color: var(--bg-color) !important;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
    padding-top: 6rem;
    overflow-x: hidden;
}

body > *:not(header):not(aside):not(footer):not(script):not(style) {
    width: 100%;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.notiflix-notify {
    top: 83px !important;
    right: 16px !important;
    left: auto !important;
    z-index: 9999 !important;
    position: fixed !important;
    max-width: 90vw !important;
    width: 300px !important;
    border-radius: 8px !important;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.notiflix-notify-success { background-color: var(--primary-color) !important; color: #fff !important; }
.notiflix-notify-info    { background-color: var(--secondary-color) !important; color: #fff !important; }
.notiflix-notify-failure { background-color: #c0392b !important; color: #fff !important; }

#NotiflixNotifyWrap .notiflix-notify {
    background-clip: padding-box !important;
}