
.dev #header {
    background-color: red;
}

.module h2 {
    text-transform: uppercase;
}

.thumb {
    position: relative;
    min-width: 100px;
    min-height: 100px;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../img/video.svg');
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.cke_dialog div.wrap, .cke_dialog div.wrap * {
    white-space: normal;
}

.cke_dialog .response {
    border: 1px solid gray;
    background-color: #ddd;
    padding: 20px;
}

.cke_dialog div.loader {
    position: relative;
    left: 20px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}

.loader::before, .loader::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}

.loader::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}

.loader::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dot-flashing {
    0% {
        background-color: #9880ff;
    }
    50%, 100% {
        background-color: rgba(152, 128, 255, 0.2);
    }
}
