.notiny-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.notiny-container {
    position: fixed;
    z-index: 9999
}

.notiny-container-fluid-bottom .notiny-base, .notiny-container-fluid-top .notiny-base {
    width: 100%;
    border-radius: 0
}

.notiny-container-fluid-top .notiny-base {
    margin-top: 0
}

.notiny-container-fluid-bottom .notiny-base {
    margin-bottom: 0
}

.notiny-img {
    display: none
}

@-webkit-keyframes notiny-animation-hide {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    20% {
        opacity: 1
    }
    30% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2)
    }
    to {
        opacity: 0;
        -webkit-filter: blur(4px);
        filter: blur(4px);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@keyframes notiny-animation-hide {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    20% {
        opacity: 1
    }
    30% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2)
    }
    to {
        opacity: 0;
        -webkit-filter: blur(4px);
        filter: blur(4px);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@-webkit-keyframes notiny-animation-show {
    0% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-filter: blur(4px);
        filter: blur(4px)
    }
    15% {
        opacity: 1
    }
    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2)
    }
    90% {
        -webkit-filter: blur(0);
        filter: blur(0)
    }
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@keyframes notiny-animation-show {
    0% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-filter: blur(4px);
        filter: blur(4px)
    }
    15% {
        opacity: 1
    }
    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2)
    }
    90% {
        -webkit-filter: blur(0);
        filter: blur(0)
    }
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@-webkit-keyframes notiny-animation-hover {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    to {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1)
    }
}

@keyframes notiny-animation-hover {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    to {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1)
    }
}

.notiny-theme-dark {
    background-color: #2f96b4;
    color: #fff;
}

.notiny-theme-light {
    background-color: #f0f0f0;
    color: #202020
}

.notiny-default-vars {
    padding: 0;
    margin: 2px 0;
    border-radius: 3px;
    min-height: 32px;
    max-width: 100vw
}

.notiny-default-vars .notiny-img {
    display: block;
    border-radius: 2px;
    width: 32px;
    height: 32px;
    float: left
}

.notiny-default-vars .notiny-text {
    font-family: "Gotham", Arial, sans-serif;
    font-size: 12px;
    padding: 16px 18px 15px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.notiny-default-vars .notiny-with-img .notiny-text {
    padding-left: 6px
}