.main-notify-wrapper {
    font-family: "Roboto";
    position: fixed;
    right: 10px;
    bottom: 20px;
    width: 260px;
    max-width: 300px
}

.main-notify-wrapper .notify-inner {
    display: flex;
    flex-direction: column;
    width: 100%
}

.main-notify-wrapper .notify-inner .notify-item {
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    background-color: #ffffec;
    border: 2px solid #f7f9b6;
    border-radius: 3px;
    padding: 16px;
    margin-top: 16px
}

.main-notify-wrapper .notify-inner .notify-item h5,
.main-notify-wrapper .notify-inner .notify-item p {
    margin: 0;
    font-size: 16px;
    font-family: 'Roboto'
}

.main-notify-wrapper .notify-inner .notify-item p {
    padding-top: 3px
}

.main-notify-wrapper .notify-inner .notify-item p:first-child {
    padding: 0
}

.main-notify-wrapper .notify-inner .notify-item h5 {
    padding-bottom: 8px
}

@media only screen and (max-width:1600px) {
    .main-notify-wrapper {
        max-width: 200px;
        width: 200px
    }
    .main-notify-wrapper .notify-inner .notify-item h5,
    .main-notify-wrapper .notify-inner .notify-item p {
        font-size: 12px
    }
}

@media only screen and (max-width:868px) {
    .main-notify-wrapper {
        display: none
    }
}