.drift-hi .dhi-notice {
    position: fixed;
    top: 0;
    left: 50%;
    padding: 0 20px;
    height: 56px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    width: 488px;
    z-index: 999999;
}

.drift-hi .dhi-notice .dhi-notice-text{
    margin-left: 16px;
    font-size: 13px;
    line-height: 18px;
    color: rgba(18,18,18,0.99);
}

.drift-hi .row-title {
    font-weight: 500;
}

.drift-hi .dhi-notice-success {
    border-left: 8px solid var(--dhiSuccess);
}

.drift-hi .dhi-notice-error {
    border-left: 8px solid var(--dhiError);
}

.drift-hi .dhi-notice-warn {
    border-left: 8px solid var(--dhiWarning);
}

.drift-hi .dhi-notice-info {
    border-left: 8px solid var(--dhiInfo);
}


.drift-hi .dhi-notice.enter {
    animation-name: enter;
    animation-timing-function: ease-in-out;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

.drift-hi .dhi-notice.out {
    animation-name: out;
    animation-timing-function: ease-in-out;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

@media only screen and (max-width: 510px) {
    .drift-hi .dhi-notice {
        width: 300px;
    }
} 

@keyframes enter {
    0% {
        transform: translate(-50%, -100% );
    }
    100% {
        transform: translate(-50%, 20px );
    }
}

@keyframes out {
    0% {
        transform: translate(-50%, 20px );
    }
    100% {
        transform: translate(-50%, -100% );
    }
}
