﻿.checkbox {
    display: inline-flex;
    cursor: pointer;
    position: relative;
}

.buttonContainer2 {
    margin-top: 10px;
}

[data-selector="notification"] {
    min-width: 100%;
}

.checkbox > span {
    overflow: visible;
    float: right;
    position: relative;
    color: #34495E;
    width: 180px;
    margin: 0 auto 0 5px;
    /*padding: 0.5rem 0.25rem;*/
}

.checkbox > input {
    float: left;
    margin: -2px 0 auto 0;
    cursor: pointer;
    height: 15px;
    width: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #697d92;
    border-radius: 4px;
    outline: none;
    transition-duration: 0.3s;
    background-color: #d5dbe0;
}

.checkbox > input:checked {
    border: 1px solid #576569;
    background-color: #6d767f;
}

.checkbox > input:checked + span::before {
    content: '\2713';
    display: block;
    text-align: center;
    font-weight: bold;
    /*color: #ff0000;*/
    color: #d5dbe0;
    position: absolute;
    left: -1.05rem;
    top: 0.05rem;
}

.checkbox > input:active {
    border: 2px solid #34495E;
}

.k-notification-content {
    vertical-align: baseline !important;
}

.notificationAlert {
    word-wrap: break-word;
    white-space: normal;
    margin: -18px 10px 0 24px;
}
