﻿.page-load-status {
    display: none; /* hidden by default */
    padding-top: 20px;
    border-top: 1px solid #DDD;
    text-align: center;
    color: #777;
}

.loader-ellips {
    font-size: 20px; /* change size here */
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #555; /* change color here */
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

    .loader-ellips__dot:nth-child(1),
    .loader-ellips__dot:nth-child(2) {
        left: 0;
    }

    .loader-ellips__dot:nth-child(3) {
        left: 1.5em;
    }

    .loader-ellips__dot:nth-child(4) {
        left: 3em;
    }

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em)
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

.cookie-box {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 17px 17px rgba(0,0,0,.15), 0 27px 55px rgba(0,0,0,.3);
    font: 14px/20px Roboto,sans-serif;
    margin: 24px;
    max-height: calc(100% - 48px);
    max-width: calc(100% - 48px);
    overflow: auto;
    padding: 8px;
    position: fixed;
    z-index: 10012;
    right: 60px;
    bottom: 30px;
    display: none;
}

.cookie-box-contents {
    color: #757575;
    padding: 16px;
}

.cookie-box-buttons {
    text-align: right;
}

.cookie-button {
    color: #039be5;
    padding: 8px;
    margin: 0 8px;
    border: 0;
    border-radius: 2px;
    display: inline-block;
    font: 700 16px Roboto,sans-serif;
    min-width: 56px;
    outline: 0;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    vertical-align: middle;
    white-space: nowrap;
}

    .cookie-button:hover {
        background-color: #e1f3fc;
        text-decoration: none;
    }

.page-title-narrow {
    width: 100%;
    margin-bottom: 30px;
    padding: 18px 0;
    border-bottom: 1px solid #e1e7ec;
    background-color: #f5f5f5;
}

    .page-title-narrow > .container,
    .page-title-narrow > .container-fluid {
        display: table;
    }

    .page-title-narrow .column {
        display: table-cell;
        vertical-align: middle;
    }

        .page-title-narrow .column:first-child {
            padding-right: 20px;
        }

    .page-title-narrow h1, .page-title-narrow h2, .page-title-narrow h3 {
        margin: 0;
        font-size: 24px;
        font-weight: normal;
        line-height: 1.25;
    }

#table_options {
    display: block;
}

    #table_options td {
        display: inline-block;
    }