.notice {
    transition: 1s all;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
    margin-left:calc(25vw - 120px);
}

.notice {
    transition: 1s all;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000;
    border-radius: 3px !important;
    padding: 5px 5px 5px 20px;
    max-height: 40px;
    top: 60px;
    left: 0;
    background: #fff;
    margin-left:calc(25vw - 0px) !important;
    border: 1px solid #c3c4c7;
    line-height: 0.8;
}

.notice .notice-dismiss {
    float: right;
}

.notice .notice-dismiss:before {
    background: 0 0;
    color: #ccc;
    content: "\f153";
    display: block;
    font: normal 16px/20px dashicons;
    speak: never;
    height: 20px;
    text-align: center;
    width: 20px;
    margin-top: -10px;
}

.notice-dismiss {
    border: 0;
    padding: 15px 5px !important;
}

.notice-dismiss:hover {
    background: transparent;
}

.notice.notice-warning, .notice.notice-info, .notice.notice-success {
    background: #fff !important;
    color:#000;
    padding-top: 4px;
}

.notice.notice-warning p, .notice.notice-info p, .notice.notice-success p {
    padding-top: 4px;
}

.notice.notice-warning-h {
    background: #e13434;
    padding-top: 0;
}

.notice.notice-info-h {
    background: #d6d5d5;
    padding-top: 0;
    color: #000;
}

.notice-success-h .notice-dismiss, .notice-info-h .notice-dismiss {
    color: #000 !important;
    font-size: 24px;
}

.notice.notice-success-h {
    background: #d2ab67;
    padding-top: 0;
    color: #ffffff;
}

.notice-background .notice {
    min-height: 150px!important;
    max-height: unset;
    background: #ccc;
    color: #ffffff;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column-reverse;
}

.notice-background .notice p {
    color: #ffffff;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    position: relative !important;
    padding-bottom: 25px;
}

.notice-background .mask {
    width: 100%;
    height: 120vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: 350ms;
    z-index: 99999;
    display: none;
}

.notice-background .mask.active {
    opacity: 0.4;
    display: block;
    background-color: #000;
}

.notice-background .notice .notice-dismiss {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0!important;
    width: 30px!important;
    height: 30px!important;
}

.notice-background .notice .notice-dismiss:focus {
    background-color: transparent!important;
}

.notice-background .notice .notice-dismiss::before {
    color: #fff;
    font-size: 24px;
    height: 30px;
    width: 30px;
    line-height: 40px;
}

.notice.notice-info {
    background: #fff;
}

.notice.notice-alert, .notice.notice-danger {
    background: #cd2a31;
}

.notice .notice-dismiss::before {
    color: #fff;
}