.pulse_holder {
    margin: 0 auto;
    left: -4px;
    top: -4px;
    z-index: 10;
    display: inline-block;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0.1;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-animation: pulse 2s linear infinite;
    -o-animation: pulse 2s linear infinite;
    animation: pulse 2s linear infinite;
    border-image: initial;
}
@-webkit-keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0
    }
    8% {
        transform: scale(0);
        opacity: 0
    }
    15% {
        transform: scale(0.1);
        opacity: 1
    }
    30% {
        transform: scale(0.5);
        opacity: 1
    }
    100% {
        opacity: 0;
        transform: scale(1)
    }
}
@-moz-keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0
    }
    8% {
        transform: scale(0);
        opacity: 0
    }
    15% {
        transform: scale(0.1);
        opacity: 1
    }
    30% {
        transform: scale(0.5);
        opacity: 1
    }
    100% {
        opacity: 0;
        transform: scale(1)
    }
}
@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0
    }
    8% {
        transform: scale(0);
        opacity: 0
    }
    15% {
        transform: scale(0.1);
        opacity: 1
    }
    30% {
        transform: scale(0.5);
        opacity: 1
    }
    100% {
        opacity: 0;
        transform: scale(1)
    }
}
@keyframes opacity-badge {
     0% {
         transform: scale(0.5);
    }
     100% {
         transform: scale(1.1);
    }
}
 @-webkit-keyframes opacity-badge {
     0% {
         transform: scale(0.5);
    }
     100% {
         transform: scale(1.2);
    }
}
.t-Card-fgnotification {
     position: absolute;
     top: 4px;
     right: 4px;
     line-height: 16px;
     height: 30px;
     padding: 6px 10px;
     color: #A43CBB!important;
     background: #FCFCFC;
     transition: 0.3s ease;
     border: 1px solid #E0E0E0;
     animation: opacity-badge 0.6s infinite;
     -webkit-animation: opacity-badge 0.6s infinite;
}
.clock a .t-Button-label {
			font-size: 20px;
		}
.apex-item-select,
.apex-item-text,
.apex-item-textarea,
.apex-item-multi,
.apex-item-wrapper--rich-text-editor,
.ck-rounded-corners,
.ck-editor__editable_inline,
.ck-blurred {
  backface-visibility: hidden;
}
.apex-item-text:read-only,
textarea:read-only {
    cursor: not-allowed;
} 