.notix-wrap {
    width: 550px;
    text-align: justify;
    margin-left: 15px;

    font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    font-feature-settings: 'kern' off;
}

.notix-wrap a {
    text-decoration: none;
}

.notix-wrap #setting-error-settings_updated {
    margin-left: 0;
}

.notix-plugin-connect {
    margin-top:32px;
}

.notix-admin-header {
    display: flex;
    align-items: center;
}

.notix-plugin-connect-label, .notix-plugin-label {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    font-feature-settings: 'kern' off;
}
.notix-plugin-label {
    font-size: 14px;
}

.notix-plugin-text {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
}

.notix-field-label {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: 'kern' off;
    margin-top: 32px;
}

.notix-field-hint {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    font-feature-settings: 'kern' off;
    color: #808080;
    margin: 5px 0;
}

.notix-admin-logo {
    display: flex;
    width: 120px;
    height: 38px;
    margin-top: 7px;
}

.notix-plugin-connected-state-green {
    color: #00B359;
}

.notix-plugin-connected-state-red {
    color: #b30000;
}

input.button.notix-button, input.button.notix-button.notix-change-settings-button {
    margin-top: 50px;
    background-color: #007040;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    padding: 0 16px;
    -webkit-box-pack: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    border: 0;
    border-radius: 4px;
    transition: background-color 0.1s linear 0s, border-color 0.1s linear 0s;
    outline: none;
    color: rgb(255, 255, 255);
}

.notix-features-block {
    display: flex;
    width: 500px;
    flex-direction: column;
}
.notix-features-block-sub {
    display: flex;
    width: 500px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.notix-features-block input, .notix-features-block label {
    display: flex;
}

.notix-tooltip {
    position: relative;
    display: inline-block;
}

.notix-tooltip .notix-tooltiptext {
    visibility: hidden;

    width: 200px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 6px;

    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    font-size: 14px;
    position: absolute;
    z-index: 1;
}

.notix-tooltip:hover .notix-tooltiptext {
    visibility: visible;
}