.notifies_container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: fixed;
    top: 3%;
    right: 5px;
    left:5px;
    z-index: 10100;
}

.notifier {
    background: #000;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    position: relative;
    background: #262e3a;
    padding: 0 15px;
    margin: 0;
    border-radius: 11px;
    border: 1px solid #262e3a;
    font-size: 0.8125rem;
}

.notifier img.x {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
}

.notifier div {
    width: 300px;
    padding: 13px 30px 13px 15px;
}

.notifier div h5 {
    font-weight: normal;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #fff;
}

.notifier div a {
    color: #fff;
    text-decoration: underline;
}

.notifier div a:hover {
    text-decoration: none;
}

.notifier div p {
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.notifier.success div h5 {
    color: #79b717;
}

.notifier.fail div h5 {
    color: #a94442;
}

@media (min-width: 768px) {
    .notifies_container {
        top: 15px;
        right: 15px;
        left: auto;
    }

    .notifier {
        margin: 10px 0;
        padding: 10px 15px;
    }
}
