/* Лоадер */
.loader {
    height: 40px;
    margin: -12px 0 0 0px;
    background: #fff;
    filter: contrast(20);
}

.loader .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    left: 15px;
    filter: blur(4px);
    background: #000;
    border-radius: 50%;
    transform: translateX(0);
    animation: dot 2.8s infinite;
}

.loader .dots {
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    animation: dots 2.8s infinite;
}

.loader .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    filter: blur(4px);
    background: #000;
    border-radius: 50%;
}

@-moz-keyframes dot {
    50% {
        transform: translateX(96px);
    }
}

@-webkit-keyframes dot {
    50% {
        transform: translateX(96px);
    }
}

@-o-keyframes dot {
    50% {
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        transform: translateX(96px);
    }
}

@-moz-keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}

@-webkit-keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}

@-o-keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}

.pythonEditor {
    width: 100%;
    margin-bottom: 1em;
}

.ideButton {
    color: #333;
    background: linear-gradient(#eee, #ddd);
    border: 1px solid #222;
    border-radius: 3px;
    padding: 5px;
    margin: 5px;
    transition: .3s;
    font-family: ubuntu, sans-serif;
    font-size: 1em;
    /*width: 10%;*/
    min-width: 20px;
}

.ideButton:active {
    background: linear-gradient(#ddd, #eee);
}

.ideButton:hover, ideButton:focus {
    box-shadow: 0 0 2px #222;
}

.sqlExecute {
    margin-top: 5px;;
    width: 10%;
    min-width: 100px;
}

.ideError {
    color: red;
    transition: .5s;
    overflow: hidden;
    margin: 1em;
    min-height: 2em;
}

.ideOK {
    color: green;
    transition: .5s;
    overflow: hidden;
    margin: 1em;
    min-height: 2em;
}

.ideOutput {
    overflow: auto;
}

.ideOutput th, .ideOutput td {
    border: 1px solid #777;
}

.ideOutput footer {
    font-size: .8em;
    color: #222;
}

.hidden {
    transition: .5s;
    display: none;
    height: 0;
}

.err-line {
    position: absolute;
    background: rgba(243, 97, 97, 0.349);
}

.delButton, .traceButton {
    width: 2em;
    height: 2em;
    margin: 0.2em -2.2em 0 0.2em;
    padding: 0;
    position: relative;
    z-index: 2;
}

.delButton:before { content: "❌";}

.traceButton:before { content: "🦗";}
