.noty_modal {
    position: fixed;
    z-index: 9999998;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: #fff;
    opacity: 0.9;
}

.noty_cont,
.noty_bar {
    position: fixed;
    z-index: 9999999;
    right: 35px;
    top: 125px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.noty_bar {
    display: none;
    width: 100%;
}

.noty_cont .noty_bar {
    position: static;
}

.top {
    top: 0;
}

.noty_bar.noty_layout_topRight {
    top: 25px;
    right: 25px;
    width: 325px;
    background: white;
    padding: 15px 35px;
    border: 1px solid;
    box-sizing: border-box;
}

.noty_layout_topLeft {
    top: 15px;
    left: 15px;
}

.noty_layout_bottomLeft {
    bottom: 15px;
    left: 15px;
}

.noty_layout_bottomRight {
    bottom: 15px;
    right: 15px;
}

.noty_bar .noty_close {
    cursor: pointer;
}

.noty_bar .s_item {
    display: flex;
    gap: 15px;
}

.noty_bar .s_thumb {
    max-width: 70px;
}

.noty_header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
}

.noty_header a:last-child {
    border-bottom: 1px solid;
}

@media only screen and (max-width: 768px) {
    .noty_layout_topRight {
        top: 85px;
        right: 10px;
        padding: 15px 15px;
    }
}