@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    --bs-body-font-size: 14px !important;
}
body {
    margin: 0;
    color: #2a2a2a;
    font-family: "Inter", sans-serif;
    padding-top: 0;
    user-select: none;
    background: linear-gradient(135deg, rgb(255, 190, 166) 0%, rgb(255, 225, 219) 100%);
    background-color: #fff;
}

/* NOTIFY */
.Notify {
    position: relative;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    animation-duration: 0.25s;
    animation-fill-mode: both;
    font-size: small;
}
    .Notify.done {
        animation-name: notifyOut;
    }
    .Notify-area {
        position: fixed;
        left: 50%;
        top: 34px;
        transform: translateX(-50%);
        z-index: 10001;
        margin-bottom: 15px;
        min-width: 150px;
    }
    .Notify-message {
        padding: 8px 28px 8px 15px;
        max-width: 420px;
    }
    .Notify-close {
        position: absolute;
        z-index: 1500;
        right: 7px;
        top: 0px;
        line-height: inherit;
        color: inherit;
        cursor: pointer;
    }
    @keyframes notifyOut {
        0% {opacity: 1;transform: translateZ(0)}
        to {opacity: 0;transform: translateY(-100vh)}
    }

/* COLOR */
.error, .danger, .hoverError:hover, .hoverDanger:hover {
    background-color: rgba(251, 72, 58, 0.8) !important;
    color: #ffffff !important;
}

.success, .hoverSuccess:hover {
    background-color: rgba(53, 180, 53, 0.8) !important;
    color: #ffffff !important;
}
.warning, .hoverWarning:hover {
    background-color: rgba(253, 125, 20, 0.8) !important;
    color: #ffffff !important;
}
.info, .hoverInfo:hover {
    background-color: rgba(72, 163, 255, 0.8) !important;
    color: #ffffff !important;
}

._good {
    background-color: rgba(53, 180, 53, 0.15);
}
._warn {
    background-color: rgb(255 163 87 / 15%);
}
._bad {
    background-color: rgba(251, 72, 58, 0.15);
}

.results {
    margin: 10px 20px 20px;
    border: 2px solid #15721540;
    padding: 20px 15px;
    border-radius: 4px;
}