.ops-notice-primary, .ops-notice-priority {
    border-left: 4px solid #0174fc !important;
}

.ops-notice-secondary {
    border-left: 4px solid #383d41 !important;
}

.ops-notice-success {
    border-left: 4px solid #155724 !important;
}

.ops-notice-warning {
    border-left: 4px solid #ffba00 !important;
}

.ops-notice-info {
    border-left: 4px solid #0c5460 !important;
}

.ops-notice-light {

}

.ops-notice-error, .ops-notice-danger {
    border-left: 4px solid #721c24 !important;
}

.ops-notification-main-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;

    .ops-logo {
        display: flex;
        margin-right: 20px;
    }

    h3 {
        color: #444;
        font-size: 13px;
        font-weight: bolder;
        line-height: 120%;
        padding: 0 0 4px 0;
    }

    .ops-button {
        background: #00d88a;
        outline: none;
        display: inline-block;
        position: relative;
        line-height: 2;
        text-align: center;
        border: none;
        border-radius: 5px;
        color: #fff;
        text-decoration: none !important;
        font-weight: 600;
        transition: color 0.3s linear, background 0.3s linear, border-color 0.3s linear;
        cursor: pointer;
        width: auto;
        white-space: nowrap;
        font-size: 11px;
        padding: 0.4rem 0.8rem;
        min-width: auto;

        &:hover {
            background: #00b668;
        }

        &.ops-button-danger {
            background: #f87457;

            &:hover {
                background: #d25236;
            }
        }
    }
}

.ops-notice .ops-notification-wrap {
    display: flex;
    align-items: center;
}

.opui-main .ops-notification-container {
    max-width: 100%;
}

.ops-notification-container {
    max-width: 1120px;
    margin: 0 auto;

    .ops-notice {
        margin-bottom: 20px;

        &:last-child {
            margin-bottom: 0;
        }
    }
}

.ops-notice {
    padding-top: 0;
    padding-bottom: 1px;
    text-align: left;
    margin: 0 0 20px 0;

    .ops-notification-main-wrap {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .ops-notification-content {
        padding-right: 20px;
    }

    h3 {
        color: #555;
    }

    p {
        color: #555;
        font-size: 13px;
        margin: 0 0 15px 0;
        line-height: 150%;

        &:last-child {
            margin-bottom: 0;
        }
    }

    .ops-button {
        padding: 6px 12px;
        width: auto;
        min-width: auto;
        font-size: 11px;
        font-weight: 600;
        line-height: 22px;
    }
}

.opd-license {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #666;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000000;
    box-sizing: border-box;
    transition: 0.4s all ease;

    .opd-license--wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        width: calc(100% - 8em);
        max-width: 800px;
        padding: 0;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.13);
        transform: translate(-50%, -50%);
    }

    .opd-license--header {
        display: flex;
        padding: 2em;
        border-bottom: 1px solid #eee;
    }

    .opd-license--title {
        flex: 1;
        margin: 0;
        padding: 0;
        font-size: 1.35em;
        line-height: 32px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .opd-license--close {
        display: block;
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 36px;
        color: #ccc;
        text-decoration: none;
        text-align: center;
        opacity: 0.8;
        outline: 0 none;
        box-shadow: none;
        cursor: pointer;
        pointer-events: none;
        transition: 0.4s all ease;

        &:hover {
            opacity: 1;
        }
    }

    .opd-license--content {
        position: relative;
        padding: 2em;
        overflow: auto;

        p {
            font-size: 1em;
        }
    }

    .opd-license--footer {
        margin: 0;
        padding: 0 2em 2em;
        text-align: right;

        .opd-license--close {
            display: inline-block;
            width: 8em;
            height: auto;
            margin: 0 0 0 1em;
            padding: 0.616em 2em;
            font-size: 13px;
            font-weight: bold;
            line-height: normal;
            border-radius: 4px;
            border: 0 none;
            background: #a2a2a2;
            color: #fff;
        }
    }

    &[data-opd-license-status="active"] {
        visibility: visible;
        opacity: 1;

        .opd-license--close {
            pointer-events: all;
        }
    }
}

